Skip to content

Commit c3c99bc

Browse files
authored
Merge pull request #3965 from henry416/preview
Network Cmdlet added to Migration Guide
2 parents a66debb + 0db7104 commit c3c99bc

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ This document serves as both a breaking change notification and migration guide
77
- [Breaking changes to Compute cmdlets](#breaking-changes-to-compute-cmdlets)
88
- [Breaking changes to EventHub cmdlets](#breaking-changes-to-eventhub-cmdlets)
99
- [Breaking changes to Insights cmdlets](#breaking-changes-to-insights-cmdlets)
10+
- [Breaking changes to Network cmdlets](#breaking-changes-to-network-cmdlets)
1011
- [Breaking changes to ServiceBus cmdlets](#breaking-changes-to-servicebus-cmdlets)
1112
- [Breaking changes to Sql cmdlets](#breaking-changes-to-sql-cmdlets)
1213
- [Breaking changes to Storage cmdlets](#breaking-changes-to-storage-cmdlets)
@@ -171,6 +172,21 @@ Set-AzureRmDiagnosticSettings
171172
Update-AzureRmDiagnosticSettings
172173
```
173174

175+
## Breaking changes to Network cmdlets
176+
177+
The following cmdlets were affected this release:
178+
179+
### New-AzureRmVirtualNetworkGatewayConnection
180+
- `EnableBgp` parameter has been changed to take a `boolean` instead of a `string`
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+
174190
## Breaking changes to ServiceBus cmdlets
175191

176192
The following cmdlets were affected this release:

0 commit comments

Comments
 (0)