This document serves as both a breaking change notification and migration guide for consumers of the Microsoft Azure PowerShell cmdlets. Each section describes both the impetus for the breaking change and the migration path of least resistance. For in-depth context, please refer to the pull request associated with each change.
- Breaking changes to Data Lake Store cmdlets
- Breaking changes to ApiManagement cmdlets
- Breaking changes to Network cmdlets
The following cmdlets were affected this release (PR 2965):
Get-AzureRmDataLakeStoreItemAcl (Get-AdlStoreItemAcl)
- This cmdlet was removed and replaced with
Get-AzureRmDataLakeStoreItemAclEntry (Get-AdlStoreItemAclEntry). - The old cmdlet returned a complex object representing the access control list (ACL). The new cmdlet returns a simple list of entries in the chosen path's ACL.
# Old
Get-AdlStoreItemAcl -Account myadlsaccount -Path /foo
# New
Get-AdlStoreItemAclEntry -Account myadlsaccount -Path /fooGet-AzureRmDataLakeStoreItemAclEntry (Get-AdlStoreItemAclEntry)
- This cmdlet replaces the old cmdlet
Get-AzureRmDataLakeStoreItemAcl (Get-AdlStoreItemAcl). - This new cmdlet returns a simple list of entries in the chosen path's ACL, with type
DataLakeStoreItemAce[]. - The output of this cmdlet can be passed in to the
-Aclparameter of the following cmdlets:Remove-AzureRmDataLakeStoreItemAclSet-AzureRmDataLakeStoreItemAclSet-AzureRmDataLakeStoreItemAclEntry
# Old
Get-AdlStoreItemAcl -Account myadlsaccount -Path /foo
# New
Get-AdlStoreItemAclEntry -Account myadlsaccount -Path /fooRemove-AzureRmDataLakeStoreItemAcl (Remove-AdlStoreItemAcl), Set-AzureRmDataLakeStoreItemAcl (Set-AdlStoreItemAcl), Set-AzureRmDataLakeStoreItemAclEntry (Set-AdlStoreItemAclEntry)
- These cmdlets now accept
DataLakeStoreItemAce[]for the-Aclparameter. DataLakeStoreItemAce[]is returned byGet-AzureRmDataLakeStoreItemAclEntry (Get-AdlStoreItemAclEntry).
# Old
$acl = Get-AdlStoreItemAcl -Account myadlsaccount -Path /foo
Set-AdlStoreItemAcl -Account myadlsaccount -Path /foo -Acl $acl
# New
$aclEntries = Get-AdlStoreItemAclEntry -Account myadlsaccount -Path /foo
Set-AdlStoreItemAcl -Account myadlsaccount -Path /foo -Acl $aclEntriesThe following cmdlets were affected this release (PR 2971):
New-AzureRmApiManagementVirtualNetwork
- The required parameters to reference a virtual network changed from requiring SubnetName and VnetId to SubnetResourceId in format
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ClassicNetwork/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}
# Old
$virtualNetwork = New-AzureRmApiManagementVirtualNetwork -Location <String> -SubnetName <String> -VnetId <Guid>
# New
$virtualNetwork = New-AzureRmApiManagementVirtualNetwork -Location <String> -SubnetResourceId <String>
Deprecating Cmdlet Set-AzureRmApiManagementVirtualNetworks
- The Cmdlet is getting deprecated as there was more than one way to Set Virtual Network associated to ApiManagement deployment.
# Old
$networksList = @()
$networksList += New-AzureRmApiManagementVirtualNetwork -Location $vnetLocation -VnetId $vnetId -SubnetName $subnetName
Set-AzureRmApiManagementVirtualNetworks -ResourceGroupName "ContosoGroup" -Name "ContosoApi" -VirtualNetworks $networksList
# New
$masterRegionVirtualNetwork = New-AzureRmApiManagementVirtualNetwork -Location <String> -SubnetResourceId <String>
Update-AzureRmApiManagementDeployment -ResourceGroupName "ContosoGroup" -Name "ContosoApi" -VirtualNetwork $masterRegionVirtualNetworkThe following cmdlets were affected this release (PR 2982):
New-AzureRmVirtualNetworkGateway
- Description of what has changed
:- Bool parameter:-ActiveActiveis removed andSwitchParameter:-EnableActiveActiveFeatureis added for enabling Active-Active feature on newly creating virtual network gateway.
# Old
# Sample of how the cmdlet was previously called
New-AzureRmVirtualNetworkGateway -ResourceGroupName $rgname -name $rname -Location $location -IpConfigurations $vnetIpConfig1,$vnetIpConfig2 -GatewayType Vpn -VpnType RouteBased -EnableBgp $false -GatewaySku HighPerformance -ActiveActive $true
# New
# Sample of how the cmdlet should now be called
New-AzureRmVirtualNetworkGateway -ResourceGroupName $rgname -name $rname -Location $location -IpConfigurations $vnetIpConfig1,$vnetIpConfig2 -GatewayType Vpn -VpnType RouteBased -EnableBgp $false -GatewaySku HighPerformance -EnableActiveActiveFeatureSet-AzureRmVirtualNetworkGateway
- Description of what has changed
:- Bool parameter:-ActiveActiveis removed and 2SwitchParameters:-EnableActiveActiveFeature/DisableActiveActiveFeatureare added for enabling and disabling Active-Active feature on virtual network gateway.
# Old
# Sample of how the cmdlet was previously called
Set-AzureRmVirtualNetworkGateway -VirtualNetworkGateway $gw -ActiveActive $true
Set-AzureRmVirtualNetworkGateway -VirtualNetworkGateway $gw -ActiveActive $false
# New
# Sample of how the cmdlet should now be called
Set-AzureRmVirtualNetworkGateway -VirtualNetworkGateway $gw -EnableActiveActiveFeature
Set-AzureRmVirtualNetworkGateway -VirtualNetworkGateway $gw -DisableActiveActiveFeature