Skip to content

Commit 0db7104

Browse files
committed
migration guide example (Network cmdlet)
1 parent a3c510d commit 0db7104

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

documentation/release-notes/migration-guide.4.0.0.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,14 @@ The following cmdlets were affected this release:
179179
### New-AzureRmVirtualNetworkGatewayConnection
180180
- `EnableBgp` parameter has been changed to take a `boolean` instead of a `string`
181181

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+
182190
## Breaking changes to ServiceBus cmdlets
183191

184192
The following cmdlets were affected this release:

0 commit comments

Comments
 (0)