Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 6 additions & 36 deletions src/Network/Network/help/New-AzFirewallHubIpAddress.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ Ip addresses assoicated to the firewall on virtual hub
## SYNTAX

```
New-AzFirewallHubIpAddress [-PrivateIPAddress <String>] [-PublicIPs <PSAzureFirewallHubPublicIpAddresses>]
[-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
New-AzFirewallHubIpAddress [-PrivateIPAddress <String>] [-PublicIP <PSAzureFirewallHubPublicIpAddresses>]
[-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
```

## DESCRIPTION
Expand All @@ -36,7 +36,7 @@ This example creates a Hub Ip address object with a count of 2 public IPs. The H
The credentials, account, tenant, and subscription used for communication with Azure.

```yaml
Type: IAzureContextContainer
Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential

Expand All @@ -51,7 +51,7 @@ Accept wildcard characters: False
The private Ip Address of the Firewall attached to a Hub

```yaml
Type: String
Type: System.String
Parameter Sets: (All)
Aliases:

Expand All @@ -62,11 +62,11 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -PublicIPs
### -PublicIP
The IP Addresses of the Firewall attached to a hub

```yaml
Type: PSAzureFirewallHubPublicIpAddresses
Type: Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses
Parameter Sets: (All)
Aliases:

Expand All @@ -77,36 +77,6 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -Confirm
Prompts you for confirmation before running the cmdlet.

```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -WhatIf
Shows what would happen if the cmdlet runs. The cmdlet is not run.

```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

Expand Down
10 changes: 5 additions & 5 deletions src/Network/Network/help/New-AzFirewallHubPublicIpAddress.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Public Ip assoicated to the firewall on virtual hub
## SYNTAX

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

Expand All @@ -40,11 +40,11 @@ This will create 1 new public ip on the firewall by retain $publicIp1, $publicIp

## PARAMETERS

### -Addresses
### -Address
The Public IP Addresses of the Firewall attached to a hub

```yaml
Type: PSAzureFirewallPublicIpAddress[]
Type: Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]
Parameter Sets: (All)
Aliases:

Expand All @@ -59,7 +59,7 @@ Accept wildcard characters: False
The count of public Ip addresses

```yaml
Type: Int32
Type: System.Int32
Parameter Sets: (All)
Aliases:

Expand All @@ -74,7 +74,7 @@ Accept wildcard characters: False
The credentials, account, tenant, and subscription used for communication with Azure.

```yaml
Type: IAzureContextContainer
Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential

Expand Down