Edit

Share via


New-AzFirewallHubPublicIpAddress

Public Ip assoicated to the firewall on virtual hub

Syntax

Default (Default)

New-AzFirewallHubPublicIpAddress
    [-Count <Int32>]
    [-Address <PSAzureFirewallPublicIpAddress[]>]
    [-DefaultProfile <IAzureContextContainer>]
    [<CommonParameters>]

Description

Public Ip assoicated to the firewall on virtual hub

Examples

Example 1

New-AzFirewallHubPublicIpAddress -Count 2

This will create 2 public ips on the firewall attached to the virtual hub. This will create the ip address in the backend.We cannot provide the ipaddresses explicitly for a new firewall.

Example 2

$publicIp1 = New-AzFirewallPublicIpAddress -Address 10.2.3.4
$publicIp2 = New-AzFirewallPublicIpAddress -Address 20.56.37.46
New-AzFirewallHubPublicIpAddress -Count 3 -Address $publicIp1, $publicIp2

This will create 1 new public ip on the firewall by retain $publicIp1, $publicIp2 which are already exist on the firewall.

Parameters

-Address

The Public IP Addresses of the Firewall attached to a hub

Parameter properties

Type:

PSAzureFirewallPublicIpAddress[]

Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-Count

The count of public Ip addresses

Parameter properties

Type:Int32
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-DefaultProfile

The credentials, account, tenant, and subscription used for communication with Azure.

Parameter properties

Type:IAzureContextContainer
Default value:None
Supports wildcards:False
DontShow:False
Aliases:AzContext, AzureRmContext, AzureCredential

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

Inputs

None

Outputs

PSAzureFirewallHubPublicIpAddresses