Skip to content

Commit f46a778

Browse files
Fixed the Address/Ip Typo (Azure#12622)
* Fixed the Address Typo Fixed the Address Typo * Fixed the Ip's typo Fixed the Ip's typo
1 parent edfe5b4 commit f46a778

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Synapse/Synapse/help/New-AzSynapseFirewallRule.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,22 +45,22 @@ The **New-AzSynapseFirewallRule** cmdlet creates an Azure Synapse Analytics Fire
4545

4646
### Example 1
4747
```powershell
48-
PS C:\> New-AzSynapseFirewallRule -WorkspaceName ContosoWorkspace -Name ContosoFirewallRule -StartIpAddress "0.0.0.0" -EndIpAssdress "255.255.255.255"
48+
PS C:\> New-AzSynapseFirewallRule -WorkspaceName ContosoWorkspace -Name ContosoFirewallRule -StartIpAddress "0.0.0.0" -EndIpAddress "255.255.255.255"
4949
```
5050

5151
This command creates firewall rule named ContosoFirewallRule under workspace ContosoWorkspace with name ContosoFirewallRule.
5252

5353
### Example 2
5454
```powershell
5555
PS C:\> $ws = Get-AzSynapseWorkspace -Name ContosoWorkspace
56-
PS C:\> $ws | New-AzSynapseFirewallRule -Name ContosoFirewallRule -StartIpAddress "0.0.0.0" -EndIpAssdress "255.255.255.255"
56+
PS C:\> $ws | New-AzSynapseFirewallRule -Name ContosoFirewallRule -StartIpAddress "0.0.0.0" -EndIpAddress "255.255.255.255"
5757
```
5858

5959
This command creates firewall rule named ContosoFirewallRule under a workspace through pipeline.
6060

6161
### Example 3
6262
```powershell
63-
PS C:\> New-AzSynapseFirewallRule -WorkspaceName ContosoWorkspace -AllowAllAzureIPs
63+
PS C:\> New-AzSynapseFirewallRule -WorkspaceName ContosoWorkspace -AllowAllAzureIP
6464
```
6565

6666
This command creates firewall rule that allow all azure ips under a workspace.

0 commit comments

Comments
 (0)