File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 44
44
* Add ` EnableDnsProxy ` , 'DnsProxyNotRequiredForNetworkRule' and 'DnsServer' parameters to ` AzureFirewall `
45
45
- Updated cmdlet:
46
46
- New-AzFirewall
47
+ * Add deprecation warning for ` HubVnetConnection ` parameter in following cmdlets
48
+ - NewAzureRmVirtualHubCommand
49
+ - UpdateAzureRmVirtualHubCommand
50
+ * Use HubVnetConnection create/update APIs instead of VirtualHub create/update APIs for following cmdlets
51
+ - NewAzureRmVirtualHubCommand
52
+ - UpdateAzureRmVirtualHubCommand
53
+ - NewHubVirtualNetworkConnectionCommand
54
+ - UpdateAzureRmHubVirtualNetworkConnectionCommand
55
+ - RemoveHubVirtualNetworkConnectionCommand
56
+ * Deprecate ` EnableInternetSecurity ` switch parameter and instead introduce ` EnableInternetSecurityFlag ` boolean in
57
+ - NewHubVirtualNetworkConnectionCommand.
58
+ The flag is also made true by default for newly created connections.
47
59
48
60
## Version 2.5.0
49
61
* Updated cmdlets to enable connection on private IP for Virtual Network Gateway.
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ public class NewAzureRmVirtualHubCommand : VirtualHubBaseCmdlet
79
79
[ ValidateNotNullOrEmpty ]
80
80
public string Location { get ; set ; }
81
81
82
- public const String ChangeDesc = "VirtualNetworkConnection parameter is deprecated. Use AzVirtualHubVnet commands" ;
82
+ public const String ChangeDesc = "HubVnetConnection parameter is deprecated. Use *VirtualHubVnetConnection* commands" ;
83
83
[ CmdletParameterBreakingChange ( "HubVnetConnection" , ChangeDescription = ChangeDesc ) ]
84
84
[ Parameter (
85
85
Mandatory = false ,
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ public class UpdateAzureRmVirtualHubCommand : VirtualHubBaseCmdlet
78
78
HelpMessage = "The address space string for this virtual hub." ) ]
79
79
public string AddressPrefix { get ; set ; }
80
80
81
- public const String ChangeDesc = "VirtualNetworkConnection parameter is deprecated. Use AzVirtualHubVnet commands" ;
81
+ public const String ChangeDesc = "HubVnetConnection parameter is deprecated. Use *VirtualHubVnetConnection* commands" ;
82
82
[ CmdletParameterBreakingChange ( "HubVnetConnection" , ChangeDescription = ChangeDesc ) ]
83
83
[ Parameter (
84
84
Mandatory = false ,
You can’t perform that action at this time.
0 commit comments