File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -45,22 +45,22 @@ The **New-AzSynapseFirewallRule** cmdlet creates an Azure Synapse Analytics Fire
45
45
46
46
### Example 1
47
47
``` 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"
49
49
```
50
50
51
51
This command creates firewall rule named ContosoFirewallRule under workspace ContosoWorkspace with name ContosoFirewallRule.
52
52
53
53
### Example 2
54
54
``` powershell
55
55
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"
57
57
```
58
58
59
59
This command creates firewall rule named ContosoFirewallRule under a workspace through pipeline.
60
60
61
61
### Example 3
62
62
``` powershell
63
- PS C:\> New-AzSynapseFirewallRule -WorkspaceName ContosoWorkspace -AllowAllAzureIPs
63
+ PS C:\> New-AzSynapseFirewallRule -WorkspaceName ContosoWorkspace -AllowAllAzureIP
64
64
```
65
65
66
66
This command creates firewall rule that allow all azure ips under a workspace.
You can’t perform that action at this time.
0 commit comments