File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
documentation/release-notes Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -179,6 +179,14 @@ The following cmdlets were affected this release:
179
179
### New-AzureRmVirtualNetworkGatewayConnection
180
180
- ` EnableBgp ` parameter has been changed to take a ` boolean ` instead of a ` string `
181
181
182
+ ``` powershell
183
+ # Old
184
+ New-AzureRmVirtualNetworkGatewayConnection -ResourceGroupName "RG" -name "conn1" -VirtualNetworkGateway1 $vnetGateway -LocalNetworkGateway2 $localnetGateway -ConnectionType IPsec -SharedKey "key" -EnableBgp "true"
185
+
186
+ # New
187
+ New-AzureRmVirtualNetworkGatewayConnection -ResourceGroupName "RG" -name "conn1" -VirtualNetworkGateway1 $vnetGateway -LocalNetworkGateway2 $localnetGateway -ConnectionType IPsec -SharedKey "key" -EnableBgp $true
188
+ ```
189
+
182
190
## Breaking changes to ServiceBus cmdlets
183
191
184
192
The following cmdlets were affected this release:
You can’t perform that action at this time.
0 commit comments