File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
documentation/release-notes Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ This document serves as both a breaking change notification and migration guide
7
7
- [ Breaking changes to Compute cmdlets] ( #breaking-changes-to-compute-cmdlets )
8
8
- [ Breaking changes to EventHub cmdlets] ( #breaking-changes-to-eventhub-cmdlets )
9
9
- [ Breaking changes to Insights cmdlets] ( #breaking-changes-to-insights-cmdlets )
10
+ - [ Breaking changes to Network cmdlets] ( #breaking-changes-to-network-cmdlets )
10
11
- [ Breaking changes to ServiceBus cmdlets] ( #breaking-changes-to-servicebus-cmdlets )
11
12
- [ Breaking changes to Sql cmdlets] ( #breaking-changes-to-sql-cmdlets )
12
13
- [ Breaking changes to Storage cmdlets] ( #breaking-changes-to-storage-cmdlets )
@@ -171,6 +172,21 @@ Set-AzureRmDiagnosticSettings
171
172
Update-AzureRmDiagnosticSettings
172
173
```
173
174
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
+
174
190
## Breaking changes to ServiceBus cmdlets
175
191
176
192
The following cmdlets were affected this release:
You can’t perform that action at this time.
0 commit comments