From df32a96756fd3f04c023770581a3913c09b1a8e2 Mon Sep 17 00:00:00 2001 From: Rupali Vohra Date: Tue, 11 Sep 2018 16:06:44 -0700 Subject: [PATCH 01/11] Adding subnet delegation cmdlets Changing to published SDK Adding help documentation for CRUD ops on delegations --- ...AzureAvailableServiceDelegationsCommand.cs | 51 ++++++++ .../Network/Commands.Network/Az.Network.psd1 | 23 +++- .../Commands.Network/AzureRM.Network.psd1 | 16 ++- .../Network/Commands.Network/ChangeLog.md | 102 +++++++++------ .../Commands.Network/Commands.Network.csproj | 8 ++ .../Common/NetworkResourceManagerProfile.cs | 11 ++ .../Models/PSAvailableDelegation.cs | 20 +++ .../Commands.Network/Models/PSDelegation.cs | 15 +++ .../Commands.Network/Models/PSSubnet.cs | 8 ++ ...ddAzureNetworkSecurityRuleConfigCommand.cs | 2 +- .../AzureVirtualNetworkSubnetConfigBase.cs | 6 + .../Delegation/AddAzureDelegationCommand.cs | 76 +++++++++++ .../Delegation/GetAzureDelegationCommand.cs | 53 ++++++++ .../Delegation/NewAzureDelegationCommand.cs | 48 +++++++ .../RemoveAzureDelegationCommand.cs | 50 +++++++ .../help/Add-AzureRmDelegation.md | 116 +++++++++++++++++ .../Add-AzureRmNetworkSecurityRuleConfig.md | 2 +- .../Add-AzureRmVirtualNetworkSubnetConfig.md | 11 ++ .../Get-AzureRmAvailableServiceDelegation.md | 92 +++++++++++++ .../help/Get-AzureRmDelegation.md | 114 ++++++++++++++++ .../help/New-AzureRmDelegation.md | 103 +++++++++++++++ .../help/Remove-AzureRmDelegation.md | 122 ++++++++++++++++++ tools/AzureRM/AzureRM.psm1 | Bin 9610 -> 0 bytes .../Exceptions/Az.Network/SignatureIssues.csv | 3 + .../AzureRM.Network/SignatureIssues.csv | 3 + 25 files changed, 1005 insertions(+), 50 deletions(-) create mode 100644 src/ResourceManager/Network/Commands.Network/AvailableDelegation/GetAzureAvailableServiceDelegationsCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/Models/PSAvailableDelegation.cs create mode 100644 src/ResourceManager/Network/Commands.Network/Models/PSDelegation.cs create mode 100644 src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/Delegation/AddAzureDelegationCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/Delegation/GetAzureDelegationCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/Delegation/NewAzureDelegationCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/Delegation/RemoveAzureDelegationCommand.cs create mode 100644 src/ResourceManager/Network/Commands.Network/help/Add-AzureRmDelegation.md create mode 100644 src/ResourceManager/Network/Commands.Network/help/Get-AzureRmAvailableServiceDelegation.md create mode 100644 src/ResourceManager/Network/Commands.Network/help/Get-AzureRmDelegation.md create mode 100644 src/ResourceManager/Network/Commands.Network/help/New-AzureRmDelegation.md create mode 100644 src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmDelegation.md delete mode 100644 tools/AzureRM/AzureRM.psm1 diff --git a/src/ResourceManager/Network/Commands.Network/AvailableDelegation/GetAzureAvailableServiceDelegationsCommand.cs b/src/ResourceManager/Network/Commands.Network/AvailableDelegation/GetAzureAvailableServiceDelegationsCommand.cs new file mode 100644 index 000000000000..50e406352397 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/AvailableDelegation/GetAzureAvailableServiceDelegationsCommand.cs @@ -0,0 +1,51 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Management.Network; +using CNM = Microsoft.Azure.Commands.Network.Models; + +namespace Microsoft.Azure.Commands.Network.Automation +{ + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AvailableServiceDelegation"), OutputType(typeof(PSAvailableDelegation))] + public partial class GetAzureAvailableServiceDelegationsCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The location.", + ValueFromPipelineByPropertyName = true)] + [LocationCompleter("Microsoft.Network/locations/availableDelegations")] + [ValidateNotNullOrEmpty] + public string Location { get; set; } + + public override void Execute() + { + base.Execute(); + + var availableServiceDelegationsList = this.NetworkClient.NetworkManagementClient.AvailableDelegations.List(Location); + List psAvailableDelegations = new List(); + foreach (var availableServiceDelegations in availableServiceDelegationsList) + { + psAvailableDelegations.Add(NetworkResourceManagerProfile.Mapper.Map(availableServiceDelegations)); + } + + WriteObject(psAvailableDelegations, true); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/Az.Network.psd1 b/src/ResourceManager/Network/Commands.Network/Az.Network.psd1 index b2b6499809b6..9e7cdfff7f63 100644 --- a/src/ResourceManager/Network/Commands.Network/Az.Network.psd1 +++ b/src/ResourceManager/Network/Commands.Network/Az.Network.psd1 @@ -315,29 +315,40 @@ CmdletsToExport = 'Add-AzApplicationGatewayAuthenticationCertificate', 'Add-AzNetworkSecurityRuleConfig', 'New-AzNetworkSecurityGroup', 'Remove-AzNetworkSecurityGroup', - 'Set-AzNetworkSecurityGroup', 'Test-AzDnsAvailability', + 'Set-AzNetworkSecurityGroup', + 'Test-AzDnsAvailability', 'Add-AzVirtualNetworkPeering', 'Get-AzVirtualNetworkPeering', 'Remove-AzVirtualNetworkPeering', - 'Set-AzVirtualNetworkPeering', 'Remove-AzVirtualNetwork', + 'Set-AzVirtualNetworkPeering', + 'Remove-AzVirtualNetwork', 'Set-AzVirtualNetwork', 'Remove-AzVirtualNetworkSubnetConfig', 'Set-AzVirtualNetworkSubnetConfig', 'Get-AzVirtualNetworkSubnetConfig', 'Add-AzVirtualNetworkSubnetConfig', - 'New-AzVirtualNetworkSubnetConfig', 'Get-AzVirtualNetwork', + 'New-AzVirtualNetworkSubnetConfig', + 'New-AzDelegation', + 'Add-AzDelegation', + 'Get-AzDelegation', + 'Remove-AzDelegation', + 'Get-AzAvailableServiceDelegation', + 'Get-AzVirtualNetwork', 'New-AzVirtualNetwork', 'Get-AzVirtualNetworkGatewayBgpPeerStatus', 'Get-AzVirtualNetworkGatewayAdvertisedRoute', 'Get-AzVirtualNetworkGatewayLearnedRoute', - 'Get-AzNetworkUsage', 'Get-AzVirtualNetworkUsageList', + 'Get-AzNetworkUsage', + 'Get-AzVirtualNetworkUsageList', 'Get-AzVirtualNetworkAvailableEndpointService', 'Get-AzVirtualNetworkGatewaySupportedVpnDevice', 'Get-AzVirtualNetworkGatewayConnectionVpnDeviceConfigScript', 'New-AzApplicationSecurityGroup', 'Remove-AzApplicationSecurityGroup', - 'Get-AzApplicationSecurityGroup', 'New-AzPublicIpTag', - 'New-AzDdosProtectionPlan', 'Get-AzDdosProtectionPlan', + 'Get-AzApplicationSecurityGroup', + 'New-AzPublicIpTag', + 'New-AzDdosProtectionPlan', + 'Get-AzDdosProtectionPlan', 'Remove-AzDdosProtectionPlan', 'New-AzNetworkWatcherProtocolConfiguration', 'Add-AzExpressRouteCircuitConnectionConfig', diff --git a/src/ResourceManager/Network/Commands.Network/AzureRM.Network.psd1 b/src/ResourceManager/Network/Commands.Network/AzureRM.Network.psd1 index 0e9f196a2ccf..7237bfc196ea 100644 --- a/src/ResourceManager/Network/Commands.Network/AzureRM.Network.psd1 +++ b/src/ResourceManager/Network/Commands.Network/AzureRM.Network.psd1 @@ -326,19 +326,27 @@ CmdletsToExport = 'Add-AzureRmApplicationGatewayAuthenticationCertificate', 'Set-AzureRmVirtualNetworkSubnetConfig', 'Get-AzureRmVirtualNetworkSubnetConfig', 'Add-AzureRmVirtualNetworkSubnetConfig', - 'New-AzureRmVirtualNetworkSubnetConfig', + 'New-AzureRmVirtualNetworkSubnetConfig', + 'New-AzureRmDelegation', + 'Add-AzureRmDelegation', + 'Get-AzureRmDelegation', + 'Remove-AzureRmDelegation', + 'Get-AzureRmAvailableServiceDelegation', 'Get-AzureRmVirtualNetwork', 'New-AzureRmVirtualNetwork', 'Get-AzureRmVirtualNetworkGatewayBgpPeerStatus', 'Get-AzureRmVirtualNetworkGatewayAdvertisedRoute', 'Get-AzureRmVirtualNetworkGatewayLearnedRoute', - 'Get-AzureRmNetworkUsage', 'Get-AzureRmVirtualNetworkUsageList', + 'Get-AzureRmNetworkUsage', + 'Get-AzureRmVirtualNetworkUsageList', 'Get-AzureRmVirtualNetworkAvailableEndpointService', 'Get-AzureRmVirtualNetworkGatewaySupportedVpnDevice', 'Get-AzureRmVirtualNetworkGatewayConnectionVpnDeviceConfigScript', 'New-AzureRmApplicationSecurityGroup', 'Remove-AzureRmApplicationSecurityGroup', - 'Get-AzureRmApplicationSecurityGroup', 'New-AzureRmPublicIpTag', - 'New-AzureRmDdosProtectionPlan', 'Get-AzureRmDdosProtectionPlan', + 'Get-AzureRmApplicationSecurityGroup', + 'New-AzureRmPublicIpTag', + 'New-AzureRmDdosProtectionPlan', + 'Get-AzureRmDdosProtectionPlan', 'Remove-AzureRmDdosProtectionPlan', 'New-AzureRMNetworkWatcherProtocolConfiguration', 'Add-AzureRmExpressRouteCircuitConnectionConfig', diff --git a/src/ResourceManager/Network/Commands.Network/ChangeLog.md b/src/ResourceManager/Network/Commands.Network/ChangeLog.md index bbf076411f25..6939bb0cd951 100644 --- a/src/ResourceManager/Network/Commands.Network/ChangeLog.md +++ b/src/ResourceManager/Network/Commands.Network/ChangeLog.md @@ -20,49 +20,75 @@ ## Current Release * Replaced LoadBalancer cmdlets with generated code - - LoadBalancerInboundNatPoolConfig: added parameters IdleTimeoutInMinutes, EnableFloatingIp and EnableTcpReset - - LoadBalancerInboundNatRuleConfig: added parameter EnableTcpReset - - LoadBalancerRuleConfig: added parameter EnableTcpReset - - LoadBalancerProbeConfig: added support for value "Https" for parameter Protocol + - LoadBalancerInboundNatPoolConfig: added parameters IdleTimeoutInMinutes, EnableFloatingIp and EnableTcpReset + - LoadBalancerInboundNatRuleConfig: added parameter EnableTcpReset + - LoadBalancerRuleConfig: added parameter EnableTcpReset + - LoadBalancerProbeConfig: added support for value "Https" for parameter Protocol * Added new commands for new LoadBalancer's subresource OutboundRule - - Add-AzureRmLoadBalancerOutboundRuleConfig - - Get-AzureRmLoadBalancerOutboundRuleConfig - - New-AzureRmLoadBalancerOutboundRuleConfig - - Set-AzureRmLoadBalancerOutboundRuleConfig - - Remove-AzureRmLoadBalancerOutboundRuleConfig + - Add-AzureRmLoadBalancerOutboundRuleConfig + - Get-AzureRmLoadBalancerOutboundRuleConfig + - New-AzureRmLoadBalancerOutboundRuleConfig + - Set-AzureRmLoadBalancerOutboundRuleConfig + - Remove-AzureRmLoadBalancerOutboundRuleConfig * Added new HostedWorkloads property for PSNetworkInterface -* Updated cmdlet New-AzureRmVirtualNetworkSubnetConfig, Set-AzureRmVirtualNetworkSubnetConfig, Add-AzureRmVirtualNetworkSubnetConfig, Get-AzureRmVirtualNetworkSubnetConfig, Add-AzureRmApplicationGatewayAuthenticationCertificate, Add-AzureRmApplicationGatewayFrontendIPConfig, New-AzureRmApplicationGatewayFrontendIPConfig, Set-AzureRmApplicationGatewayFrontendIPConfig, Add-AzureRmApplicationGatewayIPConfiguration, New-AzureRmApplicationGatewayIPConfiguration, Set-AzureRmApplicationGatewayIPConfiguration, Add-AzureRmNetworkInterfaceIpConfig, New-AzureRmNetworkInterfaceIpConfig, Set-AzureRmNetworkInterfaceIpConfig, New-AzureRmVirtualNetworkGatewayIpConfig, Add-AzureRmVirtualNetworkGatewayIpConfig, Set-AzureRmLoadBalancerFrontendIpConfig, Add-AzureRmLoadBalancerFrontendIpConfig, New-AzureRmLoadBalancerFrontendIpConfig and New-AzureRmNetworkInterface by adding support for multiple AddressPrefixes in subnet * Added new commands for feature: Azure Firewall via ARM - - Added Get-AzureRmFirewall - - Added Set-AzureRmFirewall - - Added New-AzureRmFirewall - - Added Remove-AzureRmFirewall - - Added New-AzureRmFirewallApplicationRuleCollection - - Added New-AzureRmFirewallApplicationRule - - Added New-AzureRmFirewallNatRuleCollection - - Added New-AzureRmFirewallNatRule - - Added New-AzureRmFirewallNetworkRuleCollection - - Added New-AzureRmFirewallNetworkRule + - Added Get-AzureRmFirewall + - Added Set-AzureRmFirewall + - Added New-AzureRmFirewall + - Added Remove-AzureRmFirewall + - Added New-AzureRmFirewallApplicationRuleCollection + - Added New-AzureRmFirewallApplicationRule + - Added New-AzureRmFirewallNatRuleCollection + - Added New-AzureRmFirewallNatRule + - Added New-AzureRmFirewallNetworkRuleCollection + - Added New-AzureRmFirewallNetworkRule * Added support for Trusted Root certificate and Autoscale configuration in Application Gateway - - New Cmdlets added: - - Add-AzureRmApplicationGatewayTrustedRootCertificate - - Get-AzureRmApplicationGatewayTrustedRootCertificate - - New-AzureRmApplicationGatewayTrustedRootCertificate - - Remove-AzureRmApplicationGatewayTrustedRootCertificate - - Set-AzureRmApplicationGatewayTrustedRootCertificate - - Get-AzureRmApplicationGatewayAutoscaleConfiguration - - New-AzureRmApplicationGatewayAutoscaleConfiguration - - Remove-AzureRmApplicationGatewayAutoscaleConfiguration - - Set-AzureRmApplicationGatewayAutoscaleConfiguration - - Cmdlets updated with optonal parameter -TrustedRootCertificate - - New-AzureRmApplicationGateway - - Set-AzureRmApplicationGateway - - New-AzureRmApplicationGatewayBackendHttpSetting - - Set-AzureRmApplicationGatewayBackendHttpSetting - - Cmdlets updated with optonal parameter -AutoscaleConfiguration - - New-AzureRmApplicationGateway - - Set-AzureRmApplicationGateway + - New Cmdlets added: + - Add-AzureRmApplicationGatewayTrustedRootCertificate + - Get-AzureRmApplicationGatewayTrustedRootCertificate + - New-AzureRmApplicationGatewayTrustedRootCertificate + - Remove-AzureRmApplicationGatewayTrustedRootCertificate + - Set-AzureRmApplicationGatewayTrustedRootCertificate + - Get-AzureRmApplicationGatewayAutoscaleConfiguration + - New-AzureRmApplicationGatewayAutoscaleConfiguration + - Remove-AzureRmApplicationGatewayAutoscaleConfiguration + - Set-AzureRmApplicationGatewayAutoscaleConfiguration + - Cmdlets updated with optonal parameter -TrustedRootCertificate + - New-AzureRmApplicationGateway + - Set-AzureRmApplicationGateway + - New-AzureRmApplicationGatewayBackendHttpSetting + - Set-AzureRmApplicationGatewayBackendHttpSetting + - Cmdlets updated with optonal parameter -AutoscaleConfiguration + - New-AzureRmApplicationGateway + - Set-AzureRmApplicationGateway * Add cmdlet for Interface Endpoint Get-AzureInterfaceEndpoint +* Added support for multiple address prefixes in a subnet. Updated cmdlets: + - New-AzureRmVirtualNetworkSubnetConfig + - Set-AzureRmVirtualNetworkSubnetConfig + - Add-AzureRmVirtualNetworkSubnetConfig + - Get-AzureRmVirtualNetworkSubnetConfig + - Add-AzureRmApplicationGatewayAuthenticationCertificate + - Add-AzureRmApplicationGatewayFrontendIPConfig + - New-AzureRmApplicationGatewayFrontendIPConfig + - Set-AzureRmApplicationGatewayFrontendIPConfig + - Add-AzureRmApplicationGatewayIPConfiguration + - New-AzureRmApplicationGatewayIPConfiguration + - Set-AzureRmApplicationGatewayIPConfiguration + - Add-AzureRmNetworkInterfaceIpConfig + - New-AzureRmNetworkInterfaceIpConfig + - Set-AzureRmNetworkInterfaceIpConfig + - New-AzureRmVirtualNetworkGatewayIpConfig + - Add-AzureRmVirtualNetworkGatewayIpConfig + - Set-AzureRmLoadBalancerFrontendIpConfig + - Add-AzureRmLoadBalancerFrontendIpConfig + - New-AzureRmLoadBalancerFrontendIpConfig + - New-AzureRmNetworkInterface +* Adding support to perform CRUD operations for subnet delegation. + - New-AzureRmDelegation: Creates a new delegation, which can be added to a subnet + - Remove-AzureRmDelegation: Takes in a subnet and removes the provided delegation name from that subnet + - Add-AzureRmDelegation: Takes in a subnet and adds the provided service name as a delegation to that subnet + - Get-AzureRmDelegation + - Get-AzureRmAvailableServiceDelegations ## Version 6.7.0 * Updated cmdlet New-AzureRmVirtualNetworkGatewayConnection with support for switch ExpressRouteGatewayBypass diff --git a/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj b/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj index ae2ac90cea6f..d086505372a9 100644 --- a/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj +++ b/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj @@ -404,6 +404,8 @@ + + @@ -597,6 +599,12 @@ + + + + + + diff --git a/src/ResourceManager/Network/Commands.Network/Common/NetworkResourceManagerProfile.cs b/src/ResourceManager/Network/Commands.Network/Common/NetworkResourceManagerProfile.cs index 1de7565b15e5..a3f9b492e3a2 100644 --- a/src/ResourceManager/Network/Commands.Network/Common/NetworkResourceManagerProfile.cs +++ b/src/ResourceManager/Network/Commands.Network/Common/NetworkResourceManagerProfile.cs @@ -88,6 +88,7 @@ private static void Initialize() cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); + cfg.CreateMap(); // MNM to CNM cfg.CreateMap(); @@ -107,6 +108,7 @@ private static void Initialize() cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); + cfg.CreateMap(); // TestPrivateIpAddressAvailability // CNM to MNM @@ -122,9 +124,18 @@ private static void Initialize() // MNM to CNM cfg.CreateMap(); + // Available subnet delegations + // CNM to MNM + cfg.CreateMap(); + + // MNM to CNM + cfg.CreateMap(); + // VirtualNetwork Peering + // CNM to MNM cfg.CreateMap(); + // MNM to CNM cfg.CreateMap(); // VirtualNetwork diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSAvailableDelegation.cs b/src/ResourceManager/Network/Commands.Network/Models/PSAvailableDelegation.cs new file mode 100644 index 000000000000..3ef28ef3857b --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/Models/PSAvailableDelegation.cs @@ -0,0 +1,20 @@ +using System.Collections.Generic; +using Microsoft.WindowsAzure.Commands.Common.Attributes; + +namespace Microsoft.Azure.Commands.Network.Models +{ + public class PSAvailableDelegation + { + [Ps1Xml(Label = "Name", Target = ViewControl.Table, Position = 1)] + public string Name { get; set; } + + public string Id { get; set; } + + [Ps1Xml(Target = ViewControl.Table)] + public string Type { get; set; } + + public string ServiceName { get; set; } + + public List Actions { get; set; } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSDelegation.cs b/src/ResourceManager/Network/Commands.Network/Models/PSDelegation.cs new file mode 100644 index 000000000000..4bdfcb1da452 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/Models/PSDelegation.cs @@ -0,0 +1,15 @@ +using Microsoft.WindowsAzure.Commands.Common.Attributes; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Network.Models +{ + public class PSDelegation : PSChildResource + { + [Ps1Xml(Target = ViewControl.Table)] + public string ProvisioningState { get; set; } + + public string ServiceName { get; set; } + + public List Actions { get; set; } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/Models/PSSubnet.cs b/src/ResourceManager/Network/Commands.Network/Models/PSSubnet.cs index 0b2d4ea7e388..6ba71635ad18 100644 --- a/src/ResourceManager/Network/Commands.Network/Models/PSSubnet.cs +++ b/src/ResourceManager/Network/Commands.Network/Models/PSSubnet.cs @@ -44,6 +44,8 @@ public class PSSubnet : PSChildResource [JsonProperty(Order = 1)] public List ServiceEndpointPolicies { get; set; } + public List Delegations { get; set; } + [JsonProperty(Order = 1)] public List InterfaceEndpoints { get; set; } @@ -117,5 +119,11 @@ public string InterfaceEndpointsText { get { return JsonConvert.SerializeObject(InterfaceEndpoints, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } } + + [JsonIgnore] + public string DelegationsText + { + get { return JsonConvert.SerializeObject(Delegations, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } + } } } diff --git a/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/NetworkSecurityRule/AddAzureNetworkSecurityRuleConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/NetworkSecurityRule/AddAzureNetworkSecurityRuleConfigCommand.cs index 36430162fbf8..e96fa7a3196e 100644 --- a/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/NetworkSecurityRule/AddAzureNetworkSecurityRuleConfigCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/NetworkSecurityGroup/NetworkSecurityRule/AddAzureNetworkSecurityRuleConfigCommand.cs @@ -38,7 +38,7 @@ public override void Execute() { base.Execute(); - // Verify if the subnet exists in the NetworkSecurityGroup + // Verify if the security rule exists in the NetworkSecurityGroup var rule = this.NetworkSecurityGroup.SecurityRules.SingleOrDefault(resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); if (rule != null) diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AzureVirtualNetworkSubnetConfigBase.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AzureVirtualNetworkSubnetConfigBase.cs index 2daf44adda30..940e9d7d8988 100644 --- a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AzureVirtualNetworkSubnetConfigBase.cs +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AzureVirtualNetworkSubnetConfigBase.cs @@ -71,5 +71,11 @@ public class AzureVirtualNetworkSubnetConfigBase : NetworkBaseCmdlet ValueFromPipelineByPropertyName = true, HelpMessage = "Service Endpoint Policies")] public List ServiceEndpointPolicy { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Delegations")] + public List Delegations { get; set; } } } diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/Delegation/AddAzureDelegationCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/Delegation/AddAzureDelegationCommand.cs new file mode 100644 index 000000000000..83559abd2365 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/Delegation/AddAzureDelegationCommand.cs @@ -0,0 +1,76 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Network.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.Add, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Delegation", SupportsShouldProcess = false, DefaultParameterSetName = "SetByResource"), OutputType(typeof(PSSubnet))] + public class AddAzureSubnetDelegation : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The name of the delegation")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The name of the service to which the subnet should be delegated")] + [ValidateNotNullOrEmpty] + public string ServiceName { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The subnet")] + public PSSubnet Subnet { get; set; } + + public override void Execute() + { + + base.Execute(); + + // Verify if the delegation exists in the Subnet + PSDelegation delegation = null; + + if (this.Subnet.Delegations != null) + { + delegation = this.Subnet.Delegations.SingleOrDefault(resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + } else + { + this.Subnet.Delegations = new List(); + } + + if (delegation != null) + { + throw new ArgumentException($"Delegation with the specified name '{this.Name}' already exists."); + } + + delegation = new PSDelegation(); + + delegation.Name = this.Name; + delegation.ServiceName = this.ServiceName; + + this.Subnet.Delegations.Add(delegation); + WriteObject(this.Subnet); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/Delegation/GetAzureDelegationCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/Delegation/GetAzureDelegationCommand.cs new file mode 100644 index 000000000000..1cf16227cbee --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/Delegation/GetAzureDelegationCommand.cs @@ -0,0 +1,53 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Network.Models; +using System.Linq; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Delegation"), OutputType(typeof(PSDelegation))] + public class GetAzureDelegation : NetworkBaseCmdlet + { + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The name of the delegation")] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The subnet")] + public PSSubnet Subnet { get; set; } + + public override void Execute() + { + + base.Execute(); + var delegations = this.Subnet.Delegations; + + if (!string.IsNullOrEmpty(this.Name)) + { + var delegation = delegations.First(resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + WriteObject(delegation); + } + else + { + WriteObject(delegations, true); + } + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/Delegation/NewAzureDelegationCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/Delegation/NewAzureDelegationCommand.cs new file mode 100644 index 000000000000..b2f21105b21d --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/Delegation/NewAzureDelegationCommand.cs @@ -0,0 +1,48 @@ +// ---------------------------------------------------------------------------------- +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- +using System.Management.Automation; +using Microsoft.Azure.Commands.Network.Models; + +namespace Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet +{ + [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Delegation", SupportsShouldProcess = false, DefaultParameterSetName = "SetByResource"), OutputType(typeof(PSDelegation))] + public class NewAzureDelegationCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The name of the delegation")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The name of the service to which the subnet should be delegated")] + [ValidateNotNullOrEmpty] + public string ServiceName { get; set; } + + public override void Execute() + { + base.Execute(); + + var delegation = new PSDelegation + { + Name = this.Name, + ServiceName = this.ServiceName + }; + + WriteObject(delegation); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/Delegation/RemoveAzureDelegationCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/Delegation/RemoveAzureDelegationCommand.cs new file mode 100644 index 000000000000..37bcc2c68e76 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/Delegation/RemoveAzureDelegationCommand.cs @@ -0,0 +1,50 @@ +// ---------------------------------------------------------------------------------- +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- +using System.Management.Automation; +using System.Linq; +using Microsoft.Azure.Commands.Network.Models; + +namespace Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet +{ + [Cmdlet(VerbsCommon.Remove, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Delegation", SupportsShouldProcess = false), OutputType(typeof(PSSubnet))] + public class RemoveAzureSubnetDelegation : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The name of the delegation")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = "The subnet from which to remove the delegation")] + public PSSubnet Subnet { get; set; } + + public override void Execute() + { + base.Execute(); + + // Verify if the delegation exists in the Subnet + var delegation = this.Subnet.Delegations.SingleOrDefault(resource => string.Equals(resource.Name, this.Name, System.StringComparison.CurrentCultureIgnoreCase)); + + if (delegation != null) + { + this.Subnet.Delegations.Remove(delegation); + } + + WriteObject(this.Subnet); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmDelegation.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmDelegation.md new file mode 100644 index 000000000000..47b10e528e4a --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmDelegation.md @@ -0,0 +1,116 @@ +--- +external help file: Microsoft.Azure.Commands.Network.dll-Help.xml +Module Name: AzureRM.Network +online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.network/add-azurermdelegation +schema: 2.0.0 +--- + +# Add-AzureRmDelegation + +## SYNOPSIS +Adds a delegation to a subnet. + +## SYNTAX + +``` +Add-AzureRmDelegation -Name -ServiceName -Subnet + [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **Add-AzureRmDelegation** cmdlet adds a service delegation to an Azure subnet. + +## EXAMPLES + +### 1: Adding a delegation +```powershell +PS C:\> $vnet = Get-AzureRmVirtualNetwork -Name "myVNet" -ResourceGroupName "myResourceGroup" +PS C:\> $subnet = Get-AzureRmVirtualNetworkSubnetConfig -Name "mySubnet" -VirtualNetwork $vnet +PS C:\> $subnet = Add-AzureRmDelegation -Name "myDelegation" -ServiceName "Microsoft.Sql/servers" -Subnet $subnet +PS C:\> Set-AzureRmVirtualNetwork $vnet +``` + +The first command retrieves the virtual network on which the subnet lies. The second command isolates out the subnet of interest - the one which you want to delegate. The third command adds a delegation to the subnet. This particular example would be useful when you want to enable SQL to create interface endpoints in this subnet. The final command sends the updated subnet to the server to actually update your subnet. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the delegation + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceName +The name of the service to which the subnet should be delegated + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Subnet +The subnet + +```yaml +Type: PSSubnet +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. +For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.Network.Models.PSSubnet + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSSubnet + +## NOTES + +## RELATED LINKS +[Get-AzureRmVirtualNetwork](./Get-AzureRmVirtualNetwork.md) +[Get-AzureRmVirtualNetworkSubnetConfig](./Get-AzureRmVirtualNetworkSubnetConfig.md) +[Set-AzureRmVirtualNetwork](./Set-AzureRmVirtualNetwork.md) \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmNetworkSecurityRuleConfig.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmNetworkSecurityRuleConfig.md index 850890b0060f..44a3a2d7c409 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmNetworkSecurityRuleConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmNetworkSecurityRuleConfig.md @@ -56,7 +56,7 @@ Add-AzureRmNetworkSecurityRuleConfig -Name rdp-rule -Description "Allow RDP" -Ac The first command retrieves an Azure network security group named "nsg1" from resource group "rg1". The second command adds a network security rule named "rdp-rule" that allows traffic from internet on port 3389 to the retrieved network security group object. Persists the modified Azure network security group. -### 1: Adding a new security rule with application security groups +### 2: Adding a new security rule with application security groups ``` $srcAsg = New-AzureRmApplicationSecurityGroup -ResourceGroupName MyResourceGroup -Name srcAsg -Location "West US" $destAsg = New-AzureRmApplicationSecurityGroup -ResourceGroupName MyResourceGroup -Name destAsg -Location "West US" diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVirtualNetworkSubnetConfig.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVirtualNetworkSubnetConfig.md index 781b1a588537..3894ae1b73cf 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVirtualNetworkSubnetConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVirtualNetworkSubnetConfig.md @@ -50,6 +50,17 @@ New-AzureRmResourceGroup -Name TestResourceGroup -Location centralus Add-AzureRmVirtualNetworkSubnetConfig is then used to add a subnet to the in-memory representation of the virtual network. The Set-AzureRmVirtualNetwork command updates the existing virtual network with the new subnet. +### 2: Add a delegation to a subnet being added to an existing virtual network +```powershell +PS C:\> $vnet = Get-AzureRmVirtualNetwork -Name "myVNet" -ResourceGroupName "myResourceGroup" +PS C:\> $delegation = New-AzureRmDelegation -Name "myDelegation" -ServiceName "Microsoft.Sql/servers" +PS C:\> Add-AzureRmVirtualNetworkSubnetConfig -Name "mySubnet" -VirtualNetwork $vnet -AddressPrefix "10.0.2.0/24" -Delegation $delegation | Set-AzureRmVirtualNetwork +``` + +This example first gets an existing vnet. +Then, it creates a delegation object in memory. +Finally, it creates a new subnet with that delegation that is added to the vnet. The modified configuration is then sent to the server. + ## PARAMETERS ### -AddressPrefix diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmAvailableServiceDelegation.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmAvailableServiceDelegation.md new file mode 100644 index 000000000000..2104cbe99f5b --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmAvailableServiceDelegation.md @@ -0,0 +1,92 @@ +--- +external help file: Microsoft.Azure.Commands.Network.dll-Help.xml +Module Name: AzureRM.Network +online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.network/get-azurermavailableservicedelegation +schema: 2.0.0 +--- + +# Get-AzureRmAvailableServiceDelegation + +## SYNOPSIS +Get available service delegations in the region. + +## SYNTAX + +``` +Get-AzureRmAvailableServiceDelegation -Location [-DefaultProfile ] + [] +``` + +## DESCRIPTION +The **Get-AzureRmAvailableServiceDelegation** cmdlet allows you to retrieve all of the available service delegations for a subnet in the provided location. This cmdlet does *not* describe which delegations may co-exist on a single subnet. + +## EXAMPLES + +### 1: Getting all available service delegations +```powershell +PS C:\> Get-AzureRmAvailableServiceDelegation -Location "westus" + +Name : Microsoft.Web.serverFarms +Id : /subscriptions/subId/providers/Microsoft.Network/availableDelegations/Microsoft.Web.serverFarms +Type : Microsoft.Network/availableDelegations +ServiceName : Microsoft.Web/serverFarms +Actions : {Microsoft.Network/virtualNetworks/subnets/action} + +Name : Microsoft.Sql.servers +Id : /subscriptions/subId/providers/Microsoft.Network/availableDelegations/Microsoft.Sql.servers +Type : Microsoft.Network/availableDelegations +ServiceName : Microsoft.Sql/servers +Actions : {} +``` + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +The location. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. +For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSAvailableDelegation + +## NOTES + +## RELATED LINKS +[Add-AzureRmDelegation](./Add-AzureRmDelegation.md) +[New-AzureRmDelegation](./New-AzureRmDelegation.md) +[Remove-AzureRmDelegation](./Remove-AzureRmDelegation.md) +[Get-AzureRmDelegation](./Get-AzureRmDelegation.md) \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmDelegation.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmDelegation.md new file mode 100644 index 000000000000..fa616e6d7e64 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmDelegation.md @@ -0,0 +1,114 @@ +--- +external help file: Microsoft.Azure.Commands.Network.dll-Help.xml +Module Name: AzureRM.Network +online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.network/get-azurermdelegation +schema: 2.0.0 +--- + +# Get-AzureRmDelegation + +## SYNOPSIS +Get a delegation (or all of the delegations) on a given subnet. + +## SYNTAX + +``` +Get-AzureRmDelegation [-Name ] -Subnet [-DefaultProfile ] + [] +``` + +## DESCRIPTION +The **Get-AzureRmDelegation** cmdlet gets the named delegation from a subnet. If no delegation is named, it returns all of the delegations on the provided subnet. + +## EXAMPLES + +### 1: Retrieving a specific delegation +```powershell +PS C:\> $subnet = Get-AzureRmVirtualNetwork -Name "myVNet" -ResourceGroupName "myResourceGroup" | Get-AzureRmVirtualNetworkSubnetConfig -Name "mySubnet" +PS C:\> Get-AzureRmDelegation -Name "myDelegation" -Subnet $subnet + +ProvisioningState : Succeeded +ServiceName : Microsoft.Sql/servers +Actions : {} +Name : myDelegation +Etag : "thisisaguid" +Id : /subscriptions/subId/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mySubnet/delegations/myDelegation +``` + +The first line retrieves the subnet of interest. The second line shows the delegation information for the delegation called "myDelegation." + +### 2: Retrieving all subnet delegations +```powershell +PS C:\> $vnet = Get-AzureRmVirtualNetwork -Name "myVNet" -ResourceGroupName "myResourceGroup" | Get-AzureRmVirtualNetworkSubnetConfig -Name "mySubnet" +PS C:\> $delegations = Get-AzureRmDelegation -Subnet $subnet +``` + +The first line retrieves the subnet of interest. The second line stores a list of all of the delegations on _mySubnet_ in the $delegations variable. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the delegation + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Subnet +The subnet + +```yaml +Type: PSSubnet +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. +For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Network.Models.PSSubnet + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSDelegation + +## NOTES + +## RELATED LINKS +[Add-AzureRmDelegation](./Add-AzureRmDelegation.md) +[New-AzureRmDelegation](./New-AzureRmDelegation.md) +[Remove-AzureRmDelegation](./Remove-AzureRmDelegation.md) +[Get-AzureRmVirtualNetwork](./Get-AzureRmVirtualNetwork.md) +[Get-AzureRmVirtualNetworkSubnetConfig](./Get-AzureRmVirtualNetworkSubnetConfig.md) \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmDelegation.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmDelegation.md new file mode 100644 index 000000000000..bb3f3c180b1c --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmDelegation.md @@ -0,0 +1,103 @@ +--- +external help file: Microsoft.Azure.Commands.Network.dll-Help.xml +Module Name: AzureRM.Network +online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.network/new-azurermdelegation +schema: 2.0.0 +--- + +# New-AzureRmDelegation + +## SYNOPSIS +Creates a service delegation. + +## SYNTAX + +``` +New-AzureRmDelegation -Name -ServiceName [-DefaultProfile ] + [] +``` + +## DESCRIPTION +The **New-AzureRmDelegation** cmdlet creates a service delegation that can be added to a subnet. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> $delegation = New-AzureRmDelegation -Name "myDelegation" -ServiceName "Microsoft.Sql/servers" +PS C:\> $vnet = Get-AzureRmVirtualNetwork -Name "myVNet" -ResourceGroupName "myResourceGroup" +PS C:\> $subnet = Get-AzureRmVirtualNetworkSubnetConfig -Name "mySubnet" -VirtualNetwork $vnet +PS C:\> $subnet.Delegations.Add($delegation) +PS C:\> Set-AzureRmVirtualNetwork $vnet +``` + +The first cmdlet creates a delegation that can be added to a subnet, and stores it in the $delegation variable. The second and third cmdlets retrieve the subnet to be delegated. The fourth cmdlet adds the created delegation to the subnet of interest, and the final cmdlet sends the updated configuration to the server. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the delegation + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceName +The name of the service to which the subnet should be delegated + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. +For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSDelegation + +## NOTES + +## RELATED LINKS +[Add-AzureRmDelegation](./Add-AzureRmDelegation.md) +[Get-AzureRmDelegation](./Get-AzureRmDelegation.md) +[Remove-AzureRmDelegation](./Remove-AzureRmDelegation.md) +[Get-AzureRmVirtualNetwork](./Get-AzureRmVirtualNetwork.md) +[Get-AzureRmVirtualNetworkSubnetConfig](./Get-AzureRmVirtualNetworkSubnetConfig.md) +[Set-AzureRmVirtualNetwork](./Set-AzureRmVirtualNetwork.md) \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmDelegation.md b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmDelegation.md new file mode 100644 index 000000000000..031a6852f734 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmDelegation.md @@ -0,0 +1,122 @@ +--- +external help file: Microsoft.Azure.Commands.Network.dll-Help.xml +Module Name: AzureRM.Network +online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.network/remove-azurermdelegation +schema: 2.0.0 +--- + +# Remove-AzureRmDelegation + +## SYNOPSIS +Removes a service delegation from the provided subnet. + +## SYNTAX + +``` +Remove-AzureRmDelegation -Name -Subnet [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **Remove-AzureRmDelegation** cmdlet takes in a Subnet with delegations and removes the named delegation from that subnet. + +## EXAMPLES + +### Example 1 +```powershell +# Add a delegation to an existing subnet +PS C:\> $vnet = Get-AzureRmVirtualNetwork -Name "myVNet" -ResourceGroupName "myResourceGroup" +PS C:\> $subnet = Get-AzureRmVirtualNetworkSubnetConfig -Name "mySubnet" -VirtualNetwork $vnet +PS C:\> $subnet = Add-AzureRmDelegation -Name "myDelegation" -ServiceName "Microsoft.Sql/servers" -Subnet $subnet +PS C:\> Set-AzureRmVirtualNetwork $vnet + +# Remove the delegation +PS C:\> $vnet = Get-AzureRmVirtualNetwork -Name "myVNet" -ResourceGroupName "myResourceGroup" +PS C:\> $subnet = Get-AzureRmVirtualNetworkSubnetConfig -Name "mySubnet" -VirtualNetwork $vnet +PS C:\> $subnet = Remove-AzureRmDelegation -Name "myDelegation" -Subnet $subnet +PS C:\> Set-AzureRmVirtualNetwork $vnet +``` + +In this example, the first half (found under _"Add a delegation to an existing subnet"_) is identical to [Add-AzureRmDelegation](./Add-AzureRmDelegation.md). In the second half, the first two cmdlets retrieve the subnet of interest, refreshing the local copy with what's on the server. The third cmdlet removes the delegation that was created in the first half from _mySubnet_ and stores the updated subnet in _$subnet_. The final cmdlet updates the server with the removed delegation. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the delegation + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceName +The name of the service to which the subnet should be delegated + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Subnet +The subnet from which to remove the delegation + +```yaml +Type: Microsoft.Azure.Commands.Network.Models.PSSubnet +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Network.Models.PSSubnet +### System.String +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSSubnet +## NOTES + +## RELATED LINKS + +[Add-AzureRmDelegation](./Add-AzureRmDelegation.md) +[Get-AzureRmDelegation](./Get-AzureRmDelegation.md) +[New-AzureRmDelegation](./New-AzureRmDelegation.md) +[Get-AzureRmVirtualNetwork](./Get-AzureRmVirtualNetwork.md) +[Get-AzureRmVirtualNetworkSubnetConfig](./Get-AzureRmVirtualNetworkSubnetConfig.md) +[Set-AzureRmVirtualNetwork](./Set-AzureRmVirtualNetwork.md) \ No newline at end of file diff --git a/tools/AzureRM/AzureRM.psm1 b/tools/AzureRM/AzureRM.psm1 deleted file mode 100644 index 72a6c78124358ea79d250b28a39ae96aed63d32e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9610 zcmcIqYi|=r6uqA-^*^}O5<#lnH~~T;Rcan2SWN;Vq5aTS$gdbT&f3@uG%fk-wCCLG zVZCmG?|Qbf*6W?!ojG&vbLRS=Pv1%fpReUB;ja@JNmt&zhxr?{(Rh@1-Fd_};)(L!O|uAzQfn2rWCZiF4q<`s7tr zUdWjo0O3*#Zh8+j?^xvv8uS-e1hCdC?L(v!D9IKUmUzBu9|;O5a# zJV$tM1i5fl{;}&iKWaxy`WS^XTQ=^)*|_Tw<5J)1(7#0SUMr7NU?HdPm2EQVL9>p2 z9xDqEBk+`mg%XKD5||l-g%hwthA0_oZUWu%aAJH=JNWc!nvvlcL!+qwnJqVggqq)% zH$dcA+mbD4KpuD50@arR=Y?177pT*5ZTE_u*msHY8l$IhN(rx^W> zdt|a6uL*mQ_fRzXfx*AA4ku6AO4Rq#3yBr96w{mu|7r}fbRjkQg3Ddv|WjB(Mn|C&aT+qD1JG zGenG@ec)prFhQ2&(OFukSxdZsI8gu4l0%%CvoN*~fXU~jsV^q4SU+_ej%(yFrisgP z3}P^UT^=LM&@RD5mUU2zI|Z1boZ@49U?$*UhDj;;v^T`|c#CF+{9evgH&P**wv&qx z&$gp2`ape($3}u?#`FJFeL1c6NNt1bndNcCtfCArmW}@m-n8u=-6S7x56`eR%4cw% z`BUcQiaDq9L8IfPYjpa^EgbP)@>Kl|hmouB)Qw)*H`}XtniUITr|ovNE`5dfxL4d&`}qNH z|My;FB{M`;GtT4pAXt@?fb$z*=wp_l z^1HKA?VCIMVGnx>KFIcinRWzz!#O|4&>GJ1Xm%l+?hM0sISGd`7SCTswD@#jZf#D} zSyc&oky!vM^xO*|H$C}NHM9o3nBYS#-c_v)|88hP4vDt+z}($BvWVxd>teGCy;OlI zkC-|hYY?(DxJwj;nA2D5Vhhb3>vw%@o0ubuxdOhs2y^Eo{= nggVU_!Kgs}Ek^=A?7tSq_)=jCN@SN8ocL!uIN diff --git a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv index fb5064e9be93..c5aed2934ae7 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv @@ -248,6 +248,9 @@ "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkSubnetConfigCommand","Set-AzureRmVirtualNetworkSubnetConfig","1","8100","Set-AzureRmVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkSubnetConfigCommand","Add-AzureRmVirtualNetworkSubnetConfig","1","8100","Add-AzureRmVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkSubnetConfigCommand","New-AzureRmVirtualNetworkSubnetConfig","1","8100","New-AzureRmVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.NewAzureDelegationCommand","New-AzureRmDelegation","1","8100","New-AzureRmDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureDelegationCommand","Remove-AzureRmDelegation","1","8100","Remove-AzureRmDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.AddAzureDelegationCommand","Add-AzureRmDelegation","1","8100","Add-AzureRmDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkCommand","Get-AzureRmVirtualNetwork","1","8510","Cmdlet 'Get-AzureRmVirtualNetwork' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.NetworkWatcher.NewAzureNetworkWatcherProtocolConfiguration","New-AzureRmNetworkWatcherProtocolConfiguration","1","8100","New-AzureRmNetworkWatcherProtocolConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.Automation.GetAzureRmDdosProtectionPlan","Get-AzureRmDdosProtectionPlan","1","8510","Cmdlet 'Get-AzureRmDdosProtectionPlan' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." diff --git a/tools/StaticAnalysis/Exceptions/AzureRM.Network/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/AzureRM.Network/SignatureIssues.csv index cd7fa7fc48b5..7e18d8161b80 100644 --- a/tools/StaticAnalysis/Exceptions/AzureRM.Network/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/AzureRM.Network/SignatureIssues.csv @@ -249,6 +249,9 @@ "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkSubnetConfigCommand","Set-AzureRmVirtualNetworkSubnetConfig","1","8100","Set-AzureRmVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkSubnetConfigCommand","Add-AzureRmVirtualNetworkSubnetConfig","1","8100","Add-AzureRmVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkSubnetConfigCommand","New-AzureRmVirtualNetworkSubnetConfig","1","8100","New-AzureRmVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.NewAzureDelegationCommand","New-AzureRmDelegation","1","8100","New-AzureRmDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureDelegationCommand","Remove-AzureRmDelegation","1","8100","Remove-AzureRmDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.AddAzureDelegationCommand","Add-AzureRmDelegation","1","8100","Add-AzureRmDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkCommand","Get-AzureRmVirtualNetwork","1","8510","Cmdlet 'Get-AzureRmVirtualNetwork' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.NetworkWatcher.NewAzureNetworkWatcherProtocolConfiguration","New-AzureRmNetworkWatcherProtocolConfiguration","1","8100","New-AzureRmNetworkWatcherProtocolConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.Automation.GetAzureRmDdosProtectionPlan","Get-AzureRmDdosProtectionPlan","1","8510","Cmdlet 'Get-AzureRmDdosProtectionPlan' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." From f4affadbc21e9815d553c6467f78e9d00c8c8387 Mon Sep 17 00:00:00 2001 From: Rupali Vohra Date: Wed, 12 Sep 2018 18:20:24 -0700 Subject: [PATCH 02/11] Modifications to existing subnet commands --- ...dAzureVirtualNetworkSubnetConfigCommand.cs | 5 +++ .../AzureVirtualNetworkSubnetConfigBase.cs | 2 +- ...wAzureVirtualNetworkSubnetConfigCommand.cs | 5 +++ ...tAzureVirtualNetworkSubnetConfigCommand.cs | 9 +++++ .../Add-AzureRmVirtualNetworkSubnetConfig.md | 28 +++++++++++-- .../Get-AzureRmVirtualNetworkSubnetConfig.md | 1 - .../New-AzureRmVirtualNetworkSubnetConfig.md | 38 ++++++++++++++++++ .../Set-AzureRmVirtualNetworkSubnetConfig.md | 39 ++++++++++++++++++- 8 files changed, 120 insertions(+), 7 deletions(-) diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AddAzureVirtualNetworkSubnetConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AddAzureVirtualNetworkSubnetConfigCommand.cs index 21bd01270adb..81349dd7fecc 100644 --- a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AddAzureVirtualNetworkSubnetConfigCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AddAzureVirtualNetworkSubnetConfigCommand.cs @@ -91,6 +91,11 @@ public override void Execute() } } + if (this.Delegation != null) + { + subnet.Delegations = this.Delegation; + } + this.VirtualNetwork.Subnets.Add(subnet); WriteObject(this.VirtualNetwork); diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AzureVirtualNetworkSubnetConfigBase.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AzureVirtualNetworkSubnetConfigBase.cs index 940e9d7d8988..f93a4441f4c0 100644 --- a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AzureVirtualNetworkSubnetConfigBase.cs +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/AzureVirtualNetworkSubnetConfigBase.cs @@ -76,6 +76,6 @@ public class AzureVirtualNetworkSubnetConfigBase : NetworkBaseCmdlet Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Delegations")] - public List Delegations { get; set; } + public List Delegation { get; set; } } } diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/NewAzureVirtualNetworkSubnetConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/NewAzureVirtualNetworkSubnetConfigCommand.cs index 98fe198b0953..c4cdcf4c0bde 100644 --- a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/NewAzureVirtualNetworkSubnetConfigCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/NewAzureVirtualNetworkSubnetConfigCommand.cs @@ -76,6 +76,11 @@ public override void Execute() subnet.ServiceEndpointPolicies = this.ServiceEndpointPolicy; } + if (this.Delegation != null) + { + subnet.Delegations = this.Delegation; + } + WriteObject(subnet); } } diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/SetAzureVirtualNetworkSubnetConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/SetAzureVirtualNetworkSubnetConfigCommand.cs index 2ef23ba8fee0..26f94fdcb95f 100644 --- a/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/SetAzureVirtualNetworkSubnetConfigCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetwork/Subnet/SetAzureVirtualNetworkSubnetConfigCommand.cs @@ -101,6 +101,15 @@ public override void Execute() subnet.ServiceEndpointPolicies = null; } + if (this.Delegation != null) + { + subnet.Delegations = this.Delegation; + } + else + { + subnet.Delegations = null; + } + WriteObject(this.VirtualNetwork); } } diff --git a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVirtualNetworkSubnetConfig.md b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVirtualNetworkSubnetConfig.md index 3894ae1b73cf..db34ce7549c9 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVirtualNetworkSubnetConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVirtualNetworkSubnetConfig.md @@ -19,7 +19,8 @@ Add-AzureRmVirtualNetworkSubnetConfig -Name -VirtualNetwork [-NetworkSecurityGroup ] [-RouteTable ] [-ServiceEndpoint ] - [-ServiceEndpointPolicies ] + [-ServiceEndpointPolicy ] + [-Delegation ] [-DefaultProfile ] [] ``` @@ -28,7 +29,8 @@ Add-AzureRmVirtualNetworkSubnetConfig -Name -VirtualNetwork -VirtualNetwork -AddressPrefix [-NetworkSecurityGroupId ] [-RouteTableId ] [-ServiceEndpoint ] - [-ServiceEndpointPolicies ] + [-ServiceEndpointPolicy ] + [-Delegation ] [-DefaultProfile ] [] ``` @@ -93,6 +95,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Delegation +List of services that have permission to perform operations on this subnet. + +```yaml +Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -Name Specifies the name of the subnet configuration to add. @@ -180,7 +197,7 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -ServiceEndpointPolicies +### -ServiceEndpointPolicy Service Endpoint Policies ```yaml @@ -216,7 +233,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork -Parameters: VirtualNetwork (ByValue) ### System.String @@ -226,6 +242,10 @@ Parameters: VirtualNetwork (ByValue) ### System.Collections.Generic.List`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] +### System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.Commands.Network, Version=6.7.0.0, Culture=neutral, PublicKeyToken=null]] + +### System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.Commands.Network, Version=6.7.0.0, Culture=neutral, PublicKeyToken=null]] + ## OUTPUTS ### Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork diff --git a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkSubnetConfig.md b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkSubnetConfig.md index d19bccf3444a..56e4ffa464b3 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkSubnetConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkSubnetConfig.md @@ -88,7 +88,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork -Parameters: VirtualNetwork (ByValue) ## OUTPUTS diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkSubnetConfig.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkSubnetConfig.md index 5477e800c386..d28350133317 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkSubnetConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkSubnetConfig.md @@ -19,6 +19,8 @@ New-AzureRmVirtualNetworkSubnetConfig -Name -AddressPrefix [-NetworkSecurityGroup ] [-RouteTable ] [-ServiceEndpoint ] + [-ServiceEndpointPolicy ] + [-Delegation ] [-DefaultProfile ] [] ``` @@ -27,6 +29,8 @@ New-AzureRmVirtualNetworkSubnetConfig -Name New-AzureRmVirtualNetworkSubnetConfig -Name -AddressPrefix [-NetworkSecurityGroupId ] [-RouteTableId ] [-ServiceEndpoint ] + [-ServiceEndpointPolicy ] + [-Delegation ] [-DefaultProfile ] [] ``` @@ -96,6 +100,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Delegation +Delegations + +```yaml +Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -Name Specifies the name of the subnet configuration to create. @@ -186,6 +205,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -ServiceEndpointPolicy +Service Endpoint Policies + +```yaml +Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). @@ -199,6 +233,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Collections.Generic.List`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] +### System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.Commands.Network, Version=6.7.0.0, Culture=neutral, PublicKeyToken=null]] + +### System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.Commands.Network, Version=6.7.0.0, Culture=neutral, PublicKeyToken=null]] + ## OUTPUTS ### Microsoft.Azure.Commands.Network.Models.PSSubnet diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkSubnetConfig.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkSubnetConfig.md index 7be9bdcd9dbf..950f5098a67e 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkSubnetConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkSubnetConfig.md @@ -19,6 +19,8 @@ Set-AzureRmVirtualNetworkSubnetConfig -Name -VirtualNetwork [-NetworkSecurityGroup ] [-RouteTable ] [-ServiceEndpoint ] + [-ServiceEndpointPolicy ] + [-Delegation ] [-DefaultProfile ] [] ``` @@ -27,6 +29,8 @@ Set-AzureRmVirtualNetworkSubnetConfig -Name -VirtualNetwork -VirtualNetwork -AddressPrefix [-NetworkSecurityGroupId ] [-RouteTableId ] [-ServiceEndpoint ] + [-ServiceEndpointPolicy ] + [-Delegation ] [-DefaultProfile ] [] ``` @@ -114,6 +118,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Delegation +Delegations + +```yaml +Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -Name Specifies the name of a subnet configuration that this cmdlet configures. @@ -204,6 +223,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -ServiceEndpointPolicy +Service Endpoint Policies + +```yaml +Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -VirtualNetwork Specifies the **VirtualNetwork** object that contains the subnet configuration. @@ -225,7 +259,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS ### Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork -Parameters: VirtualNetwork (ByValue) ### System.String @@ -235,6 +268,10 @@ Parameters: VirtualNetwork (ByValue) ### System.Collections.Generic.List`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] +### System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.Commands.Network, Version=6.7.0.0, Culture=neutral, PublicKeyToken=null]] + +### System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.Commands.Network, Version=6.7.0.0, Culture=neutral, PublicKeyToken=null]] + ## OUTPUTS ### Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork From 0c0c99e8001ab6c77aa4a46c582e0f27e1a3fa58 Mon Sep 17 00:00:00 2001 From: Rupali Vohra Date: Wed, 12 Sep 2018 18:34:49 -0700 Subject: [PATCH 03/11] Updating AzureRm <-> Az mappings --- .../Commands.Profile/AzureRmAlias/Mappings.cs | 1324 +++++++++++++++++ 1 file changed, 1324 insertions(+) diff --git a/src/ResourceManager/Profile/Commands.Profile/AzureRmAlias/Mappings.cs b/src/ResourceManager/Profile/Commands.Profile/AzureRmAlias/Mappings.cs index 22e2174dc963..41d2bc419547 100644 --- a/src/ResourceManager/Profile/Commands.Profile/AzureRmAlias/Mappings.cs +++ b/src/ResourceManager/Profile/Commands.Profile/AzureRmAlias/Mappings.cs @@ -1926,6 +1926,10 @@ public static Dictionary GetCaseInsensitiveMapping() 'Az.Network': { 'New-AzFirewallNatRuleCollection': 'New-AzureRmFirewallNatRuleCollection', 'New-AzFirewallNatRule': 'New-AzureRmFirewallNatRule', + 'Get-AzDelegation': 'Get-AzureRmDelegation', + 'Add-AzDelegation': 'Add-AzureRmDelegation', + 'Remove-AzDelegation': 'Remove-AzureRmDelegation', + 'Get-AzAvailableServiceDelegation': 'Get-AzureRmAvailableServiceDelegation', 'New-AzLoadBalancerFrontendIpConfig': 'New-AzureRmLoadBalancerFrontendIpConfig', 'Remove-AzRouteFilterRuleConfig': 'Remove-AzureRmRouteFilterRuleConfig', 'Add-AzApplicationGatewayFrontendIPConfig': 'Add-AzureRmApplicationGatewayFrontendIPConfig', @@ -2193,6 +2197,7 @@ public static Dictionary GetCaseInsensitiveMapping() 'Get-AzNetworkWatcherFlowLogStatus': 'Get-AzureRmNetworkWatcherFlowLogStatus', 'New-AzFirewallNetworkRule': 'New-AzureRmFirewallNetworkRule', 'Get-AzExpressRouteServiceProvider': 'Get-AzureRmExpressRouteServiceProvider', + 'New-AzDelegation': 'New-AzureRmDelegation', 'Set-AzNetworkWatcherConfigFlowLog': 'Set-AzureRmNetworkWatcherConfigFlowLog', 'Remove-AzPublicIpPrefix': 'Remove-AzureRmPublicIpPrefix', 'New-AzFirewallApplicationRuleCollection': 'New-AzureRmFirewallApplicationRuleCollection', @@ -2379,6 +2384,1325 @@ public static Dictionary GetCaseInsensitiveMapping() } } + }, + 'Az.DataLakeAnalytics': { + 'Get-AzDataLakeAnalyticsJobRecurrence': 'Get-AzureRmDataLakeAnalyticsJobRecurrence', + 'Set-AzDataLakeAnalyticsFirewallRule': 'Set-AzureRmDataLakeAnalyticsFirewallRule', + 'Set-AzDataLakeAnalyticsCatalogItemAclEntry': 'Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry', + 'Get-AzDataLakeAnalyticsDataSource': 'Get-AzureRmDataLakeAnalyticsDataSource', + 'Stop-AzDataLakeAnalyticsJob': 'Stop-AzureRmDataLakeAnalyticsJob', + 'Get-AzDataLakeAnalyticsCatalogItem': 'Get-AzureRmDataLakeAnalyticsCatalogItem', + 'Get-AzDataLakeAnalyticsCatalogItemAclEntry': 'Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry', + 'Remove-AzDataLakeAnalyticsDataSource': 'Remove-AzureRmDataLakeAnalyticsDataSource', + 'Submit-AzDataLakeAnalyticsJob': 'Submit-AzureRmDataLakeAnalyticsJob', + 'New-AzDataLakeAnalyticsCatalogSecret': 'New-AzureRmDataLakeAnalyticsCatalogSecret', + 'Test-AzDataLakeAnalyticsCatalogItem': 'Test-AzureRmDataLakeAnalyticsCatalogItem', + 'Remove-AzDataLakeAnalyticsFirewallRule': 'Remove-AzureRmDataLakeAnalyticsFirewallRule', + 'Get-AzDataLakeAnalyticsJob': 'Get-AzureRmDataLakeAnalyticsJob', + 'Get-AzDataLakeAnalyticsFirewallRule': 'Get-AzureRmDataLakeAnalyticsFirewallRule', + 'Remove-AzDataLakeAnalyticsCatalogSecret': 'Remove-AzureRmDataLakeAnalyticsCatalogSecret', + 'Test-AzDataLakeAnalyticsAccount': 'Test-AzureRmDataLakeAnalyticsAccount', + 'Set-AzDataLakeAnalyticsCatalogCredential': 'Set-AzureRmDataLakeAnalyticsCatalogCredential', + 'Remove-AzDataLakeAnalyticsAccount': 'Remove-AzureRmDataLakeAnalyticsAccount', + 'Update-AzDataLakeAnalyticsComputePolicy': 'Update-AzureRmDataLakeAnalyticsComputePolicy', + 'Get-AzDataLakeAnalyticsAccount': 'Get-AzureRmDataLakeAnalyticsAccount', + 'Get-AzDataLakeAnalyticsComputePolicy': 'Get-AzureRmDataLakeAnalyticsComputePolicy', + 'Get-AzDataLakeAnalyticsJobPipeline': 'Get-AzureRmDataLakeAnalyticsJobPipeline', + 'Add-AzDataLakeAnalyticsDataSource': 'Add-AzureRmDataLakeAnalyticsDataSource', + 'Remove-AzDataLakeAnalyticsCatalogItemAclEntry': 'Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry', + 'Add-AzDataLakeAnalyticsFirewallRule': 'Add-AzureRmDataLakeAnalyticsFirewallRule', + 'Remove-AzDataLakeAnalyticsCatalogCredential': 'Remove-AzureRmDataLakeAnalyticsCatalogCredential', + 'New-AzDataLakeAnalyticsAccount': 'New-AzureRmDataLakeAnalyticsAccount', + 'Set-AzDataLakeAnalyticsCatalogSecret': 'Set-AzureRmDataLakeAnalyticsCatalogSecret', + 'New-AzDataLakeAnalyticsCatalogCredential': 'New-AzureRmDataLakeAnalyticsCatalogCredential', + 'Set-AzDataLakeAnalyticsDataSource': 'Set-AzureRmDataLakeAnalyticsDataSource', + 'Wait-AzDataLakeAnalyticsJob': 'Wait-AzureRmDataLakeAnalyticsJob', + 'Remove-AzDataLakeAnalyticsComputePolicy': 'Remove-AzureRmDataLakeAnalyticsComputePolicy', + 'Set-AzDataLakeAnalyticsAccount': 'Set-AzureRmDataLakeAnalyticsAccount', + 'New-AzDataLakeAnalyticsComputePolicy': 'New-AzureRmDataLakeAnalyticsComputePolicy' + }, + 'Az.MachineLearning': { + 'New-AzMlWebService': 'New-AzureRmMlWebService', + 'Get-AzMlWebService': 'Get-AzureRmMlWebService', + 'Import-AzMlWebService': 'Import-AzureRmMlWebService', + 'Get-AzMlCommitmentAssociation': 'Get-AzureRmMlCommitmentAssociation', + 'Update-AzMlCommitmentPlan': 'Update-AzureRmMlCommitmentPlan', + 'Update-AzMlWebService': 'Update-AzureRmMlWebService', + 'Get-AzMlWebServiceKeys': 'Get-AzureRmMlWebServiceKeys', + 'Get-AzMlCommitmentPlanUsageHistory': 'Get-AzureRmMlCommitmentPlanUsageHistory', + 'Add-AzMlWebServiceRegionalProperty': 'Add-AzureRmMlWebServiceRegionalProperty', + 'New-AzMlCommitmentPlan': 'New-AzureRmMlCommitmentPlan', + 'Get-AzMlCommitmentPlan': 'Get-AzureRmMlCommitmentPlan', + 'Remove-AzMlWebService': 'Remove-AzureRmMlWebService', + 'Move-AzMlCommitmentAssociation': 'Move-AzureRmMlCommitmentAssociation', + 'Export-AzMlWebService': 'Export-AzureRmMlWebService', + 'Remove-AzMlCommitmentPlan': 'Remove-AzureRmMlCommitmentPlan' + }, + 'Az.DataLakeStore': { + 'Get-AzDataLakeStoreChildItemSummary': 'Get-AzureRmDataLakeStoreChildItemSummary', + 'Set-AzDataLakeStoreItemPermission': 'Set-AzureRmDataLakeStoreItemPermission', + 'Add-AzDataLakeStoreItemContent': 'Add-AzureRmDataLakeStoreItemContent', + 'Get-AzDataLakeStoreChildItem': 'Get-AzureRmDataLakeStoreChildItem', + 'Get-AzDataLakeStoreItem': 'Get-AzureRmDataLakeStoreItem', + 'Set-AzDataLakeStoreItemExpiry': 'Set-AzureRmDataLakeStoreItemExpiry', + 'Remove-AzDataLakeStoreAccount': 'Remove-AzureRmDataLakeStoreAccount', + 'Get-AzDataLakeStoreFirewallRule': 'Get-AzureRmDataLakeStoreFirewallRule', + 'New-AzDataLakeStoreAccount': 'New-AzureRmDataLakeStoreAccount', + 'Remove-AzDataLakeStoreFirewallRule': 'Remove-AzureRmDataLakeStoreFirewallRule', + 'Add-AzDataLakeStoreFirewallRule': 'Add-AzureRmDataLakeStoreFirewallRule', + 'Join-AzDataLakeStoreItem': 'Join-AzureRmDataLakeStoreItem', + 'Import-AzDataLakeStoreItem': 'Import-AzureRmDataLakeStoreItem', + 'Remove-AzDataLakeStoreItemAclEntry': 'Remove-AzureRmDataLakeStoreItemAclEntry', + 'Set-AzDataLakeStoreItemOwner': 'Set-AzureRmDataLakeStoreItemOwner', + 'Remove-AzDataLakeStoreTrustedIdProvider': 'Remove-AzureRmDataLakeStoreTrustedIdProvider', + 'Enable-AzDataLakeStoreKeyVault': 'Enable-AzureRmDataLakeStoreKeyVault', + 'Set-AzDataLakeStoreAccount': 'Set-AzureRmDataLakeStoreAccount', + 'Add-AzDataLakeStoreTrustedIdProvider': 'Add-AzureRmDataLakeStoreTrustedIdProvider', + 'Get-AzDataLakeStoreItemPermission': 'Get-AzureRmDataLakeStoreItemPermission', + 'Remove-AzDataLakeStoreItem': 'Remove-AzureRmDataLakeStoreItem', + 'New-AzDataLakeStoreItem': 'New-AzureRmDataLakeStoreItem', + 'Export-AzDataLakeStoreItem': 'Export-AzureRmDataLakeStoreItem', + 'Move-AzDataLakeStoreItem': 'Move-AzureRmDataLakeStoreItem', + 'Get-AzDataLakeStoreItemOwner': 'Get-AzureRmDataLakeStoreItemOwner', + 'Get-AzDataLakeStoreAccount': 'Get-AzureRmDataLakeStoreAccount', + 'Set-AzDataLakeStoreItemAcl': 'Set-AzureRmDataLakeStoreItemAcl', + 'Get-AzDataLakeStoreItemAclEntry': 'Get-AzureRmDataLakeStoreItemAclEntry', + 'Test-AzDataLakeStoreAccount': 'Test-AzureRmDataLakeStoreAccount', + 'Export-AzDataLakeStoreChildItemProperties': 'Export-AzureRmDataLakeStoreChildItemProperties', + 'Get-AzDataLakeStoreItemContent': 'Get-AzureRmDataLakeStoreItemContent', + 'Set-AzDataLakeStoreFirewallRule': 'Set-AzureRmDataLakeStoreFirewallRule', + 'Get-AzDataLakeStoreTrustedIdProvider': 'Get-AzureRmDataLakeStoreTrustedIdProvider', + 'Set-AzDataLakeStoreItemAclEntry': 'Set-AzureRmDataLakeStoreItemAclEntry', + 'Set-AzDataLakeStoreTrustedIdProvider': 'Set-AzureRmDataLakeStoreTrustedIdProvider', + 'Test-AzDataLakeStoreItem': 'Test-AzureRmDataLakeStoreItem', + 'Remove-AzDataLakeStoreItemAcl': 'Remove-AzureRmDataLakeStoreItemAcl' + }, + 'Az.OperationalInsights': { + 'Get-AzOperationalInsightsSavedSearch': 'Get-AzureRmOperationalInsightsSavedSearch', + 'New-AzOperationalInsightsWindowsPerformanceCounterDataSource': 'New-AzureRmOperationalInsightsWindowsPerformanceCounterDataSource', + 'Remove-AzOperationalInsightsWorkspace': 'Remove-AzureRmOperationalInsightsWorkspace', + 'Remove-AzOperationalInsightsSavedSearch': 'Remove-AzureRmOperationalInsightsSavedSearch', + 'New-AzOperationalInsightsStorageInsight': 'New-AzureRmOperationalInsightsStorageInsight', + 'Get-AzOperationalInsightsWorkspaceManagementGroups': 'Get-AzureRmOperationalInsightsWorkspaceManagementGroups', + 'Remove-AzOperationalInsightsStorageInsight': 'Remove-AzureRmOperationalInsightsStorageInsight', + 'New-AzOperationalInsightsLinuxSyslogDataSource': 'New-AzureRmOperationalInsightsLinuxSyslogDataSource', + 'New-AzOperationalInsightsWorkspace': 'New-AzureRmOperationalInsightsWorkspace', + 'Set-AzOperationalInsightsWorkspace': 'Set-AzureRmOperationalInsightsWorkspace', + 'Get-AzOperationalInsightsIntelligencePacks': 'Get-AzureRmOperationalInsightsIntelligencePacks', + 'New-AzOperationalInsightsCustomLogDataSource': 'New-AzureRmOperationalInsightsCustomLogDataSource', + 'Get-AzOperationalInsightsSearchResults': 'Get-AzureRmOperationalInsightsSearchResults', + 'Disable-AzOperationalInsightsLinuxSyslogCollection': 'Disable-AzureRmOperationalInsightsLinuxSyslogCollection', + 'Set-AzOperationalInsightsIntelligencePack': 'Set-AzureRmOperationalInsightsIntelligencePack', + 'New-AzOperationalInsightsSavedSearch': 'New-AzureRmOperationalInsightsSavedSearch', + 'Get-AzOperationalInsightsWorkspace': 'Get-AzureRmOperationalInsightsWorkspace', + 'Set-AzOperationalInsightsStorageInsight': 'Set-AzureRmOperationalInsightsStorageInsight', + 'Enable-AzOperationalInsightsLinuxSyslogCollection': 'Enable-AzureRmOperationalInsightsLinuxSyslogCollection', + 'Get-AzOperationalInsightsSavedSearchResults': 'Get-AzureRmOperationalInsightsSavedSearchResults', + 'Disable-AzOperationalInsightsLinuxPerformanceCollection': 'Disable-AzureRmOperationalInsightsLinuxPerformanceCollection', + 'Set-AzOperationalInsightsDataSource': 'Set-AzureRmOperationalInsightsDataSource', + 'New-AzOperationalInsightsComputerGroup': 'New-AzureRmOperationalInsightsComputerGroup', + 'New-AzOperationalInsightsAzureActivityLogDataSource': 'New-AzureRmOperationalInsightsAzureActivityLogDataSource', + 'Remove-AzOperationalInsightsDataSource': 'Remove-AzureRmOperationalInsightsDataSource', + 'Disable-AzOperationalInsightsIISLogCollection': 'Disable-AzureRmOperationalInsightsIISLogCollection', + 'Get-AzOperationalInsightsWorkspaceSharedKeys': 'Get-AzureRmOperationalInsightsWorkspaceSharedKeys', + 'Enable-AzOperationalInsightsIISLogCollection': 'Enable-AzureRmOperationalInsightsIISLogCollection', + 'Get-AzOperationalInsightsSchema': 'Get-AzureRmOperationalInsightsSchema', + 'New-AzOperationalInsightsAzureAuditDataSource': 'New-AzureRmOperationalInsightsAzureAuditDataSource', + 'Enable-AzOperationalInsightsLinuxCustomLogCollection': 'Enable-AzureRmOperationalInsightsLinuxCustomLogCollection', + 'Invoke-AzOperationalInsightsQuery': 'Invoke-AzureRmOperationalInsightsQuery', + 'Get-AzOperationalInsightsStorageInsight': 'Get-AzureRmOperationalInsightsStorageInsight', + 'New-AzOperationalInsightsWindowsEventDataSource': 'New-AzureRmOperationalInsightsWindowsEventDataSource', + 'Get-AzOperationalInsightsWorkspaceUsage': 'Get-AzureRmOperationalInsightsWorkspaceUsage', + 'Get-AzOperationalInsightsLinkTargets': 'Get-AzureRmOperationalInsightsLinkTargets', + 'Get-AzOperationalInsightsDataSource': 'Get-AzureRmOperationalInsightsDataSource', + 'Set-AzOperationalInsightsSavedSearch': 'Set-AzureRmOperationalInsightsSavedSearch', + 'Enable-AzOperationalInsightsLinuxPerformanceCollection': 'Enable-AzureRmOperationalInsightsLinuxPerformanceCollection', + 'New-AzOperationalInsightsLinuxPerformanceObjectDataSource': 'New-AzureRmOperationalInsightsLinuxPerformanceObjectDataSource', + 'Disable-AzOperationalInsightsLinuxCustomLogCollection': 'Disable-AzureRmOperationalInsightsLinuxCustomLogCollection' + }, + 'Az.PowerBIEmbedded': { + 'Resume-AzPowerBIEmbeddedCapacity': 'Resume-AzureRmPowerBIEmbeddedCapacity', + 'New-AzPowerBIWorkspaceCollection': 'New-AzureRmPowerBIWorkspaceCollection', + 'Remove-AzPowerBIWorkspaceCollection': 'Remove-AzureRmPowerBIWorkspaceCollection', + 'Get-AzPowerBIEmbeddedCapacity': 'Get-AzureRmPowerBIEmbeddedCapacity', + 'Get-AzPowerBIWorkspaceCollection': 'Get-AzureRmPowerBIWorkspaceCollection', + 'Test-AzPowerBIEmbeddedCapacity': 'Test-AzureRmPowerBIEmbeddedCapacity', + 'New-AzPowerBIEmbeddedCapacity': 'New-AzureRmPowerBIEmbeddedCapacity', + 'Get-AzPowerBIWorkspace': 'Get-AzureRmPowerBIWorkspace', + 'Remove-AzPowerBIEmbeddedCapacity': 'Remove-AzureRmPowerBIEmbeddedCapacity', + 'Reset-AzPowerBIWorkspaceCollectionAccessKeys': 'Reset-AzureRmPowerBIWorkspaceCollectionAccessKeys', + 'Get-AzPowerBIWorkspaceCollectionAccessKeys': 'Get-AzureRmPowerBIWorkspaceCollectionAccessKeys', + 'Suspend-AzPowerBIEmbeddedCapacity': 'Suspend-AzureRmPowerBIEmbeddedCapacity', + 'Update-AzPowerBIEmbeddedCapacity': 'Update-AzureRmPowerBIEmbeddedCapacity' + }, + 'Az.Tags': { + 'Remove-AzTag': 'Remove-AzureRmTag', + 'Get-AzTag': 'Get-AzureRmTag', + 'New-AzTag': 'New-AzureRmTag' + }, + 'Az.Media': { + 'New-AzMediaService': 'New-AzureRmMediaService', + 'Set-AzMediaService': 'Set-AzureRmMediaService', + 'Get-AzMediaService': 'Get-AzureRmMediaService', + 'New-AzMediaServiceStorageConfig': 'New-AzureRmMediaServiceStorageConfig', + 'Get-AzMediaServiceKeys': 'Get-AzureRmMediaServiceKeys', + 'Remove-AzMediaService': 'Remove-AzureRmMediaService', + 'Set-AzMediaServiceKey': 'Set-AzureRmMediaServiceKey', + 'Get-AzMediaServiceNameAvailability': 'Get-AzureRmMediaServiceNameAvailability', + 'Sync-AzMediaServiceStorageKeys': 'Sync-AzureRmMediaServiceStorageKeys' + }, + 'Az.Storage': { + 'New-AzStorageQueueSASToken': 'New-AzureStorageQueueSASToken', + 'Get-AzRmStorageContainer': 'Get-AzureRmStorageContainer', + 'Get-AzStorageFileContent': 'Get-AzureStorageFileContent', + 'Remove-AzStorageFile': 'Remove-AzureStorageFile', + 'Set-AzCurrentStorageAccount': 'Set-AzureRmCurrentStorageAccount', + 'Get-AzStorageUsage': 'Get-AzureRmStorageUsage', + 'Get-AzStorageQueue': 'Get-AzureStorageQueue', + 'Enable-AzStorageDeleteRetentionPolicy': 'Enable-AzureStorageDeleteRetentionPolicy', + 'Update-AzStorageServiceProperty': 'Update-AzureStorageServiceProperty', + 'Start-CopyAzureStorageBlob': 'Start-CopyAzureStorageBlob', + 'Get-AzStorageTable': 'Get-AzureStorageTable', + 'Set-AzStorageCORSRule': 'Set-AzureStorageCORSRule', + 'Get-AzStorageCORSRule': 'Get-AzureStorageCORSRule', + 'Stop-AzStorageBlobCopy': 'Stop-AzureStorageBlobCopy', + 'Stop-AzStorageFileCopy': 'Stop-AzureStorageFileCopy', + 'Get-AzStorageAccountNameAvailability': 'Get-AzureRmStorageAccountNameAvailability', + 'Get-AzStorageAccountNetworkRuleSet': 'Get-AzureRmStorageAccountNetworkRuleSet', + 'Remove-AzStorageQueue': 'Remove-AzureStorageQueue', + 'New-AzStorageTable': 'New-AzureStorageTable', + 'Remove-AzStorageShare': 'Remove-AzureStorageShare', + 'Set-AzStorageShareQuota': 'Set-AzureStorageShareQuota', + 'Get-AzStorageBlobContent': 'Get-AzureStorageBlobContent', + 'Update-AzRmStorageContainer': 'Update-AzureRmStorageContainer', + 'New-AzStorageDirectory': 'New-AzureStorageDirectory', + 'New-AzStorageTableSASToken': 'New-AzureStorageTableSASToken', + 'Set-AzStorageAccount': 'Set-AzureRmStorageAccount', + 'New-AzStorageQueue': 'New-AzureStorageQueue', + 'Remove-AzStorageTable': 'Remove-AzureStorageTable', + 'Get-AzStorageFile': 'Get-AzureStorageFile', + 'Get-AzStorageShareStoredAccessPolicy': 'Get-AzureStorageShareStoredAccessPolicy', + 'Set-AzStorageContainerAcl': 'Set-AzureStorageContainerAcl', + 'Remove-AzRmStorageContainer': 'Remove-AzureRmStorageContainer', + 'Update-AzStorageAccountNetworkRuleSet': 'Update-AzureRmStorageAccountNetworkRuleSet', + 'Set-AzStorageBlobContent': 'Set-AzureStorageBlobContent', + 'Start-AzStorageBlobCopy': 'Start-AzureStorageBlobCopy', + 'Set-AzStorageQueueStoredAccessPolicy': 'Set-AzureStorageQueueStoredAccessPolicy', + 'New-AzStorageAccount': 'New-AzureRmStorageAccount', + 'New-AzStorageAccountSASToken': 'New-AzureStorageAccountSASToken', + 'Get-AzStorageBlob': 'Get-AzureStorageBlob', + 'New-AzStorageContainer': 'New-AzureStorageContainer', + 'New-AzRmStorageContainer': 'New-AzureRmStorageContainer', + 'Get-AzStorageContainer': 'Get-AzureStorageContainer', + 'Get-AzStorageTableStoredAccessPolicy': 'Get-AzureStorageTableStoredAccessPolicy', + 'New-AzStorageContext': 'New-AzureStorageContext', + 'Enable-AzStorageSoftDelete': 'Enable-AzureStorageSoftDelete', + 'Remove-AzStorageShareStoredAccessPolicy': 'Remove-AzureStorageShareStoredAccessPolicy', + 'Get-AzStorageQueueStoredAccessPolicy': 'Get-AzureStorageQueueStoredAccessPolicy', + 'New-AzStorageFileSASToken': 'New-AzureStorageFileSASToken', + 'Remove-AzStorageAccountNetworkRule': 'Remove-AzureRmStorageAccountNetworkRule', + 'Set-AzStorageServiceLoggingProperty': 'Set-AzureStorageServiceLoggingProperty', + 'Get-AzRmStorageContainerImmutabilityPolicy': 'Get-AzureRmStorageContainerImmutabilityPolicy', + 'New-AzStorageTableStoredAccessPolicy': 'New-AzureStorageTableStoredAccessPolicy', + 'Add-AzStorageAccountNetworkRule': 'Add-AzureRmStorageAccountNetworkRule', + 'Disable-AzStorageSoftDelete': 'Disable-AzureStorageSoftDelete', + 'Remove-AzRmStorageContainerImmutabilityPolicy': 'Remove-AzureRmStorageContainerImmutabilityPolicy', + 'Set-AzStorageTableStoredAccessPolicy': 'Set-AzureStorageTableStoredAccessPolicy', + 'Remove-AzStorageQueueStoredAccessPolicy': 'Remove-AzureStorageQueueStoredAccessPolicy', + 'Set-AzStorageContainerStoredAccessPolicy': 'Set-AzureStorageContainerStoredAccessPolicy', + 'Remove-AzStorageAccount': 'Remove-AzureRmStorageAccount', + 'Get-AzStorageServiceMetricsProperty': 'Get-AzureStorageServiceMetricsProperty', + 'New-AzStorageContainerStoredAccessPolicy': 'New-AzureStorageContainerStoredAccessPolicy', + 'Lock-AzRmStorageContainerImmutabilityPolicy': 'Lock-AzureRmStorageContainerImmutabilityPolicy', + 'Add-AzRmStorageContainerLegalHold': 'Add-AzureRmStorageContainerLegalHold', + 'Remove-AzStorageBlob': 'Remove-AzureStorageBlob', + 'Remove-AzStorageContainerStoredAccessPolicy': 'Remove-AzureStorageContainerStoredAccessPolicy', + 'Remove-AzRmStorageContainerLegalHold': 'Remove-AzureRmStorageContainerLegalHold', + 'Remove-AzStorageTableStoredAccessPolicy': 'Remove-AzureStorageTableStoredAccessPolicy', + 'Start-AzStorageFileCopy': 'Start-AzureStorageFileCopy', + 'New-AzStorageAccountKey': 'New-AzureRmStorageAccountKey', + 'New-AzStorageShareStoredAccessPolicy': 'New-AzureStorageShareStoredAccessPolicy', + 'Stop-CopyAzureStorageBlob': 'Stop-CopyAzureStorageBlob', + 'Disable-AzStorageDeleteRetentionPolicy': 'Disable-AzureStorageDeleteRetentionPolicy', + 'Set-AzStorageServiceMetricsProperty': 'Set-AzureStorageServiceMetricsProperty', + 'New-AzStorageContainerSASToken': 'New-AzureStorageContainerSASToken', + 'New-AzStorageShare': 'New-AzureStorageShare', + 'Get-AzStorageServiceLoggingProperty': 'Get-AzureStorageServiceLoggingProperty', + 'New-AzStorageQueueStoredAccessPolicy': 'New-AzureStorageQueueStoredAccessPolicy', + 'Get-AzStorageServiceProperty': 'Get-AzureStorageServiceProperty', + 'New-AzStorageBlobSASToken': 'New-AzureStorageBlobSASToken', + 'Remove-AzStorageCORSRule': 'Remove-AzureStorageCORSRule', + 'Set-AzStorageFileContent': 'Set-AzureStorageFileContent', + 'New-AzStorageShareSASToken': 'New-AzureStorageShareSASToken', + 'Get-AzStorageAccountKey': 'Get-AzureRmStorageAccountKey', + 'Remove-AzStorageDirectory': 'Remove-AzureStorageDirectory', + 'Get-AzStorageContainerAcl': 'Get-AzureStorageContainerAcl', + 'Get-AzStorageBlobCopyState': 'Get-AzureStorageBlobCopyState', + 'Set-AzStorageShareStoredAccessPolicy': 'Set-AzureStorageShareStoredAccessPolicy', + 'Get-AzStorageContainerStoredAccessPolicy': 'Get-AzureStorageContainerStoredAccessPolicy', + 'Get-AzStorageShare': 'Get-AzureStorageShare', + 'Remove-AzStorageContainer': 'Remove-AzureStorageContainer', + 'Start-AzStorageBlobIncrementalCopy': 'Start-AzureStorageBlobIncrementalCopy', + 'Get-AzStorageFileCopyState': 'Get-AzureStorageFileCopyState', + 'Get-AzStorageAccount': 'Get-AzureRmStorageAccount', + 'Set-AzRmStorageContainerImmutabilityPolicy': 'Set-AzureRmStorageContainerImmutabilityPolicy' + }, + 'Az.Insights': { + 'Remove-AzAlertRule': 'Remove-AzureRmAlertRule', + 'Get-AzDiagnosticSetting': 'Get-AzureRmDiagnosticSetting', + 'New-AzAlertRuleEmail': 'New-AzureRmAlertRuleEmail', + 'Get-AzMetric': 'Get-AzureRmMetric', + 'Get-AzLogProfile': 'Get-AzureRmLogProfile', + 'Get-AzMetricDefinition': 'Get-AzureRmMetricDefinition', + 'New-AzAutoscaleRule': 'New-AzureRmAutoscaleRule', + 'Get-AzAutoscaleHistory': 'Get-AzureRmAutoscaleHistory', + 'New-AzActivityLogAlertCondition': 'New-AzureRmActivityLogAlertCondition', + 'Set-AzActionGroup': 'Set-AzureRmActionGroup', + 'New-AzActionGroupReceiver': 'New-AzureRmActionGroupReceiver', + 'Add-AzLogProfile': 'Add-AzureRmLogProfile', + 'Get-AzLog': 'Get-AzureRmLog', + 'Get-AzActionGroup': 'Get-AzureRmActionGroup', + 'Remove-AzActionGroup': 'Remove-AzureRmActionGroup', + 'Add-AzWebtestAlertRule': 'Add-AzureRmWebtestAlertRule', + 'New-AzAutoscaleNotification': 'New-AzureRmAutoscaleNotification', + 'Remove-AzDiagnosticSetting': 'Remove-AzureRmDiagnosticSetting', + 'Enable-AzActivityLogAlert': 'Enable-AzureRmActivityLogAlert', + 'Get-AzAutoscaleSetting': 'Get-AzureRmAutoscaleSetting', + 'Set-AzDiagnosticSetting': 'Set-AzureRmDiagnosticSetting', + 'Add-AzAutoscaleSetting': 'Add-AzureRmAutoscaleSetting', + 'New-AzActionGroup': 'New-AzureRmActionGroup', + 'New-AzAutoscaleProfile': 'New-AzureRmAutoscaleProfile', + 'Set-AzActivityLogAlert': 'Set-AzureRmActivityLogAlert', + 'New-AzAutoscaleWebhook': 'New-AzureRmAutoscaleWebhook', + 'Get-AzActivityLogAlert': 'Get-AzureRmActivityLogAlert', + 'Get-AzAlertHistory': 'Get-AzureRmAlertHistory', + 'New-AzAlertRuleWebhook': 'New-AzureRmAlertRuleWebhook', + 'Remove-AzLogProfile': 'Remove-AzureRmLogProfile', + 'Remove-AzActivityLogAlert': 'Remove-AzureRmActivityLogAlert', + 'Remove-AzAutoscaleSetting': 'Remove-AzureRmAutoscaleSetting', + 'Add-AzMetricAlertRule': 'Add-AzureRmMetricAlertRule', + 'Get-AzAlertRule': 'Get-AzureRmAlertRule', + 'New-AzMetricFilter': 'New-AzureRmMetricFilter', + 'Disable-AzActivityLogAlert': 'Disable-AzureRmActivityLogAlert' + }, + 'Az.MarketplaceOrdering': { + 'Get-AzMarketplaceTerms': 'Get-AzureRmMarketplaceTerms', + 'Set-AzMarketplaceTerms': 'Set-AzureRmMarketplaceTerms' + }, + 'Az.Cdn': { + 'Get-AzCdnCustomDomain': 'Get-AzureRmCdnCustomDomain', + 'New-AzCdnEndpoint': 'New-AzureRmCdnEndpoint', + 'Start-AzCdnEndpoint': 'Start-AzureRmCdnEndpoint', + 'Confirm-AzCdnEndpointProbeUrl': 'Confirm-AzureRmCdnEndpointProbeUrl', + 'Get-AzCdnEndpoint': 'Get-AzureRmCdnEndpoint', + 'Get-AzCdnProfileResourceUsage': 'Get-AzureRmCdnProfileResourceUsage', + 'Enable-AzCdnCustomDomain': 'Enable-AzureRmCdnCustomDomain', + 'Get-AzCdnOrigin': 'Get-AzureRmCdnOrigin', + 'Get-AzCdnProfile': 'Get-AzureRmCdnProfile', + 'New-AzCdnProfile': 'New-AzureRmCdnProfile', + 'Remove-AzCdnCustomDomain': 'Remove-AzureRmCdnCustomDomain', + 'Get-AzCdnEndpointNameAvailability': 'Get-AzureRmCdnEndpointNameAvailability', + 'Get-AzCdnProfileSsoUrl': 'Get-AzureRmCdnProfileSsoUrl', + 'Publish-AzCdnEndpointContent': 'Publish-AzureRmCdnEndpointContent', + 'New-AzCdnCustomDomain': 'New-AzureRmCdnCustomDomain', + 'Unpublish-AzCdnEndpointContent': 'Unpublish-AzureRmCdnEndpointContent', + 'Test-AzCdnCustomDomain': 'Test-AzureRmCdnCustomDomain', + 'Disable-AzCdnCustomDomain': 'Disable-AzureRmCdnCustomDomain', + 'Validate-AzCdnCustomDomain': 'Validate-AzureRmCdnCustomDomain', + 'Get-AzCdnEdgeNodes': 'Get-AzureRmCdnEdgeNodes', + 'Get-AzCdnSubscriptionResourceUsage': 'Get-AzureRmCdnSubscriptionResourceUsage', + 'Stop-AzCdnEndpoint': 'Stop-AzureRmCdnEndpoint', + 'Remove-AzCdnProfile': 'Remove-AzureRmCdnProfile', + 'Get-AzCdnEndpointResourceUsage': 'Get-AzureRmCdnEndpointResourceUsage', + 'Remove-AzCdnEndpoint': 'Remove-AzureRmCdnEndpoint', + 'Set-AzCdnOrigin': 'Set-AzureRmCdnOrigin', + 'Set-AzCdnEndpoint': 'Set-AzureRmCdnEndpoint', + 'Get-AzCdnProfileSupportedOptimizationType': 'Get-AzureRmCdnProfileSupportedOptimizationType', + 'Set-AzCdnProfile': 'Set-AzureRmCdnProfile' + }, + 'Az.RecoveryServices.SiteRecovery': { + 'Get-AzRecoveryServicesAsrProtectionContainerMapping': 'Get-AzureRmRecoveryServicesAsrProtectionContainerMapping', + 'Remove-AzRecoveryServicesAsrNetworkMapping': 'Remove-AzureRmRecoveryServicesAsrNetworkMapping', + 'Edit-AzRecoveryServicesAsrRecoveryPlan': 'Edit-AzureRmRecoveryServicesAsrRecoveryPlan', + 'Remove-AzRecoveryServicesAsrvCenter': 'Remove-AzureRmRecoveryServicesAsrvCenter', + 'Start-AzRecoveryServicesAsrUnplannedFailoverJob': 'Start-AzureRmRecoveryServicesAsrUnplannedFailoverJob', + 'Get-AzRecoveryServicesAsrNetworkMapping': 'Get-AzureRmRecoveryServicesAsrNetworkMapping', + 'Get-AzRecoveryServicesAsrProtectionContainer': 'Get-AzureRmRecoveryServicesAsrProtectionContainer', + 'Restart-AzRecoveryServicesAsrJob': 'Restart-AzureRmRecoveryServicesAsrJob', + 'Update-AzRecoveryServicesAsrPolicy': 'Update-AzureRmRecoveryServicesAsrPolicy', + 'New-AzRecoveryServicesAsrNetworkMapping': 'New-AzureRmRecoveryServicesAsrNetworkMapping', + 'Get-AzRecoveryServicesAsrvCenter': 'Get-AzureRmRecoveryServicesAsrvCenter', + 'Set-AzRecoveryServicesAsrVaultSettings': 'Set-AzureRmRecoveryServicesAsrVaultSettings', + 'Get-AzRecoveryServicesAsrNotificationSetting': 'Get-AzureRmRecoveryServicesAsrNotificationSetting', + 'Set-AzRecoveryServicesAsrReplicationProtectedItem': 'Set-AzureRmRecoveryServicesAsrReplicationProtectedItem', + 'Start-AzRecoveryServicesAsrCommitFailoverJob': 'Start-AzureRmRecoveryServicesAsrCommitFailoverJob', + 'Remove-AzRecoveryServicesAsrServicesProvider': 'Remove-AzureRmRecoveryServicesAsrServicesProvider', + 'Get-AzRecoveryServicesAsrFabric': 'Get-AzureRmRecoveryServicesAsrFabric', + 'Get-AzRecoveryServicesAsrPolicy': 'Get-AzureRmRecoveryServicesAsrPolicy', + 'Start-AzRecoveryServicesAsrTestFailoverJob': 'Start-AzureRmRecoveryServicesAsrTestFailoverJob', + 'Remove-AzRecoveryServicesAsrStorageClassificationMapping': 'Remove-AzureRmRecoveryServicesAsrStorageClassificationMapping', + 'Get-AzRecoveryServicesAsrRecoveryPoint': 'Get-AzureRmRecoveryServicesAsrRecoveryPoint', + 'Update-AzRecoveryServicesAsrvCenter': 'Update-AzureRmRecoveryServicesAsrvCenter', + 'New-AzRecoveryServicesAsrvCenter': 'New-AzureRmRecoveryServicesAsrvCenter', + 'New-AzRecoveryServicesAsrFabric': 'New-AzureRmRecoveryServicesAsrFabric', + 'Get-AzRecoveryServicesAsrStorageClassificationMapping': 'Get-AzureRmRecoveryServicesAsrStorageClassificationMapping', + 'Get-AzRecoveryServicesAsrVaultContext': 'Get-AzureRmRecoveryServicesAsrVaultContext', + 'Get-AzRecoveryServicesAsrVaultSettings': 'Get-AzureRmRecoveryServicesAsrVaultSettings', + 'Update-AzRecoveryServicesAsrMobilityService': 'Update-AzureRmRecoveryServicesAsrMobilityService', + 'Remove-AzRecoveryServicesAsrReplicationProtectedItem': 'Remove-AzureRmRecoveryServicesAsrReplicationProtectedItem', + 'Start-AzRecoveryServicesAsrPlannedFailoverJob': 'Start-AzureRmRecoveryServicesAsrPlannedFailoverJob', + 'Get-AzRecoveryServicesAsrEvent': 'Get-AzureRmRecoveryServicesAsrEvent', + 'Get-AzRecoveryServicesAsrReplicationProtectedItem': 'Get-AzureRmRecoveryServicesAsrReplicationProtectedItem', + 'New-AzRecoveryServicesAsrAzureToAzureDiskReplicationConfig': 'New-AzureRmRecoveryServicesAsrAzureToAzureDiskReplicationConfig', + 'New-AzRecoveryServicesAsrRecoveryPlan': 'New-AzureRmRecoveryServicesAsrRecoveryPlan', + 'Get-AzRecoveryServicesAsrProtectableItem': 'Get-AzureRmRecoveryServicesAsrProtectableItem', + 'Update-AzRecoveryServicesAsrRecoveryPlan': 'Update-AzureRmRecoveryServicesAsrRecoveryPlan', + 'New-AzRecoveryServicesAsrStorageClassificationMapping': 'New-AzureRmRecoveryServicesAsrStorageClassificationMapping', + 'Get-AzRecoveryServicesAsrNetwork': 'Get-AzureRmRecoveryServicesAsrNetwork', + 'Remove-AzRecoveryServicesAsrProtectionContainerMapping': 'Remove-AzureRmRecoveryServicesAsrProtectionContainerMapping', + 'Remove-AzRecoveryServicesAsrRecoveryPlan': 'Remove-AzureRmRecoveryServicesAsrRecoveryPlan', + 'Update-AzRecoveryServicesAsrServicesProvider': 'Update-AzureRmRecoveryServicesAsrServicesProvider', + 'New-AzRecoveryServicesAsrProtectableItem': 'New-AzureRmRecoveryServicesAsrProtectableItem', + 'Get-AzRecoveryServicesAsrStorageClassification': 'Get-AzureRmRecoveryServicesAsrStorageClassification', + 'Start-AzRecoveryServicesAsrTestFailoverCleanupJob': 'Start-AzureRmRecoveryServicesAsrTestFailoverCleanupJob', + 'New-AzRecoveryServicesAsrReplicationProtectedItem': 'New-AzureRmRecoveryServicesAsrReplicationProtectedItem', + 'Get-AzRecoveryServicesAsrServicesProvider': 'Get-AzureRmRecoveryServicesAsrServicesProvider', + 'Stop-AzRecoveryServicesAsrJob': 'Stop-AzureRmRecoveryServicesAsrJob', + 'Set-AzRecoveryServicesAsrAlertSetting': 'Set-AzureRmRecoveryServicesAsrAlertSetting', + 'New-AzRecoveryServicesAsrProtectionContainer': 'New-AzureRmRecoveryServicesAsrProtectionContainer', + 'New-AzRecoveryServicesAsrPolicy': 'New-AzureRmRecoveryServicesAsrPolicy', + 'Start-AzRecoveryServicesAsrResynchronizeReplicationJob': 'Start-AzureRmRecoveryServicesAsrResynchronizeReplicationJob', + 'Update-AzRecoveryServicesAsrProtectionDirection': 'Update-AzureRmRecoveryServicesAsrProtectionDirection', + 'Resume-AzRecoveryServicesAsrJob': 'Resume-AzureRmRecoveryServicesAsrJob', + 'Set-AzRecoveryServicesAsrVaultContext': 'Set-AzureRmRecoveryServicesAsrVaultContext', + 'New-AzRecoveryServicesAsrProtectionContainerMapping': 'New-AzureRmRecoveryServicesAsrProtectionContainerMapping', + 'Set-AzRecoveryServicesAsrNotificationSetting': 'Set-AzureRmRecoveryServicesAsrNotificationSetting', + 'Remove-AzRecoveryServicesAsrProtectionContainer': 'Remove-AzureRmRecoveryServicesAsrProtectionContainer', + 'Start-AzRecoveryServicesAsrSwitchProcessServerJob': 'Start-AzureRmRecoveryServicesAsrSwitchProcessServerJob', + 'Remove-AzRecoveryServicesAsrFabric': 'Remove-AzureRmRecoveryServicesAsrFabric', + 'Get-AzRecoveryServicesAsrJob': 'Get-AzureRmRecoveryServicesAsrJob', + 'Import-AzRecoveryServicesAsrVaultSettingsFile': 'Import-AzureRmRecoveryServicesAsrVaultSettingsFile', + 'Start-AzRecoveryServicesAsrApplyRecoveryPoint': 'Start-AzureRmRecoveryServicesAsrApplyRecoveryPoint', + 'Get-AzRecoveryServicesAsrRecoveryPlan': 'Get-AzureRmRecoveryServicesAsrRecoveryPlan', + 'Remove-AzRecoveryServicesAsrPolicy': 'Remove-AzureRmRecoveryServicesAsrPolicy', + 'Update-AzRecoveryServicesAsrNetworkMapping': 'Update-AzureRmRecoveryServicesAsrNetworkMapping', + 'Get-AzRecoveryServicesAsrAlertSetting': 'Get-AzureRmRecoveryServicesAsrAlertSetting' + }, + 'Az.Websites': { + 'Set-AzWebAppSlotConfigName': 'Set-AzureRmWebAppSlotConfigName', + 'Start-AzWebApp': 'Start-AzureRmWebApp', + 'Start-AzWebAppSlot': 'Start-AzureRmWebAppSlot', + 'Remove-AzWebAppSlot': 'Remove-AzureRmWebAppSlot', + 'Get-AzWebAppSlotConfigName': 'Get-AzureRmWebAppSlotConfigName', + 'Restore-AzWebAppSnapshot': 'Restore-AzureRmWebAppSnapshot', + 'Swap-AzWebAppSlot': 'Swap-AzureRmWebAppSlot', + 'Get-AzWebApp': 'Get-AzureRmWebApp', + 'Remove-AzAppServicePlan': 'Remove-AzureRmAppServicePlan', + 'Get-AzWebAppPublishingProfile': 'Get-AzureRmWebAppPublishingProfile', + 'Get-AzWebAppSlotPublishingProfile': 'Get-AzureRmWebAppSlotPublishingProfile', + 'Set-AzWebApp': 'Set-AzureRmWebApp', + 'Reset-AzWebAppPublishingProfile': 'Reset-AzureRmWebAppPublishingProfile', + 'New-AzWebAppSSLBinding': 'New-AzureRmWebAppSSLBinding', + 'Remove-AzWebAppSSLBinding': 'Remove-AzureRmWebAppSSLBinding', + 'Get-AzWebAppCertificate': 'Get-AzureRmWebAppCertificate', + 'Get-AzWebAppBackupConfiguration': 'Get-AzureRmWebAppBackupConfiguration', + 'Get-AzWebAppBackupList': 'Get-AzureRmWebAppBackupList', + 'Switch-AzWebAppSlot': 'Switch-AzureRmWebAppSlot', + 'Get-AzAppServicePlanMetrics': 'Get-AzureRmAppServicePlanMetrics', + 'Get-AzAppServicePlan': 'Get-AzureRmAppServicePlan', + 'New-AzAppServicePlan': 'New-AzureRmAppServicePlan', + 'Get-AzWebAppSlot': 'Get-AzureRmWebAppSlot', + 'Reset-AzWebAppSlotPublishingProfile': 'Reset-AzureRmWebAppSlotPublishingProfile', + 'Remove-AzWebAppBackup': 'Remove-AzureRmWebAppBackup', + 'Get-AzWebAppBackup': 'Get-AzureRmWebAppBackup', + 'Restart-AzWebAppSlot': 'Restart-AzureRmWebAppSlot', + 'Restore-AzWebAppBackup': 'Restore-AzureRmWebAppBackup', + 'New-AzWebAppDatabaseBackupSetting': 'New-AzureRmWebAppDatabaseBackupSetting', + 'New-AzWebApp': 'New-AzureRmWebApp', + 'Remove-AzWebApp': 'Remove-AzureRmWebApp', + 'Get-AzWebAppMetrics': 'Get-AzureRmWebAppMetrics', + 'Get-AzWebAppSSLBinding': 'Get-AzureRmWebAppSSLBinding', + 'Set-AzWebAppSlot': 'Set-AzureRmWebAppSlot', + 'New-AzWebAppBackup': 'New-AzureRmWebAppBackup', + 'Get-AzWebAppSnapshot': 'Get-AzureRmWebAppSnapshot', + 'New-AzWebAppSlot': 'New-AzureRmWebAppSlot', + 'Set-AzAppServicePlan': 'Set-AzureRmAppServicePlan', + 'Get-AzWebAppSlotMetrics': 'Get-AzureRmWebAppSlotMetrics', + 'Edit-AzWebAppBackupConfiguration': 'Edit-AzureRmWebAppBackupConfiguration', + 'Restart-AzWebApp': 'Restart-AzureRmWebApp', + 'Stop-AzWebApp': 'Stop-AzureRmWebApp', + 'Stop-AzWebAppSlot': 'Stop-AzureRmWebAppSlot' + }, + 'Az.StorageSync': { + 'Invoke-AzStorageSyncCompatibilityCheck': 'Invoke-AzureRmStorageSyncCompatibilityCheck' + }, + 'Az.KeyVault': { + 'Undo-AzKeyVaultCertificateRemoval': 'Undo-AzureKeyVaultCertificateRemoval', + 'Remove-AzKeyVaultAccessPolicy': 'Remove-AzureRmKeyVaultAccessPolicy', + 'Update-AzKeyVaultNetworkRuleSet': 'Update-AzureRmKeyVaultNetworkRuleSet', + 'Add-AzKeyVaultManagedStorageAccount': 'Add-AzureKeyVaultManagedStorageAccount', + 'Restore-AzKeyVaultCertificate': 'Restore-AzureKeyVaultCertificate', + 'New-AzKeyVault': 'New-AzureRmKeyVault', + 'Add-AzKeyVaultNetworkRule': 'Add-AzureRmKeyVaultNetworkRule', + 'Get-AzKeyVaultSecret': 'Get-AzureKeyVaultSecret', + 'Add-AzKeyVaultKey': 'Add-AzureKeyVaultKey', + 'New-AzKeyVaultCertificateOrganizationDetails': 'New-AzureKeyVaultCertificateOrganizationDetails', + 'Undo-AzKeyVaultManagedStorageSasDefinitionRemoval': 'Undo-AzureKeyVaultManagedStorageSasDefinitionRemoval', + 'Backup-AzKeyVaultCertificate': 'Backup-AzureKeyVaultCertificate', + 'New-AzKeyVaultCertificateAdministratorDetails': 'New-AzureKeyVaultCertificateAdministratorDetails', + 'Set-AzKeyVaultSecret': 'Set-AzureKeyVaultSecret', + 'Set-AzKeyVaultManagedStorageSasDefinition': 'Set-AzureKeyVaultManagedStorageSasDefinition', + 'Update-AzKeyVaultManagedStorageAccount': 'Update-AzureKeyVaultManagedStorageAccount', + 'Stop-AzKeyVaultCertificateOperation': 'Stop-AzureKeyVaultCertificateOperation', + 'Import-AzKeyVaultCertificate': 'Import-AzureKeyVaultCertificate', + 'Add-AzKeyVaultCertificate': 'Add-AzureKeyVaultCertificate', + 'Update-AzKeyVaultCertificate': 'Update-AzureKeyVaultCertificate', + 'Add-AzKeyVaultCertificateContact': 'Add-AzureKeyVaultCertificateContact', + 'Remove-AzKeyVaultCertificateIssuer': 'Remove-AzureKeyVaultCertificateIssuer', + 'Update-AzKeyVaultKey': 'Update-AzureKeyVaultKey', + 'Remove-AzKeyVaultKey': 'Remove-AzureKeyVaultKey', + 'Set-AzKeyVaultAccessPolicy': 'Set-AzureRmKeyVaultAccessPolicy', + 'Restore-AzKeyVaultSecret': 'Restore-AzureKeyVaultSecret', + 'Set-AzKeyVaultCertificateIssuer': 'Set-AzureKeyVaultCertificateIssuer', + 'Remove-AzKeyVaultCertificateOperation': 'Remove-AzureKeyVaultCertificateOperation', + 'Get-AzKeyVaultCertificateOperation': 'Get-AzureKeyVaultCertificateOperation', + 'Get-AzKeyVaultManagedStorageAccount': 'Get-AzureKeyVaultManagedStorageAccount', + 'Restore-AzKeyVaultKey': 'Restore-AzureKeyVaultKey', + 'Get-AzKeyVaultKey': 'Get-AzureKeyVaultKey', + 'Remove-AzKeyVaultSecret': 'Remove-AzureKeyVaultSecret', + 'Restore-AzKeyVaultManagedStorageAccount': 'Restore-AzureKeyVaultManagedStorageAccount', + 'Get-AzKeyVaultCertificate': 'Get-AzureKeyVaultCertificate', + 'Remove-AzKeyVaultCertificateContact': 'Remove-AzureKeyVaultCertificateContact', + 'Backup-AzKeyVaultSecret': 'Backup-AzureKeyVaultSecret', + 'Get-AzKeyVaultManagedStorageSasDefinition': 'Get-AzureKeyVaultManagedStorageSasDefinition', + 'Get-AzKeyVaultCertificateIssuer': 'Get-AzureKeyVaultCertificateIssuer', + 'Backup-AzKeyVaultManagedStorageAccount': 'Backup-AzureKeyVaultManagedStorageAccount', + 'Set-AzKeyVaultCertificatePolicy': 'Set-AzureKeyVaultCertificatePolicy', + 'Set-AzKeyVaultSecretAttribute': 'Set-AzureKeyVaultSecretAttribute', + 'Undo-AzKeyVaultSecretRemoval': 'Undo-AzureKeyVaultSecretRemoval', + 'Remove-AzKeyVaultNetworkRule': 'Remove-AzureRmKeyVaultNetworkRule', + 'Get-AzKeyVaultCertificateContact': 'Get-AzureKeyVaultCertificateContact', + 'Update-AzKeyVaultManagedStorageAccountKey': 'Update-AzureKeyVaultManagedStorageAccountKey', + 'Set-AzKeyVaultCertificateAttribute': 'Set-AzureKeyVaultCertificateAttribute', + 'Set-AzKeyVaultKeyAttribute': 'Set-AzureKeyVaultKeyAttribute', + 'Get-AzKeyVaultCertificatePolicy': 'Get-AzureKeyVaultCertificatePolicy', + 'Get-AzKeyVault': 'Get-AzureRmKeyVault', + 'Remove-AzKeyVaultManagedStorageAccount': 'Remove-AzureKeyVaultManagedStorageAccount', + 'Undo-AzKeyVaultRemoval': 'Undo-AzureRmKeyVaultRemoval', + 'Update-AzKeyVaultSecret': 'Update-AzureKeyVaultSecret', + 'Remove-AzKeyVaultCertificate': 'Remove-AzureKeyVaultCertificate', + 'New-AzKeyVaultCertificatePolicy': 'New-AzureKeyVaultCertificatePolicy', + 'Backup-AzKeyVaultKey': 'Backup-AzureKeyVaultKey', + 'Remove-AzKeyVaultManagedStorageSasDefinition': 'Remove-AzureKeyVaultManagedStorageSasDefinition', + 'Remove-AzKeyVault': 'Remove-AzureRmKeyVault', + 'Set-AzKeyVaultKey': 'Set-AzureKeyVaultKey', + 'Undo-AzKeyVaultManagedStorageAccountRemoval': 'Undo-AzureKeyVaultManagedStorageAccountRemoval', + 'Undo-AzKeyVaultKeyRemoval': 'Undo-AzureKeyVaultKeyRemoval' + }, + 'Az.Profile': { + 'Save-AzProfile': 'Save-AzureRmProfile', + 'Clear-AzDefault': 'Clear-AzureRmDefault', + 'Login-AzAccount': 'Login-AzureRmAccount', + 'Rename-AzContext': 'Rename-AzureRmContext', + 'Logout-AzAccount': 'Logout-AzureRmAccount', + 'Get-AzContextAutosaveSetting': 'Get-AzureRmContextAutosaveSetting', + 'Get-AzContext': 'Get-AzureRmContext', + 'Disable-AzDataCollection': 'Disable-AzureRmDataCollection', + 'Disconnect-AzAccount': 'Disconnect-AzureRmAccount', + 'Save-AzContext': 'Save-AzureRmContext', + 'Enable-AzContextAutosave': 'Enable-AzureRmContextAutosave', + 'Get-AzEnvironment': 'Get-AzureRmEnvironment', + 'Disable-AzContextAutosave': 'Disable-AzureRmContextAutosave', + 'Enable-AzDataCollection': 'Enable-AzureRmDataCollection', + 'Connect-AzAccount': 'Connect-AzureRmAccount', + 'Select-AzContext': 'Select-AzureRmContext', + 'Clear-AzContext': 'Clear-AzureRmContext', + 'Select-AzSubscription': 'Select-AzureRmSubscription', + 'Import-AzContext': 'Import-AzureRmContext', + 'Set-AzContext': 'Set-AzureRmContext', + 'Remove-AzEnvironment': 'Remove-AzureRmEnvironment', + 'Add-AzAccount': 'Add-AzureRmAccount', + 'Resolve-AzError': 'Resolve-AzureRmError', + 'Get-AzDefault': 'Get-AzureRmDefault', + 'Add-AzEnvironment': 'Add-AzureRmEnvironment', + 'Remove-AzAccount': 'Remove-AzureRmAccount', + 'Set-AzEnvironment': 'Set-AzureRmEnvironment', + 'Get-AzSubscription': 'Get-AzureRmSubscription', + 'Set-AzDefault': 'Set-AzureRmDefault', + 'Remove-AzContext': 'Remove-AzureRmContext', + 'Get-AzTenant': 'Get-AzureRmTenant' + }, + 'Az.PolicyInsights': { + 'Get-AzPolicyStateSummary': 'Get-AzureRmPolicyStateSummary', + 'Get-AzPolicyEvent': 'Get-AzureRmPolicyEvent', + 'Get-AzPolicyState': 'Get-AzureRmPolicyState' + }, + 'Az.ContainerRegistry': { + 'Get-AzContainerRegistryReplication': 'Get-AzureRmContainerRegistryReplication', + 'Get-AzContainerRegistryCredential': 'Get-AzureRmContainerRegistryCredential', + 'Update-AzContainerRegistry': 'Update-AzureRmContainerRegistry', + 'Get-AzContainerRegistryWebhook': 'Get-AzureRmContainerRegistryWebhook', + 'New-AzContainerRegistry': 'New-AzureRmContainerRegistry', + 'Remove-AzContainerRegistry': 'Remove-AzureRmContainerRegistry', + 'Test-AzContainerRegistryNameAvailability': 'Test-AzureRmContainerRegistryNameAvailability', + 'New-AzContainerRegistryReplication': 'New-AzureRmContainerRegistryReplication', + 'Remove-AzContainerRegistryWebhook': 'Remove-AzureRmContainerRegistryWebhook', + 'New-AzContainerRegistryWebhook': 'New-AzureRmContainerRegistryWebhook', + 'Update-AzContainerRegistryCredential': 'Update-AzureRmContainerRegistryCredential', + 'Get-AzContainerRegistry': 'Get-AzureRmContainerRegistry', + 'Get-AzContainerRegistryWebhookEvent': 'Get-AzureRmContainerRegistryWebhookEvent', + 'Test-AzContainerRegistryWebhook': 'Test-AzureRmContainerRegistryWebhook', + 'Update-AzContainerRegistryWebhook': 'Update-AzureRmContainerRegistryWebhook', + 'Remove-AzContainerRegistryReplication': 'Remove-AzureRmContainerRegistryReplication' + }, + 'Az.ContainerInstance': { + 'New-AzContainerGroup': 'New-AzureRmContainerGroup', + 'Get-AzContainerGroup': 'Get-AzureRmContainerGroup', + 'Remove-AzContainerGroup': 'Remove-AzureRmContainerGroup', + 'Get-AzContainerInstanceLog': 'Get-AzureRmContainerInstanceLog' + }, + 'Az.Scheduler': { + 'Disable-AzSchedulerJobCollection': 'Disable-AzureRmSchedulerJobCollection', + 'New-AzSchedulerStorageQueueJob': 'New-AzureRmSchedulerStorageQueueJob', + 'Enable-AzSchedulerJobCollection': 'Enable-AzureRmSchedulerJobCollection', + 'Set-AzSchedulerStorageQueueJob': 'Set-AzureRmSchedulerStorageQueueJob', + 'Set-AzSchedulerServiceBusQueueJob': 'Set-AzureRmSchedulerServiceBusQueueJob', + 'New-AzSchedulerHttpJob': 'New-AzureRmSchedulerHttpJob', + 'Get-AzSchedulerJobHistory': 'Get-AzureRmSchedulerJobHistory', + 'Get-AzSchedulerJobCollection': 'Get-AzureRmSchedulerJobCollection', + 'Remove-AzSchedulerJobCollection': 'Remove-AzureRmSchedulerJobCollection', + 'New-AzSchedulerServiceBusTopicJob': 'New-AzureRmSchedulerServiceBusTopicJob', + 'Get-AzSchedulerJob': 'Get-AzureRmSchedulerJob', + 'Set-AzSchedulerHttpJob': 'Set-AzureRmSchedulerHttpJob', + 'New-AzSchedulerServiceBusQueueJob': 'New-AzureRmSchedulerServiceBusQueueJob', + 'New-AzSchedulerJobCollection': 'New-AzureRmSchedulerJobCollection', + 'Set-AzSchedulerServiceBusTopicJob': 'Set-AzureRmSchedulerServiceBusTopicJob', + 'Set-AzSchedulerJobCollection': 'Set-AzureRmSchedulerJobCollection', + 'Remove-AzSchedulerJob': 'Remove-AzureRmSchedulerJob' + }, + 'Az.RecoveryServices.Backup': { + 'Unregister-AzRecoveryServicesBackupContainer': 'Unregister-AzureRmRecoveryServicesBackupContainer', + 'Get-AzRecoveryServicesBackupRecoveryPoint': 'Get-AzureRmRecoveryServicesBackupRecoveryPoint', + 'Get-AzRecoveryServicesBackupManagementServer': 'Get-AzureRmRecoveryServicesBackupManagementServer', + 'Get-AzRecoveryServicesBackupStatus': 'Get-AzureRmRecoveryServicesBackupStatus', + 'Unregister-AzRecoveryServicesBackupManagementServer': 'Unregister-AzureRmRecoveryServicesBackupManagementServer', + 'Get-AzRecoveryServicesBackupSchedulePolicyObject': 'Get-AzureRmRecoveryServicesBackupSchedulePolicyObject', + 'Get-AzRecoveryServicesBackupJobDetails': 'Get-AzureRmRecoveryServicesBackupJobDetails', + 'Enable-AzRecoveryServicesBackupProtection': 'Enable-AzureRmRecoveryServicesBackupProtection', + 'Wait-AzRecoveryServicesBackupJob': 'Wait-AzureRmRecoveryServicesBackupJob', + 'Get-AzRecoveryServicesBackupRPMountScript': 'Get-AzureRmRecoveryServicesBackupRPMountScript', + 'Get-AzRecoveryServicesBackupContainer': 'Get-AzureRmRecoveryServicesBackupContainer', + 'Set-AzRecoveryServicesBackupProtectionPolicy': 'Set-AzureRmRecoveryServicesBackupProtectionPolicy', + 'Disable-AzRecoveryServicesBackupRPMountScript': 'Disable-AzureRmRecoveryServicesBackupRPMountScript', + 'Get-AzRecoveryServicesBackupRetentionPolicyObject': 'Get-AzureRmRecoveryServicesBackupRetentionPolicyObject', + 'Get-AzRecoveryServicesBackupProtectionPolicy': 'Get-AzureRmRecoveryServicesBackupProtectionPolicy', + 'Get-AzRecoveryServicesBackupJob': 'Get-AzureRmRecoveryServicesBackupJob', + 'Disable-AzRecoveryServicesBackupProtection': 'Disable-AzureRmRecoveryServicesBackupProtection', + 'New-AzRecoveryServicesBackupProtectionPolicy': 'New-AzureRmRecoveryServicesBackupProtectionPolicy', + 'Remove-AzRecoveryServicesBackupProtectionPolicy': 'Remove-AzureRmRecoveryServicesBackupProtectionPolicy', + 'Get-AzRecoveryServicesBackupItem': 'Get-AzureRmRecoveryServicesBackupItem', + 'Stop-AzRecoveryServicesBackupJob': 'Stop-AzureRmRecoveryServicesBackupJob', + 'Restore-AzRecoveryServicesBackupItem': 'Restore-AzureRmRecoveryServicesBackupItem', + 'Backup-AzRecoveryServicesBackupItem': 'Backup-AzureRmRecoveryServicesBackupItem' + }, + 'Az.ServiceFabric': { + 'Add-AzServiceFabricNodeType': 'Add-AzureRmServiceFabricNodeType', + 'Update-AzServiceFabricReliability': 'Update-AzureRmServiceFabricReliability', + 'Remove-AzServiceFabricNodeType': 'Remove-AzureRmServiceFabricNodeType', + 'Update-AzServiceFabricDurability': 'Update-AzureRmServiceFabricDurability', + 'Add-AzServiceFabricClusterCertificate': 'Add-AzureRmServiceFabricClusterCertificate', + 'Add-AzServiceFabricNode': 'Add-AzureRmServiceFabricNode', + 'New-AzServiceFabricCluster': 'New-AzureRmServiceFabricCluster', + 'Set-AzServiceFabricUpgradeType': 'Set-AzureRmServiceFabricUpgradeType', + 'Remove-AzServiceFabricNode': 'Remove-AzureRmServiceFabricNode', + 'Add-AzServiceFabricApplicationCertificate': 'Add-AzureRmServiceFabricApplicationCertificate', + 'Remove-AzServiceFabricSetting': 'Remove-AzureRmServiceFabricSetting', + 'Remove-AzServiceFabricClusterCertificate': 'Remove-AzureRmServiceFabricClusterCertificate', + 'Remove-AzServiceFabricClientCertificate': 'Remove-AzureRmServiceFabricClientCertificate', + 'Add-AzServiceFabricClientCertificate': 'Add-AzureRmServiceFabricClientCertificate', + 'Set-AzServiceFabricSetting': 'Set-AzureRmServiceFabricSetting', + 'Get-AzServiceFabricCluster': 'Get-AzureRmServiceFabricCluster' + }, + 'Az.Relay': { + 'Set-AzRelayAuthorizationRule': 'Set-AzureRmRelayAuthorizationRule', + 'Get-AzRelayNamespace': 'Get-AzureRmRelayNamespace', + 'Remove-AzWcfRelay': 'Remove-AzureRmWcfRelay', + 'New-AzRelayKey': 'New-AzureRmRelayKey', + 'Set-AzRelayNamespace': 'Set-AzureRmRelayNamespace', + 'Remove-AzRelayHybridConnection': 'Remove-AzureRmRelayHybridConnection', + 'Get-AzRelayOperation': 'Get-AzureRmRelayOperation', + 'Get-AzRelayAuthorizationRule': 'Get-AzureRmRelayAuthorizationRule', + 'New-AzRelayNamespace': 'New-AzureRmRelayNamespace', + 'Remove-AzRelayNamespace': 'Remove-AzureRmRelayNamespace', + 'Get-AzRelayKey': 'Get-AzureRmRelayKey', + 'New-AzWcfRelay': 'New-AzureRmWcfRelay', + 'Get-AzWcfRelay': 'Get-AzureRmWcfRelay', + 'Set-AzWcfRelay': 'Set-AzureRmWcfRelay', + 'Set-AzRelayHybridConnection': 'Set-AzureRmRelayHybridConnection', + 'Get-AzRelayHybridConnection': 'Get-AzureRmRelayHybridConnection', + 'New-AzRelayHybridConnection': 'New-AzureRmRelayHybridConnection', + 'Remove-AzRelayAuthorizationRule': 'Remove-AzureRmRelayAuthorizationRule', + 'Test-AzRelayName': 'Test-AzureRmRelayName', + 'New-AzRelayAuthorizationRule': 'New-AzureRmRelayAuthorizationRule' + }, + 'Az.ManagedServiceIdentity': { + 'Get-AzUserAssignedIdentity': 'Get-AzureRmUserAssignedIdentity', + 'Remove-AzUserAssignedIdentity': 'Remove-AzureRmUserAssignedIdentity', + 'New-AzUserAssignedIdentity': 'New-AzureRmUserAssignedIdentity' + }, + 'Az.Maps': { + 'New-AzMapsAccountKey': 'New-AzureRmMapsAccountKey', + 'Remove-AzMapsAccount': 'Remove-AzureRmMapsAccount', + 'Get-AzMapsAccountKey': 'Get-AzureRmMapsAccountKey', + 'New-AzMapsAccount': 'New-AzureRmMapsAccount', + 'Get-AzMapsAccount': 'Get-AzureRmMapsAccount' + }, + 'Az.TrafficManager': { + 'Remove-AzTrafficManagerExpectedStatusCodeRange': 'Remove-AzureRmTrafficManagerExpectedStatusCodeRange', + 'Disable-AzTrafficManagerProfile': 'Disable-AzureRmTrafficManagerProfile', + 'Remove-AzTrafficManagerEndpoint': 'Remove-AzureRmTrafficManagerEndpoint', + 'Get-AzTrafficManagerProfile': 'Get-AzureRmTrafficManagerProfile', + 'Add-AzTrafficManagerEndpointConfig': 'Add-AzureRmTrafficManagerEndpointConfig', + 'Remove-AzTrafficManagerEndpointConfig': 'Remove-AzureRmTrafficManagerEndpointConfig', + 'New-AzTrafficManagerProfile': 'New-AzureRmTrafficManagerProfile', + 'Enable-AzTrafficManagerEndpoint': 'Enable-AzureRmTrafficManagerEndpoint', + 'Set-AzTrafficManagerEndpoint': 'Set-AzureRmTrafficManagerEndpoint', + 'Enable-AzTrafficManagerProfile': 'Enable-AzureRmTrafficManagerProfile', + 'Set-AzTrafficManagerProfile': 'Set-AzureRmTrafficManagerProfile', + 'New-AzTrafficManagerEndpoint': 'New-AzureRmTrafficManagerEndpoint', + 'Remove-AzTrafficManagerIpAddressRange': 'Remove-AzureRmTrafficManagerIpAddressRange', + 'Get-AzTrafficManagerEndpoint': 'Get-AzureRmTrafficManagerEndpoint', + 'Add-AzTrafficManagerIpAddressRange': 'Add-AzureRmTrafficManagerIpAddressRange', + 'Remove-AzTrafficManagerProfile': 'Remove-AzureRmTrafficManagerProfile', + 'Remove-AzTrafficManagerCustomHeaderFromProfile': 'Remove-AzureRmTrafficManagerCustomHeaderFromProfile', + 'Remove-AzTrafficManagerCustomHeaderFromEndpoint': 'Remove-AzureRmTrafficManagerCustomHeaderFromEndpoint', + 'Add-AzTrafficManagerExpectedStatusCodeRange': 'Add-AzureRmTrafficManagerExpectedStatusCodeRange', + 'Add-AzTrafficManagerCustomHeaderToEndpoint': 'Add-AzureRmTrafficManagerCustomHeaderToEndpoint', + 'Add-AzTrafficManagerCustomHeaderToProfile': 'Add-AzureRmTrafficManagerCustomHeaderToProfile', + 'Disable-AzTrafficManagerEndpoint': 'Disable-AzureRmTrafficManagerEndpoint' + }, + 'Az.Automation': { + 'New-AzAutomationSchedule': 'New-AzureRmAutomationSchedule', + 'Suspend-AzAutomationJob': 'Suspend-AzureRmAutomationJob', + 'Set-AzAutomationModule': 'Set-AzureRmAutomationModule', + 'Import-AzAutomationRunbook': 'Import-AzureRmAutomationRunbook', + 'Remove-AzAutomationRunbook': 'Remove-AzureRmAutomationRunbook', + 'Remove-AzAutomationConnectionType': 'Remove-AzureRmAutomationConnectionType', + 'Get-AzAutomationJobOutputRecord': 'Get-AzureRmAutomationJobOutputRecord', + 'Start-AzAutomationRunbook': 'Start-AzureRmAutomationRunbook', + 'Get-AzAutomationDscNodeConfigurationDeploymentSchedule': 'Get-AzureRmAutomationDscNodeConfigurationDeploymentSchedule', + 'Set-AzAutomationConnectionFieldValue': 'Set-AzureRmAutomationConnectionFieldValue', + 'New-AzAutomationVariable': 'New-AzureRmAutomationVariable', + 'Set-AzAutomationDscNode': 'Set-AzureRmAutomationDscNode', + 'Register-AzAutomationDscNode': 'Register-AzureRmAutomationDscNode', + 'Remove-AzAutomationVariable': 'Remove-AzureRmAutomationVariable', + 'Start-AzAutomationDscNodeConfigurationDeployment': 'Start-AzureRmAutomationDscNodeConfigurationDeployment', + 'New-AzAutomationModule': 'New-AzureRmAutomationModule', + 'Publish-AzAutomationRunbook': 'Publish-AzureRmAutomationRunbook', + 'Set-AzAutomationRunbook': 'Set-AzureRmAutomationRunbook', + 'New-AzAutomationCertificate': 'New-AzureRmAutomationCertificate', + 'Set-AzAutomationVariable': 'Set-AzureRmAutomationVariable', + 'Get-AzAutomationDscOnboardingMetaconfig': 'Get-AzureRmAutomationDscOnboardingMetaconfig', + 'Stop-AzAutomationJob': 'Stop-AzureRmAutomationJob', + 'Get-AzAutomationHybridWorkerGroup': 'Get-AzureRMAutomationHybridWorkerGroup', + 'Get-AzAutomationAccount': 'Get-AzureRmAutomationAccount', + 'Get-AzAutomationCertificate': 'Get-AzureRmAutomationCertificate', + 'Set-AzAutomationWebhook': 'Set-AzureRmAutomationWebhook', + 'Get-AzAutomationConnection': 'Get-AzureRmAutomationConnection', + 'Start-AzAutomationDscCompilationJob': 'Start-AzureRmAutomationDscCompilationJob', + 'Get-AzAutomationDscCompilationJobOutput': 'Get-AzureRmAutomationDscCompilationJobOutput', + 'New-AzAutomationKey': 'New-AzureRmAutomationKey', + 'New-AzAutomationAccount': 'New-AzureRmAutomationAccount', + 'Get-AzAutomationDscNode': 'Get-AzureRmAutomationDscNode', + 'New-AzAutomationRunbook': 'New-AzureRmAutomationRunbook', + 'Unregister-AzAutomationDscNode': 'Unregister-AzureRmAutomationDscNode', + 'Get-AzAutomationDscNodeConfigurationDeployment': 'Get-AzureRmAutomationDscNodeConfigurationDeployment', + 'Import-AzAutomationDscConfiguration': 'Import-AzureRmAutomationDscConfiguration', + 'Get-AzAutomationModule': 'Get-AzureRmAutomationModule', + 'Register-AzAutomationScheduledRunbook': 'Register-AzureRmAutomationScheduledRunbook', + 'New-AzAutomationWebhook': 'New-AzureRmAutomationWebhook', + 'Resume-AzAutomationJob': 'Resume-AzureRmAutomationJob', + 'Get-AzAutomationDscConfiguration': 'Get-AzureRmAutomationDscConfiguration', + 'Get-AzAutomationWebhook': 'Get-AzureRmAutomationWebhook', + 'Remove-AzAutomationWebhook': 'Remove-AzureRmAutomationWebhook', + 'Import-AzAutomationModule': 'Import-AzureRmAutomationModule', + 'Import-AzAutomationDscNodeConfiguration': 'Import-AzureRmAutomationDscNodeConfiguration', + 'Remove-AzAutomationCertificate': 'Remove-AzureRmAutomationCertificate', + 'Get-AzAutomationVariable': 'Get-AzureRmAutomationVariable', + 'Remove-AzAutomationModule': 'Remove-AzureRmAutomationModule', + 'Export-AzAutomationRunbook': 'Export-AzureRmAutomationRunbook', + 'Remove-AzAutomationAccount': 'Remove-AzureRmAutomationAccount', + 'Unregister-AzAutomationScheduledRunbook': 'Unregister-AzureRmAutomationScheduledRunbook', + 'Remove-AzAutomationCredential': 'Remove-AzureRmAutomationCredential', + 'New-AzAutomationConnection': 'New-AzureRmAutomationConnection', + 'Get-AzAutomationDscNodeReport': 'Get-AzureRmAutomationDscNodeReport', + 'Set-AzAutomationCertificate': 'Set-AzureRmAutomationCertificate', + 'Set-AzAutomationCredential': 'Set-AzureRmAutomationCredential', + 'Export-AzAutomationDscConfiguration': 'Export-AzureRmAutomationDscConfiguration', + 'Get-AzAutomationJob': 'Get-AzureRmAutomationJob', + 'Remove-AzAutomationDscNodeConfiguration': 'Remove-AzureRmAutomationDscNodeConfiguration', + 'Get-AzAutomationJobOutput': 'Get-AzureRmAutomationJobOutput', + 'New-AzAutomationCredential': 'New-AzureRmAutomationCredential', + 'Set-AzAutomationSchedule': 'Set-AzureRmAutomationSchedule', + 'Get-AzAutomationCredential': 'Get-AzureRmAutomationCredential', + 'Remove-AzAutomationConnection': 'Remove-AzureRmAutomationConnection', + 'Get-AzAutomationSchedule': 'Get-AzureRmAutomationSchedule', + 'Export-AzAutomationDscNodeReportContent': 'Export-AzureRmAutomationDscNodeReportContent', + 'Get-AzAutomationRunbook': 'Get-AzureRmAutomationRunbook', + 'Get-AzAutomationDscCompilationJob': 'Get-AzureRmAutomationDscCompilationJob', + 'Get-AzAutomationRegistrationInfo': 'Get-AzureRmAutomationRegistrationInfo', + 'Get-AzAutomationDscNodeConfiguration': 'Get-AzureRmAutomationDscNodeConfiguration', + 'Remove-AzAutomationSchedule': 'Remove-AzureRmAutomationSchedule', + 'Remove-AzAutomationDscConfiguration': 'Remove-AzureRmAutomationDscConfiguration', + 'Set-AzAutomationAccount': 'Set-AzureRmAutomationAccount', + 'Get-AzAutomationScheduledRunbook': 'Get-AzureRmAutomationScheduledRunbook', + 'Stop-AzAutomationDscNodeConfigurationDeployment': 'Stop-AzureRmAutomationDscNodeConfigurationDeployment' + }, + 'Az.Reservations': { + 'Split-AzReservation': 'Split-AzureRmReservation', + 'Get-AzReservation': 'Get-AzureRmReservation', + 'Get-AzReservationCatalog': 'Get-AzureRmReservationCatalog', + 'Get-AzReservationOrderId': 'Get-AzureRmReservationOrderId', + 'Get-AzReservationHistory': 'Get-AzureRmReservationHistory', + 'Update-AzReservation': 'Update-AzureRmReservation', + 'Merge-AzReservation': 'Merge-AzureRmReservation', + 'Get-AzReservationOrder': 'Get-AzureRmReservationOrder' + }, + 'Az.Billing': { + 'Get-AzBillingPeriod': 'Get-AzureRmBillingPeriod', + 'Get-AzEnrollmentAccount': 'Get-AzureRmEnrollmentAccount', + 'Get-AzBillingInvoice': 'Get-AzureRmBillingInvoice' + }, + 'Az.IotHub': { + 'Get-AzIotHubValidSku': 'Get-AzureRmIotHubValidSku', + 'Test-AzIotHubRoute': 'Test-AzureRmIotHubRoute', + 'Get-AzIotHub': 'Get-AzureRmIotHub', + 'Get-AzIotHubKey': 'Get-AzureRmIotHubKey', + 'Add-AzIotHubRoutingEndpoint': 'Add-AzureRmIotHubRoutingEndpoint', + 'Add-AzIotHubKey': 'Add-AzureRmIotHubKey', + 'Set-AzIotHubVC': 'Set-AzureRmIotHubVC', + 'Remove-AzIotHubCertificate': 'Remove-AzureRmIotHubCertificate', + 'Set-AzIotHub': 'Set-AzureRmIotHub', + 'Get-AzIotHubRoutingEndpoint': 'Get-AzureRmIotHubRoutingEndpoint', + 'Remove-AzIotHubEventHubConsumerGroup': 'Remove-AzureRmIotHubEventHubConsumerGroup', + 'Get-AzIotHubEventHubConsumerGroup': 'Get-AzureRmIotHubEventHubConsumerGroup', + 'Remove-AzIotHubRoutingEndpoint': 'Remove-AzureRmIotHubRoutingEndpoint', + 'Get-AzIotHubCertificate': 'Get-AzureRmIotHubCertificate', + 'Get-AzIotHubQuotaMetric': 'Get-AzureRmIotHubQuotaMetric', + 'Add-AzIotHubCertificate': 'Add-AzureRmIotHubCertificate', + 'Add-AzIotHubEHCG': 'Add-AzureRmIotHubEHCG', + 'Update-AzIotHub': 'Update-AzureRmIotHub', + 'New-AzIotHub': 'New-AzureRmIotHub', + 'Add-AzIotHubEventHubConsumerGroup': 'Add-AzureRmIotHubEventHubConsumerGroup', + 'Get-AzIotHubCertificateVerificationCode': 'Get-AzureRmIotHubCertificateVerificationCode', + 'Get-AzIotHubJob': 'Get-AzureRmIotHubJob', + 'Remove-AzIotHubKey': 'Remove-AzureRmIotHubKey', + 'Set-AzIotHubVerifiedCertificate': 'Set-AzureRmIotHubVerifiedCertificate', + 'New-AzIotHubImportDevices': 'New-AzureRmIotHubImportDevices', + 'New-AzIotHubExportDevices': 'New-AzureRmIotHubExportDevices', + 'Remove-AzIotHubEHCG': 'Remove-AzureRmIotHubEHCG', + 'Remove-AzIotHubRoute': 'Remove-AzureRmIotHubRoute', + 'Add-AzIotHubRoute': 'Add-AzureRmIotHubRoute', + 'Get-AzIotHubRoute': 'Get-AzureRmIotHubRoute', + 'Get-AzIotHubCVC': 'Get-AzureRmIotHubCVC', + 'Get-AzIotHubRegistryStatistic': 'Get-AzureRmIotHubRegistryStatistic', + 'Get-AzIotHubConnectionString': 'Get-AzureRmIotHubConnectionString', + 'Get-AzIotHubEHCG': 'Get-AzureRmIotHubEHCG', + 'Remove-AzIotHub': 'Remove-AzureRmIotHub', + 'Set-AzIotHubRoute': 'Set-AzureRmIotHubRoute' + }, + 'Az.Resources': { + 'Remove-AzPolicySetDefinition': 'Remove-AzureRmPolicySetDefinition', + 'Remove-AzADServicePrincipalCredential': 'Remove-AzureRmADServicePrincipalCredential', + 'New-AzDeployment': 'New-AzureRmDeployment', + 'Remove-AzADAppCredential': 'Remove-AzureRmADAppCredential', + 'Remove-AzPolicyAssignment': 'Remove-AzureRmPolicyAssignment', + 'Stop-AzResourceGroupDeployment': 'Stop-AzureRmResourceGroupDeployment', + 'Get-AzManagementGroup': 'Get-AzureRmManagementGroup', + 'Remove-AzRoleAssignment': 'Remove-AzureRmRoleAssignment', + 'Remove-AzManagedApplicationDefinition': 'Remove-AzureRmManagedApplicationDefinition', + 'Set-AzADUser': 'Set-AzureRmADUser', + 'Get-AzADUser': 'Get-AzureRmADUser', + 'Get-AzADGroup': 'Get-AzureRmADGroup', + 'Remove-AzADGroupMember': 'Remove-AzureRmADGroupMember', + 'Remove-AzADGroup': 'Remove-AzureRmADGroup', + 'Unregister-AzResourceProvider': 'Unregister-AzureRmResourceProvider', + 'Set-AzPolicyDefinition': 'Set-AzureRmPolicyDefinition', + 'Set-AzResourceLock': 'Set-AzureRmResourceLock', + 'Set-AzADServicePrincipal': 'Set-AzureRmADServicePrincipal', + 'New-AzPolicyAssignment': 'New-AzureRmPolicyAssignment', + 'New-AzResource': 'New-AzureRmResource', + 'New-AzManagedApplicationDefinition': 'New-AzureRmManagedApplicationDefinition', + 'New-AzADUser': 'New-AzureRmADUser', + 'New-AzResourceLock': 'New-AzureRmResourceLock', + 'New-AzADGroup': 'New-AzureRmADGroup', + 'Set-AzPolicySetDefinition': 'Set-AzureRmPolicySetDefinition', + 'Remove-AzADUser': 'Remove-AzureRmADUser', + 'Invoke-AzResourceAction': 'Invoke-AzureRmResourceAction', + 'Remove-AzResource': 'Remove-AzureRmResource', + 'New-AzPolicySetDefinition': 'New-AzureRmPolicySetDefinition', + 'Get-AzPolicySetDefinition': 'Get-AzureRmPolicySetDefinition', + 'Get-AzResourceGroupDeploymentOperation': 'Get-AzureRmResourceGroupDeploymentOperation', + 'Remove-AzADApplication': 'Remove-AzureRmADApplication', + 'New-AzResourceGroup': 'New-AzureRmResourceGroup', + 'Get-AzProviderFeature': 'Get-AzureRmProviderFeature', + 'Get-AzDeploymentOperation': 'Get-AzureRmDeploymentOperation', + 'Get-AzResourceLock': 'Get-AzureRmResourceLock', + 'New-AzPolicyDefinition': 'New-AzureRmPolicyDefinition', + 'Get-AzLocation': 'Get-AzureRmLocation', + 'Get-AzResourceGroup': 'Get-AzureRmResourceGroup', + 'Remove-AzDeployment': 'Remove-AzureRmDeployment', + 'Remove-AzManagementGroup': 'Remove-AzureRmManagementGroup', + 'Update-AzADApplication': 'Update-AzureRmADApplication', + 'Update-AzManagementGroup': 'Update-AzureRmManagementGroup', + 'New-AzADApplication': 'New-AzureRmADApplication', + 'Get-AzResourceProvider': 'Get-AzureRmResourceProvider', + 'Get-AzPolicyAssignment': 'Get-AzureRmPolicyAssignment', + 'New-AzManagementGroupSubscription': 'New-AzureRmManagementGroupSubscription', + 'Get-AzADGroupMember': 'Get-AzureRmADGroupMember', + 'Set-AzResource': 'Set-AzureRmResource', + 'Get-AzResource': 'Get-AzureRmResource', + 'Set-AzManagedApplication': 'Set-AzureRmManagedApplication', + 'Test-AzDeployment': 'Test-AzureRmDeployment', + 'Get-AzResourceGroupDeployment': 'Get-AzureRmResourceGroupDeployment', + 'Add-AzADGroupMember': 'Add-AzureRmADGroupMember', + 'New-AzRoleDefinition': 'New-AzureRmRoleDefinition', + 'New-AzManagedApplication': 'New-AzureRmManagedApplication', + 'New-AzADServicePrincipal': 'New-AzureRmADServicePrincipal', + 'New-AzADServicePrincipalCredential': 'New-AzureRmADServicePrincipalCredential', + 'Remove-AzManagementGroupSubscription': 'Remove-AzureRmManagementGroupSubscription', + 'Get-AzPolicyDefinition': 'Get-AzureRmPolicyDefinition', + 'Stop-AzDeployment': 'Stop-AzureRmDeployment', + 'Save-AzDeploymentTemplate': 'Save-AzureRmDeploymentTemplate', + 'Update-AzADServicePrincipal': 'Update-AzureRmADServicePrincipal', + 'Remove-AzResourceLock': 'Remove-AzureRmResourceLock', + 'Remove-AzManagedApplication': 'Remove-AzureRmManagedApplication', + 'Remove-AzRoleDefinition': 'Remove-AzureRmRoleDefinition', + 'Remove-AzADServicePrincipal': 'Remove-AzureRmADServicePrincipal', + 'Set-AzADApplication': 'Set-AzureRmADApplication', + 'New-AzRoleAssignment': 'New-AzureRmRoleAssignment', + 'Get-AzDeployment': 'Get-AzureRmDeployment', + 'Get-AzADServicePrincipal': 'Get-AzureRmADServicePrincipal', + 'New-AzManagementGroup': 'New-AzureRmManagementGroup', + 'Move-AzResource': 'Move-AzureRmResource', + 'Remove-AzResourceGroupDeployment': 'Remove-AzureRmResourceGroupDeployment', + 'Get-AzRoleDefinition': 'Get-AzureRmRoleDefinition', + 'Remove-AzADSpCredential': 'Remove-AzureRmADSpCredential', + 'Get-AzADServicePrincipalCredential': 'Get-AzureRmADServicePrincipalCredential', + 'Remove-AzPolicyDefinition': 'Remove-AzureRmPolicyDefinition', + 'Set-AzManagedApplicationDefinition': 'Set-AzureRmManagedApplicationDefinition', + 'Get-AzADSpCredential': 'Get-AzureRmADSpCredential', + 'Register-AzProviderFeature': 'Register-AzureRmProviderFeature', + 'Register-AzResourceProvider': 'Register-AzureRmResourceProvider', + 'New-AzADSpCredential': 'New-AzureRmADSpCredential', + 'Set-AzRoleDefinition': 'Set-AzureRmRoleDefinition', + 'Export-AzResourceGroup': 'Export-AzureRmResourceGroup', + 'Save-AzResourceGroupDeploymentTemplate': 'Save-AzureRmResourceGroupDeploymentTemplate', + 'Set-AzResourceGroup': 'Set-AzureRmResourceGroup', + 'Get-AzResourceProviderAction': 'Get-AzureRmResourceProviderAction', + 'Get-AzProviderOperation': 'Get-AzureRmProviderOperation', + 'Get-AzADApplication': 'Get-AzureRmADApplication', + 'Get-AzADAppCredential': 'Get-AzureRmADAppCredential', + 'Remove-AzResourceGroup': 'Remove-AzureRmResourceGroup', + 'New-AzADAppCredential': 'New-AzureRmADAppCredential', + 'Update-AzADUser': 'Update-AzureRmADUser', + 'New-AzResourceGroupDeployment': 'New-AzureRmResourceGroupDeployment', + 'Get-AzManagedApplication': 'Get-AzureRmManagedApplication', + 'Get-AzManagedApplicationDefinition': 'Get-AzureRmManagedApplicationDefinition', + 'Test-AzResourceGroupDeployment': 'Test-AzureRmResourceGroupDeployment', + 'Get-AzRoleAssignment': 'Get-AzureRmRoleAssignment', + 'Set-AzPolicyAssignment': 'Set-AzureRmPolicyAssignment' + }, + 'Az.RedisCache': { + 'Set-AzRedisCacheDiagnostics': 'Set-AzureRmRedisCacheDiagnostics', + 'New-AzRedisCache': 'New-AzureRmRedisCache', + 'Remove-AzRedisCacheFirewallRule': 'Remove-AzureRmRedisCacheFirewallRule', + 'Import-AzRedisCache': 'Import-AzureRmRedisCache', + 'New-AzRedisCacheFirewallRule': 'New-AzureRmRedisCacheFirewallRule', + 'Get-AzRedisCachePatchSchedule': 'Get-AzureRmRedisCachePatchSchedule', + 'New-AzRedisCacheLink': 'New-AzureRmRedisCacheLink', + 'Set-AzRedisCache': 'Set-AzureRmRedisCache', + 'Get-AzRedisCacheLink': 'Get-AzureRmRedisCacheLink', + 'Get-AzRedisCacheFirewallRule': 'Get-AzureRmRedisCacheFirewallRule', + 'Get-AzRedisCache': 'Get-AzureRmRedisCache', + 'Reset-AzRedisCache': 'Reset-AzureRmRedisCache', + 'New-AzRedisCacheScheduleEntry': 'New-AzureRmRedisCacheScheduleEntry', + 'Remove-AzRedisCache': 'Remove-AzureRmRedisCache', + 'New-AzRedisCachePatchSchedule': 'New-AzureRmRedisCachePatchSchedule', + 'Remove-AzRedisCacheLink': 'Remove-AzureRmRedisCacheLink', + 'Get-AzRedisCacheKey': 'Get-AzureRmRedisCacheKey', + 'Remove-AzRedisCacheDiagnostics': 'Remove-AzureRmRedisCacheDiagnostics', + 'Export-AzRedisCache': 'Export-AzureRmRedisCache', + 'Remove-AzRedisCachePatchSchedule': 'Remove-AzureRmRedisCachePatchSchedule', + 'New-AzRedisCacheKey': 'New-AzureRmRedisCacheKey' + }, + 'Az.HDInsight': { + 'New-AzHDInsightCluster': 'New-AzureRmHDInsightCluster', + 'New-AzHDInsightPigJobDefinition': 'New-AzureRmHDInsightPigJobDefinition', + 'New-AzHDInsightSqoopJobDefinition': 'New-AzureRmHDInsightSqoopJobDefinition', + 'New-AzHDInsightHiveJobDefinition': 'New-AzureRmHDInsightHiveJobDefinition', + 'Add-AzHDInsightScriptAction': 'Add-AzureRmHDInsightScriptAction', + 'Grant-AzHDInsightRdpServicesAccess': 'Grant-AzureRmHDInsightRdpServicesAccess', + 'Grant-AzHDInsightHttpServicesAccess': 'Grant-AzureRmHDInsightHttpServicesAccess', + 'Get-AzHDInsightScriptActionHistory': 'Get-AzureRmHDInsightScriptActionHistory', + 'New-AzHDInsightStreamingMapReduceJobDefinition': 'New-AzureRmHDInsightStreamingMapReduceJobDefinition', + 'Set-AzHDInsightDefaultStorage': 'Set-AzureRmHDInsightDefaultStorage', + 'Set-AzHDInsightClusterSize': 'Set-AzureRmHDInsightClusterSize', + 'Get-AzHDInsightJob': 'Get-AzureRmHDInsightJob', + 'Revoke-AzHDInsightHttpServicesAccess': 'Revoke-AzureRmHDInsightHttpServicesAccess', + 'Add-AzHDInsightClusterIdentity': 'Add-AzureRmHDInsightClusterIdentity', + 'Enable-AzHDInsightOperationsManagementSuite': 'Enable-AzureRmHDInsightOperationsManagementSuite', + 'Add-AzHDInsightComponentVersion': 'Add-AzureRmHDInsightComponentVersion', + 'Add-AzHDInsightStorage': 'Add-AzureRmHDInsightStorage', + 'Stop-AzHDInsightJob': 'Stop-AzureRmHDInsightJob', + 'Invoke-AzHDInsightHiveJob': 'Invoke-AzureRmHDInsightHiveJob', + 'Get-AzHDInsightOperationsManagementSuite': 'Get-AzureRmHDInsightOperationsManagementSuite', + 'Get-AzHDInsightJobOutput': 'Get-AzureRmHDInsightJobOutput', + 'Wait-AzHDInsightJob': 'Wait-AzureRmHDInsightJob', + 'Remove-AzHDInsightCluster': 'Remove-AzureRmHDInsightCluster', + 'Revoke-AzHDInsightRdpServicesAccess': 'Revoke-AzureRmHDInsightRdpServicesAccess', + 'Enable-AzHDInsightOMS': 'Enable-AzureRmHDInsightOMS', + 'Add-AzHDInsightSecurityProfile': 'Add-AzureRmHDInsightSecurityProfile', + 'Get-AzHDInsightCluster': 'Get-AzureRmHDInsightCluster', + 'Submit-AzHDInsightScriptAction': 'Submit-AzureRmHDInsightScriptAction', + 'Get-AzHDInsightProperties': 'Get-AzureRmHDInsightProperties', + 'Add-AzHDInsightConfigValues': 'Add-AzureRmHDInsightConfigValues', + 'Start-AzHDInsightJob': 'Start-AzureRmHDInsightJob', + 'Disable-AzHDInsightOperationsManagementSuite': 'Disable-AzureRmHDInsightOperationsManagementSuite', + 'New-AzHDInsightMapReduceJobDefinition': 'New-AzureRmHDInsightMapReduceJobDefinition', + 'New-AzHDInsightClusterConfig': 'New-AzureRmHDInsightClusterConfig', + 'Get-AzHDInsightPersistedScriptAction': 'Get-AzureRmHDInsightPersistedScriptAction', + 'Add-AzHDInsightMetastore': 'Add-AzureRmHDInsightMetastore', + 'Use-AzHDInsightCluster': 'Use-AzureRmHDInsightCluster', + 'Disable-AzHDInsightOMS': 'Disable-AzureRmHDInsightOMS', + 'Set-AzHDInsightPersistedScriptAction': 'Set-AzureRmHDInsightPersistedScriptAction', + 'Remove-AzHDInsightPersistedScriptAction': 'Remove-AzureRmHDInsightPersistedScriptAction', + 'Get-AzHDInsightOMS': 'Get-AzureRmHDInsightOMS' + }, + 'Az.ServiceBus': { + 'Set-AzServiceBusGeoDRConfigurationFailOver': 'Set-AzureRmServiceBusGeoDRConfigurationFailOver', + 'Set-AzServiceBusQueue': 'Set-AzureRmServiceBusQueue', + 'New-AzServiceBusQueue': 'New-AzureRmServiceBusQueue', + 'Remove-AzServiceBusRule': 'Remove-AzureRmServiceBusRule', + 'Get-AzServiceBusNamespace': 'Get-AzureRmServiceBusNamespace', + 'Remove-AzServiceBusGeoDRConfiguration': 'Remove-AzureRmServiceBusGeoDRConfiguration', + 'Set-AzServiceBusNamespace': 'Set-AzureRmServiceBusNamespace', + 'New-AzServiceBusNamespace': 'New-AzureRmServiceBusNamespace', + 'Remove-AzServiceBusSubscription': 'Remove-AzureRmServiceBusSubscription', + 'New-AzServiceBusKey': 'New-AzureRmServiceBusKey', + 'Get-AzServiceBusTopic': 'Get-AzureRmServiceBusTopic', + 'Get-AzServiceBusKey': 'Get-AzureRmServiceBusKey', + 'Remove-AzServiceBusQueue': 'Remove-AzureRmServiceBusQueue', + 'Complete-AzServiceBusMigration': 'Complete-AzureRmServiceBusMigration', + 'Remove-AzServiceBusAuthorizationRule': 'Remove-AzureRmServiceBusAuthorizationRule', + 'Get-AzServiceBusGeoDRConfiguration': 'Get-AzureRmServiceBusGeoDRConfiguration', + 'Get-AzServiceBusAuthorizationRule': 'Get-AzureRmServiceBusAuthorizationRule', + 'Stop-AzServiceBusMigration': 'Stop-AzureRmServiceBusMigration', + 'Remove-AzServiceBusNamespace': 'Remove-AzureRmServiceBusNamespace', + 'Get-AzServiceBusRule': 'Get-AzureRmServiceBusRule', + 'New-AzServiceBusGeoDRConfiguration': 'New-AzureRmServiceBusGeoDRConfiguration', + 'New-AzServiceBusRule': 'New-AzureRmServiceBusRule', + 'Set-AzServiceBusSubscription': 'Set-AzureRmServiceBusSubscription', + 'Get-AzServiceBusOperation': 'Get-AzureRmServiceBusOperation', + 'Set-AzServiceBusRule': 'Set-AzureRmServiceBusRule', + 'New-AzServiceBusSubscription': 'New-AzureRmServiceBusSubscription', + 'New-AzServiceBusAuthorizationRule': 'New-AzureRmServiceBusAuthorizationRule', + 'Start-AzServiceBusMigration': 'Start-AzureRmServiceBusMigration', + 'Get-AzServiceBusMigration': 'Get-AzureRmServiceBusMigration', + 'Get-AzServiceBusSubscription': 'Get-AzureRmServiceBusSubscription', + 'Set-AzServiceBusGeoDRConfigurationBreakPair': 'Set-AzureRmServiceBusGeoDRConfigurationBreakPair', + 'New-AzServiceBusTopic': 'New-AzureRmServiceBusTopic', + 'Set-AzServiceBusTopic': 'Set-AzureRmServiceBusTopic', + 'Remove-AzServiceBusTopic': 'Remove-AzureRmServiceBusTopic', + 'Remove-AzServiceBusMigration': 'Remove-AzureRmServiceBusMigration', + 'Set-AzServiceBusAuthorizationRule': 'Set-AzureRmServiceBusAuthorizationRule', + 'Test-AzServiceBusName': 'Test-AzureRmServiceBusName', + 'Get-AzServiceBusQueue': 'Get-AzureRmServiceBusQueue' + }, + 'Az.StreamAnalytics': { + 'Remove-AzStreamAnalyticsOutput': 'Remove-AzureRmStreamAnalyticsOutput', + 'Remove-AzStreamAnalyticsInput': 'Remove-AzureRmStreamAnalyticsInput', + 'Start-AzStreamAnalyticsJob': 'Start-AzureRmStreamAnalyticsJob', + 'New-AzStreamAnalyticsOutput': 'New-AzureRmStreamAnalyticsOutput', + 'Remove-AzStreamAnalyticsJob': 'Remove-AzureRmStreamAnalyticsJob', + 'Test-AzStreamAnalyticsOutput': 'Test-AzureRmStreamAnalyticsOutput', + 'Get-AzStreamAnalyticsDefaultFunctionDefinition': 'Get-AzureRmStreamAnalyticsDefaultFunctionDefinition', + 'Test-AzStreamAnalyticsInput': 'Test-AzureRmStreamAnalyticsInput', + 'Remove-AzStreamAnalyticsFunction': 'Remove-AzureRmStreamAnalyticsFunction', + 'Get-AzStreamAnalyticsOutput': 'Get-AzureRmStreamAnalyticsOutput', + 'Get-AzStreamAnalyticsInput': 'Get-AzureRmStreamAnalyticsInput', + 'New-AzStreamAnalyticsTransformation': 'New-AzureRmStreamAnalyticsTransformation', + 'Test-AzStreamAnalyticsFunction': 'Test-AzureRmStreamAnalyticsFunction', + 'Stop-AzStreamAnalyticsJob': 'Stop-AzureRmStreamAnalyticsJob', + 'New-AzStreamAnalyticsInput': 'New-AzureRmStreamAnalyticsInput', + 'Get-AzStreamAnalyticsTransformation': 'Get-AzureRmStreamAnalyticsTransformation', + 'Get-AzStreamAnalyticsFunction': 'Get-AzureRmStreamAnalyticsFunction', + 'Get-AzStreamAnalyticsQuota': 'Get-AzureRmStreamAnalyticsQuota', + 'New-AzStreamAnalyticsFunction': 'New-AzureRmStreamAnalyticsFunction', + 'New-AzStreamAnalyticsJob': 'New-AzureRmStreamAnalyticsJob', + 'Get-AzStreamAnalyticsJob': 'Get-AzureRmStreamAnalyticsJob' + }, + 'Az.Subscription': { + 'New-AzSubscription': 'New-AzureRmSubscription' + }, + 'Az.Search': { + 'New-AzSearchAdminKey': 'New-AzureRmSearchAdminKey', + 'Remove-AzSearchService': 'Remove-AzureRmSearchService', + 'Remove-AzSearchQueryKey': 'Remove-AzureRmSearchQueryKey', + 'Get-AzSearchQueryKey': 'Get-AzureRmSearchQueryKey', + 'Set-AzSearchService': 'Set-AzureRmSearchService', + 'Get-AzSearchAdminKeyPair': 'Get-AzureRmSearchAdminKeyPair', + 'New-AzSearchQueryKey': 'New-AzureRmSearchQueryKey', + 'Get-AzSearchService': 'Get-AzureRmSearchService', + 'New-AzSearchService': 'New-AzureRmSearchService' + }, + 'Az.Batch': { + 'Stop-AzBatchTask': 'Stop-AzureBatchTask', + 'Remove-AzBatchAccount': 'Remove-AzureRmBatchAccount', + 'Remove-AzBatchPool': 'Remove-AzureBatchPool', + 'Set-AzBatchAccount': 'Set-AzureRmBatchAccount', + 'Remove-AzBatchTask': 'Remove-AzureBatchTask', + 'Get-AzBatchAccount': 'Get-AzureRmBatchAccount', + 'Set-AzBatchPool': 'Set-AzureBatchPool', + 'New-AzBatchApplicationPackage': 'New-AzureRmBatchApplicationPackage', + 'Get-AzBatchNodeFile': 'Get-AzureBatchNodeFile', + 'Get-AzBatchPoolStatistics': 'Get-AzureBatchPoolStatistics', + 'Get-AzBatchNodeAgentSku': 'Get-AzureBatchNodeAgentSku', + 'Get-AzBatchPoolUsageMetrics': 'Get-AzureBatchPoolUsageMetrics', + 'New-AzBatchTask': 'New-AzureBatchTask', + 'Remove-AzBatchApplicationPackage': 'Remove-AzureRmBatchApplicationPackage', + 'Get-AzBatchRemoteLoginSettings': 'Get-AzureBatchRemoteLoginSettings', + 'Set-AzBatchComputeNodeUser': 'Set-AzureBatchComputeNodeUser', + 'New-AzBatchComputeNodeUser': 'New-AzureBatchComputeNodeUser', + 'Remove-AzBatchComputeNode': 'Remove-AzureBatchComputeNode', + 'Get-AzBatchJobSchedule': 'Get-AzureBatchJobSchedule', + 'Restart-AzBatchComputeNode': 'Restart-AzureBatchComputeNode', + 'Get-AzBatchLocationQuotas': 'Get-AzureRmBatchLocationQuotas', + 'Start-AzBatchPoolResize': 'Start-AzureBatchPoolResize', + 'Remove-AzBatchApplication': 'Remove-AzureRmBatchApplication', + 'New-AzBatchJob': 'New-AzureBatchJob', + 'Get-AzBatchComputeNode': 'Get-AzureBatchComputeNode', + 'Disable-AzBatchComputeNodeScheduling': 'Disable-AzureBatchComputeNodeScheduling', + 'Enable-AzBatchTask': 'Enable-AzureBatchTask', + 'Get-AzBatchTaskCounts': 'Get-AzureBatchTaskCounts', + 'Enable-AzBatchAutoScale': 'Enable-AzureBatchAutoScale', + 'Set-AzBatchApplication': 'Set-AzureRmBatchApplication', + 'Stop-AzBatchPoolResize': 'Stop-AzureBatchPoolResize', + 'Disable-AzBatchAutoScale': 'Disable-AzureBatchAutoScale', + 'Enable-AzBatchJobSchedule': 'Enable-AzureBatchJobSchedule', + 'Set-AzBatchJobSchedule': 'Set-AzureBatchJobSchedule', + 'Get-AzBatchApplication': 'Get-AzureRmBatchApplication', + 'Reactivate-AzBatchTask': 'Reactivate-AzureBatchTask', + 'Get-AzBatchApplicationPackage': 'Get-AzureRmBatchApplicationPackage', + 'Set-AzBatchPoolOSVersion': 'Set-AzureBatchPoolOSVersion', + 'Stop-AzBatchJob': 'Stop-AzureBatchJob', + 'Stop-AzBatchJobSchedule': 'Stop-AzureBatchJobSchedule', + 'Set-AzBatchJob': 'Set-AzureBatchJob', + 'Disable-AzBatchJob': 'Disable-AzureBatchJob', + 'Get-AzBatchJob': 'Get-AzureBatchJob', + 'New-AzBatchJobSchedule': 'New-AzureBatchJobSchedule', + 'Get-AzBatchSubscriptionQuotas': 'Get-AzureRmBatchSubscriptionQuotas', + 'Remove-AzBatchNodeFile': 'Remove-AzureBatchNodeFile', + 'New-AzBatchAccountKey': 'New-AzureRmBatchAccountKey', + 'Get-AzBatchJobPreparationAndReleaseTaskStatus': 'Get-AzureBatchJobPreparationAndReleaseTaskStatus', + 'Get-AzBatchSubtask': 'Get-AzureBatchSubtask', + 'New-AzBatchApplication': 'New-AzureRmBatchApplication', + 'Remove-AzBatchJob': 'Remove-AzureBatchJob', + 'New-AzBatchPool': 'New-AzureBatchPool', + 'Remove-AzBatchCertificate': 'Remove-AzureBatchCertificate', + 'Enable-AzBatchComputeNodeScheduling': 'Enable-AzureBatchComputeNodeScheduling', + 'Get-AzBatchPoolNodeCounts': 'Get-AzureBatchPoolNodeCounts', + 'Get-AzBatchPool': 'Get-AzureBatchPool', + 'Set-AzBatchTask': 'Set-AzureBatchTask', + 'New-AzBatchAccount': 'New-AzureRmBatchAccount', + 'Get-AzBatchRemoteDesktopProtocolFile': 'Get-AzureBatchRemoteDesktopProtocolFile', + 'Get-AzBatchNodeFileContent': 'Get-AzureBatchNodeFileContent', + 'Stop-AzBatchCertificateDeletion': 'Stop-AzureBatchCertificateDeletion', + 'Remove-AzBatchJobSchedule': 'Remove-AzureBatchJobSchedule', + 'Get-AzBatchTask': 'Get-AzureBatchTask', + 'Enable-AzBatchJob': 'Enable-AzureBatchJob', + 'Get-AzBatchAccountKeys': 'Get-AzureRmBatchAccountKeys', + 'Start-AzBatchComputeNodeServiceLogUpload': 'Start-AzureBatchComputeNodeServiceLogUpload', + 'Disable-AzBatchJobSchedule': 'Disable-AzureBatchJobSchedule', + 'Remove-AzBatchComputeNodeUser': 'Remove-AzureBatchComputeNodeUser', + 'Reset-AzBatchComputeNode': 'Reset-AzureBatchComputeNode', + 'Test-AzBatchAutoScale': 'Test-AzureBatchAutoScale', + 'New-AzBatchCertificate': 'New-AzureBatchCertificate', + 'Get-AzBatchJobStatistics': 'Get-AzureBatchJobStatistics', + 'Get-AzBatchCertificate': 'Get-AzureBatchCertificate' + }, + 'Az.Aks': { + 'Start-AzAksDashboard': 'Start-AzureRmAksDashboard', + 'Remove-AzAks': 'Remove-AzureRmAks', + 'Stop-AzAksDashboard': 'Stop-AzureRmAksDashboard', + 'Set-AzAks': 'Set-AzureRmAks', + 'New-AzAks': 'New-AzureRmAks', + 'Get-AzAks': 'Get-AzureRmAks', + 'Import-AzAksCredential': 'Import-AzureRmAksCredential' + }, + 'Az.Security': { + 'Get-AzSecurityWorkspaceSetting': 'Get-AzureRmSecurityWorkspaceSetting', + 'Set-AzSecurityPricing': 'Set-AzureRmSecurityPricing', + 'Get-AzSecurityContact': 'Get-AzureRmSecurityContact', + 'Remove-AzSecurityWorkspaceSetting': 'Remove-AzureRmSecurityWorkspaceSetting', + 'Get-AzSecurityPricing': 'Get-AzureRmSecurityPricing', + 'Get-AzSecurityAlert': 'Get-AzureRmSecurityAlert', + 'Get-AzSecurityCompliance': 'Get-AzureRmSecurityCompliance', + 'Set-AzSecurityContact': 'Set-AzureRmSecurityContact', + 'Get-AzJitNetworkAccessPolicy': 'Get-AzureRmJitNetworkAccessPolicy', + 'Set-AzSecurityAutoProvisioningSetting': 'Set-AzureRmSecurityAutoProvisioningSetting', + 'Get-AzSecurityLocation': 'Get-AzureRmSecurityLocation', + 'Remove-AzSecurityContact': 'Remove-AzureRmSecurityContact', + 'Get-AzSecurityTask': 'Get-AzureRmSecurityTask', + 'Set-AzSecurityAlert': 'Set-AzureRmSecurityAlert', + 'Get-AzExternalSecuritySolution': 'Get-AzureRmExternalSecuritySolution', + 'Get-AzDiscoveredSecuritySolution': 'Get-AzureRmDiscoveredSecuritySolution', + 'Set-AzJitNetworkAccessPolicy': 'Set-AzureRmJitNetworkAccessPolicy', + 'Set-AzSecurityWorkspaceSetting': 'Set-AzureRmSecurityWorkspaceSetting', + 'Remove-AzJitNetworkAccessPolicy': 'Remove-AzureRmJitNetworkAccessPolicy', + 'Start-AzJitNetworkAccessPolicy': 'Start-AzureRmJitNetworkAccessPolicy', + 'Get-AzSecurityAutoProvisioningSetting': 'Get-AzureRmSecurityAutoProvisioningSetting' + }, + 'Az.Dns': { + 'Set-AzDnsZone': 'Set-AzureRmDnsZone', + 'Remove-AzDnsRecordConfig': 'Remove-AzureRmDnsRecordConfig', + 'New-AzDnsRecordConfig': 'New-AzureRmDnsRecordConfig', + 'New-AzDnsRecordSet': 'New-AzureRmDnsRecordSet', + 'Remove-AzDnsRecordSet': 'Remove-AzureRmDnsRecordSet', + 'Get-AzDnsZone': 'Get-AzureRmDnsZone', + 'New-AzDnsZone': 'New-AzureRmDnsZone', + 'Remove-AzDnsZone': 'Remove-AzureRmDnsZone', + 'Set-AzDnsRecordSet': 'Set-AzureRmDnsRecordSet', + 'Get-AzDnsRecordSet': 'Get-AzureRmDnsRecordSet', + 'Add-AzDnsRecordConfig': 'Add-AzureRmDnsRecordConfig' + }, + 'Az.DevSpaces': { + 'Update-AzDevSpacesController': 'Update-AzureRmDevSpacesController', + 'New-AzDevSpacesController': 'New-AzureRmDevSpacesController', + 'Remove-AzDevSpacesController': 'Remove-AzureRmDevSpacesController', + 'Get-AzDevSpacesController': 'Get-AzureRmDevSpacesController' + }, + 'Az.ManagementPartner': { + 'New-AzManagementPartner': 'New-AzureRmManagementPartner', + 'Get-AzManagementPartner': 'Get-AzureRmManagementPartner', + 'Update-AzManagementPartner': 'Update-AzureRmManagementPartner', + 'Remove-AzManagementPartner': 'Remove-AzureRmManagementPartner' + }, + 'Az.Compute.ManagedService': { + 'ConvertTo-AzVhd': 'ConvertTo-AzureRmVhd' + }, + 'Az.RecoveryServices': { + 'Get-AzRecoveryServicesVault': 'Get-AzureRmRecoveryServicesVault', + 'Set-AzRecoveryServicesBackupProperties': 'Set-AzureRmRecoveryServicesBackupProperties', + 'Remove-AzRecoveryServicesVault': 'Remove-AzureRmRecoveryServicesVault', + 'New-AzRecoveryServicesVault': 'New-AzureRmRecoveryServicesVault', + 'Get-AzRecoveryServicesBackupProperty': 'Get-AzureRmRecoveryServicesBackupProperty', + 'Set-AzRecoveryServicesVaultContext': 'Set-AzureRmRecoveryServicesVaultContext', + 'Get-AzRecoveryServicesBackupProperties': 'Get-AzureRmRecoveryServicesBackupProperties', + 'Get-AzRecoveryServicesVaultSettingsFile': 'Get-AzureRmRecoveryServicesVaultSettingsFile' + }, + 'Az.EventHub': { + 'Set-AzEventHubGeoDRConfigurationBreakPair': 'Set-AzureRmEventHubGeoDRConfigurationBreakPair', + 'Remove-AzEventHubConsumerGroup': 'Remove-AzureRmEventHubConsumerGroup', + 'Remove-AzEventHubNamespace': 'Remove-AzureRmEventHubNamespace', + 'New-AzEventHubGeoDRConfiguration': 'New-AzureRmEventHubGeoDRConfiguration', + 'Get-AzEventHubConsumerGroup': 'Get-AzureRmEventHubConsumerGroup', + 'Get-AzEventHubKey': 'Get-AzureRmEventHubKey', + 'Set-AzEventHubNamespace': 'Set-AzureRmEventHubNamespace', + 'Get-AzEventHubGeoDRConfiguration': 'Get-AzureRmEventHubGeoDRConfiguration', + 'Set-AzEventHubAuthorizationRule': 'Set-AzureRmEventHubAuthorizationRule', + 'Test-AzEventHubName': 'Test-AzureRmEventHubName', + 'Get-AzEventHubNamespace': 'Get-AzureRmEventHubNamespace', + 'Remove-AzEventHub': 'Remove-AzureRmEventHub', + 'New-AzEventHubNamespace': 'New-AzureRmEventHubNamespace', + 'New-AzEventHub': 'New-AzureRmEventHub', + 'Set-AzEventHubGeoDRConfigurationFailOver': 'Set-AzureRmEventHubGeoDRConfigurationFailOver', + 'New-AzEventHubKey': 'New-AzureRmEventHubKey', + 'Get-AzEventHub': 'Get-AzureRmEventHub', + 'Set-AzEventHub': 'Set-AzureRmEventHub', + 'Set-AzEventHubConsumerGroup': 'Set-AzureRmEventHubConsumerGroup', + 'Get-AzEventHubAuthorizationRule': 'Get-AzureRmEventHubAuthorizationRule', + 'Remove-AzEventHubGeoDRConfiguration': 'Remove-AzureRmEventHubGeoDRConfiguration', + 'Remove-AzEventHubAuthorizationRule': 'Remove-AzureRmEventHubAuthorizationRule', + 'New-AzEventHubAuthorizationRule': 'New-AzureRmEventHubAuthorizationRule', + 'New-AzEventHubConsumerGroup': 'New-AzureRmEventHubConsumerGroup' + }, + 'Az.MachineLearningCompute': { + 'New-AzMlOpCluster': 'New-AzureRmMlOpCluster', + 'Get-AzMlOpCluster': 'Get-AzureRmMlOpCluster', + 'Get-AzMlOpClusterKey': 'Get-AzureRmMlOpClusterKey', + 'Test-AzMlOpClusterSystemServicesUpdateAvailability': 'Test-AzureRmMlOpClusterSystemServicesUpdateAvailability', + 'Remove-AzMlOpCluster': 'Remove-AzureRmMlOpCluster', + 'Update-AzMlOpClusterSystemService': 'Update-AzureRmMlOpClusterSystemService', + 'Set-AzMlOpCluster': 'Set-AzureRmMlOpCluster' + }, + 'Az.LogicApp': { + 'Set-AzIntegrationAccountGeneratedIcn': 'Set-AzureRmIntegrationAccountGeneratedIcn', + 'Get-AzLogicAppTriggerHistory': 'Get-AzureRmLogicAppTriggerHistory', + 'Get-AzIntegrationAccountCallbackUrl': 'Get-AzureRmIntegrationAccountCallbackUrl', + 'Set-AzIntegrationAccount': 'Set-AzureRmIntegrationAccount', + 'Get-AzIntegrationAccountSchema': 'Get-AzureRmIntegrationAccountSchema', + 'New-AzIntegrationAccountSchema': 'New-AzureRmIntegrationAccountSchema', + 'Set-AzIntegrationAccountPartner': 'Set-AzureRmIntegrationAccountPartner', + 'Remove-AzLogicApp': 'Remove-AzureRmLogicApp', + 'Get-AzLogicAppRunHistory': 'Get-AzureRmLogicAppRunHistory', + 'New-AzIntegrationAccountMap': 'New-AzureRmIntegrationAccountMap', + 'Start-AzLogicApp': 'Start-AzureRmLogicApp', + 'Get-AzLogicAppRunAction': 'Get-AzureRmLogicAppRunAction', + 'Get-AzIntegrationAccountGeneratedIcn': 'Get-AzureRmIntegrationAccountGeneratedIcn', + 'Get-AzIntegrationAccountMap': 'Get-AzureRmIntegrationAccountMap', + 'Remove-AzIntegrationAccountAgreement': 'Remove-AzureRmIntegrationAccountAgreement', + 'New-AzLogicApp': 'New-AzureRmLogicApp', + 'New-AzIntegrationAccountAgreement': 'New-AzureRmIntegrationAccountAgreement', + 'Get-AzLogicApp': 'Get-AzureRmLogicApp', + 'Get-AzIntegrationAccountPartner': 'Get-AzureRmIntegrationAccountPartner', + 'Set-AzIntegrationAccountAgreement': 'Set-AzureRmIntegrationAccountAgreement', + 'Set-AzIntegrationAccountMap': 'Set-AzureRmIntegrationAccountMap', + 'New-AzIntegrationAccount': 'New-AzureRmIntegrationAccount', + 'Get-AzLogicAppTriggerCallbackUrl': 'Get-AzureRmLogicAppTriggerCallbackUrl', + 'Get-AzIntegrationAccount': 'Get-AzureRmIntegrationAccount', + 'New-AzIntegrationAccountPartner': 'New-AzureRmIntegrationAccountPartner', + 'Stop-AzLogicAppRun': 'Stop-AzureRmLogicAppRun', + 'Get-AzIntegrationAccountCertificate': 'Get-AzureRmIntegrationAccountCertificate', + 'Set-AzIntegrationAccountReceivedIcn': 'Set-AzureRmIntegrationAccountReceivedIcn', + 'Remove-AzIntegrationAccountSchema': 'Remove-AzureRmIntegrationAccountSchema', + 'Set-AzIntegrationAccountCertificate': 'Set-AzureRmIntegrationAccountCertificate', + 'Remove-AzIntegrationAccountReceivedIcn': 'Remove-AzureRmIntegrationAccountReceivedIcn', + 'Remove-AzIntegrationAccount': 'Remove-AzureRmIntegrationAccount', + 'Set-AzLogicApp': 'Set-AzureRmLogicApp', + 'Test-AzLogicApp': 'Test-AzureRmLogicApp', + 'Get-AzIntegrationAccountReceivedIcn': 'Get-AzureRmIntegrationAccountReceivedIcn', + 'Get-AzLogicAppUpgradedDefinition': 'Get-AzureRmLogicAppUpgradedDefinition', + 'Set-AzIntegrationAccountSchema': 'Set-AzureRmIntegrationAccountSchema', + 'Remove-AzIntegrationAccountMap': 'Remove-AzureRmIntegrationAccountMap', + 'Remove-AzIntegrationAccountPartner': 'Remove-AzureRmIntegrationAccountPartner', + 'Get-AzIntegrationAccountAgreement': 'Get-AzureRmIntegrationAccountAgreement', + 'New-AzIntegrationAccountCertificate': 'New-AzureRmIntegrationAccountCertificate', + 'Get-AzLogicAppTrigger': 'Get-AzureRmLogicAppTrigger', + 'Remove-AzIntegrationAccountCertificate': 'Remove-AzureRmIntegrationAccountCertificate' + }, + 'Az.SignalR': { + 'Remove-AzSignalR': 'Remove-AzureRmSignalR', + 'Get-AzSignalRKey': 'Get-AzureRmSignalRKey', + 'Get-AzSignalR': 'Get-AzureRmSignalR', + 'New-AzSignalR': 'New-AzureRmSignalR', + 'New-AzSignalRKey': 'New-AzureRmSignalRKey' + }, + 'Az.ApplicationInsights': { + 'New-AzApplicationInsightsApiKey': 'New-AzureRmApplicationInsightsApiKey', + 'Remove-AzApplicationInsights': 'Remove-AzureRmApplicationInsights', + 'Set-AzApplicationInsightsContinuousExport': 'Set-AzureRmApplicationInsightsContinuousExport', + 'New-AzApplicationInsights': 'New-AzureRmApplicationInsights', + 'Get-AzApplicationInsights': 'Get-AzureRmApplicationInsights', + 'Get-AzApplicationInsightsApiKey': 'Get-AzureRmApplicationInsightsApiKey', + 'Remove-AzApplicationInsightsApiKey': 'Remove-AzureRmApplicationInsightsApiKey', + 'Get-AzApplicationInsightsContinuousExport': 'Get-AzureRmApplicationInsightsContinuousExport', + 'Set-AzApplicationInsightsPricingPlan': 'Set-AzureRmApplicationInsightsPricingPlan', + 'New-AzApplicationInsightsContinuousExport': 'New-AzureRmApplicationInsightsContinuousExport', + 'Set-AzApplicationInsightsDailyCap': 'Set-AzureRmApplicationInsightsDailyCap', + 'Remove-AzApplicationInsightsContinuousExport': 'Remove-AzureRmApplicationInsightsContinuousExport' + } +} "; } } From 3caff880226e33fe1c36d22c3c7c887bb1e55f12 Mon Sep 17 00:00:00 2001 From: Rupali Vohra Date: Wed, 12 Sep 2018 19:43:18 -0700 Subject: [PATCH 04/11] Adding tests --- .../Commands.Network.Test.csproj | 10 + .../AvailableDelegationsTests.cs | 40 + .../AvailableDelegationsTests.ps1 | 33 + .../ScenarioTests/VirtualNetworkTests.cs | 8 + .../ScenarioTests/VirtualNetworkTests.ps1 | 90 + .../TestAvailableDelegationsList.json | 72 + ...estVirtualNetworkSubnetDelegationCRUD.json | 2605 +++++++++++++++++ 7 files changed, 2858 insertions(+) create mode 100644 src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/AvailableDelegationsTests.cs create mode 100644 src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/AvailableDelegationsTests.ps1 create mode 100644 src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.AvailableDelegationsTests/TestAvailableDelegationsList.json create mode 100644 src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkTests/TestVirtualNetworkSubnetDelegationCRUD.json diff --git a/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj b/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj index 9a0e6081c091..a1904bd6729f 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj +++ b/src/ResourceManager/Network/Commands.Network.Test/Commands.Network.Test.csproj @@ -67,6 +67,7 @@ + @@ -104,6 +105,9 @@ Always + + Always + Always @@ -245,6 +249,9 @@ PreserveNewest + + PreserveNewest + PreserveNewest @@ -642,6 +649,9 @@ PreserveNewest + + PreserveNewest + PreserveNewest diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/AvailableDelegationsTests.cs b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/AvailableDelegationsTests.cs new file mode 100644 index 000000000000..1fdc8933f55c --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/AvailableDelegationsTests.cs @@ -0,0 +1,40 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.ServiceManagemenet.Common.Models; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Xunit; +using Xunit.Abstractions; + +namespace Commands.Network.Test.ScenarioTests +{ + public class AvailableDelegationsTests : Microsoft.WindowsAzure.Commands.Test.Utilities.Common.RMTestBase + { + public XunitTracingInterceptor _logger; + + public AvailableDelegationsTests(Xunit.Abstractions.ITestOutputHelper output) + { + _logger = new XunitTracingInterceptor(output); + XunitTracingInterceptor.AddToContext(_logger); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.Owner, Category.sdnnrp)] + public void TestAvailableDelegationsList() + { + NetworkResourcesController.NewInstance.RunPsTest(_logger, "Test-GetAvailableDelegationsList"); + } + } +} diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/AvailableDelegationsTests.ps1 b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/AvailableDelegationsTests.ps1 new file mode 100644 index 000000000000..3d9ea8c1a6c7 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/AvailableDelegationsTests.ps1 @@ -0,0 +1,33 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Tests checking API to list available delegations. +#> +function Test-GetAvailableDelegationsList +{ + $location = Get-ProviderLocation ResourceManagement + $location = $location -replace " ","" + try + { + $results = Get-AzureRmAvailableServiceDelegation -Location $location; + Assert-NotNull $results; + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkTests.cs b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkTests.cs index c88e73add4b4..98dab56f6906 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkTests.cs +++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkTests.cs @@ -54,6 +54,14 @@ public void TestVirtualNetworkSubnetCRUD() NetworkResourcesController.NewInstance.RunPsTest(_logger, "Test-subnetCRUD"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.Owner, Category.sdnnrp)] + public void TestVirtualNetworkSubnetDelegationCRUD() + { + NetworkResourcesController.NewInstance.RunPsTest(_logger, "Test-subnetDelegationCRUD"); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(Category.Owner, Category.sdnnrp)] diff --git a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkTests.ps1 b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkTests.ps1 index 6c781cc09591..bcac9f1c9d3b 100644 --- a/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkTests.ps1 +++ b/src/ResourceManager/Network/Commands.Network.Test/ScenarioTests/VirtualNetworkTests.ps1 @@ -187,6 +187,96 @@ function Test-subnetCRUD } } +<# +.SYNOPSIS +Tests creating new virtualNetwork w/ delegated subnets. +.DESCRIPTION +SmokeTest +#> +function Test-subnetDelegationCRUD +{ + # Setup + $rgname = Get-ResourceGroupName + $vnetName = Get-ResourceName + $subnetName = Get-ResourceName + $subnet2Name = Get-ResourceName + $domainNameLabel = Get-ResourceName + $rglocation = Get-ProviderLocation ResourceManagement + $resourceTypeParent = "Microsoft.Network/virtualNetworks" + $location = Get-ProviderLocation $resourceTypeParent + + try + { + # Create the resource group + $resourceGroup = New-AzureRmResourceGroup -Name $rgname -Location $rglocation -Tags @{ testtag = "testval" } + + # Create a delegation + $delegation = New-AzureRmDelegation -Name "sqlDelegation" -ServiceName "Microsoft.Sql/servers" + + # Create the Virtual Network + $subnet = New-AzureRmVirtualNetworkSubnetConfig -Name $subnetName -AddressPrefix 10.0.1.0/24 -delegation $delegation + New-AzureRmvirtualNetwork -Name $vnetName -ResourceGroupName $rgname -Location $location -AddressPrefix 10.0.0.0/16 -Subnet $subnet + $vnet = Get-AzureRmVirtualNetwork -Name $vnetName -ResourceGroupName $rgname + + # Add a subnet + $vnet | Add-AzureRmVirtualNetworkSubnetConfig -Name $subnet2Name -AddressPrefix 10.0.2.0/24 + + # Set VirtualNetwork + $vnet | Set-AzureRmVirtualNetwork + + # Get VirtualNetwork + $vnetExpected = Get-AzureRmvirtualNetwork -Name $vnetName -ResourceGroupName $rgname + + Assert-AreEqual 2 @($vnetExpected.Subnets).Count + Assert-AreEqual 1 @($vnetExpected.Subnets[0].Delegations).Count + Assert-AreEqual 0 @($vnetExpected.Subnets[1].Delegations).Count + + # Edit a subnet + $vnet = Get-AzureRmVirtualNetwork -Name $vnetName -ResourceGroupName $rgname | Set-AzureRmVirtualNetworkSubnetConfig -Name $subnet2Name -AddressPrefix 10.0.2.0/24 + + # Add a delegation to the subnet + Get-AzureRmVirtualNetworkSubnetConfig -Name $subnet2Name -VirtualNetwork $vnet | Add-AzureRmDelegation -Name "bareMetalDelegation" -ServiceName "Microsoft.Netapp/volumes" + Set-AzureRmVirtualNetwork -VirtualNetwork $vnet + + $vnetExpected = Get-AzureRmvirtualNetwork -Name $vnetName -ResourceGroupName $rgname + Assert-AreEqual 2 @($vnetExpected.Subnets).Count + Assert-AreEqual 1 @($vnetExpected.Subnets[0].Delegations).Count + Assert-AreEqual "Microsoft.Sql/servers" $vnetExpected.Subnets[0].Delegations[0].ServiceName + Assert-AreEqual 1 @($vnetExpected.Subnets[1].Delegations).Count + Assert-AreEqual "Microsoft.Netapp/volumes" $vnetExpected.Subnets[1].Delegations[0].ServiceName + + # Get subnet + $subnet2 = Get-AzureRmvirtualNetwork -Name $vnetName -ResourceGroupName $rgname | Get-AzureRmVirtualNetworkSubnetConfig -Name $subnet2Name + Assert-AreEqual 1 @($subnet2.Delegations).Count + $subnetAll = Get-AzureRmvirtualNetwork -Name $vnetName -ResourceGroupName $rgname | Get-AzureRmVirtualNetworkSubnetConfig + + Assert-AreEqual 2 @($subnetAll).Count + + # Get delegations from the subnets + Foreach ($sub in $subnetAll) + { + $del = Get-AzureRmDelegation -Subnet $sub + Assert-NotNull $del + } + + # Remove a delegation + $vnetToEdit = Get-AzureRmvirtualNetwork -Name $vnetName -ResourceGroupName $rgname + $subnetWithoutDelegation = Get-AzureRmVirtualNetworkSubnetConfig -Name $subnet2Name -VirtualNetwork $vnet | Remove-AzureRmDelegation -Name "bareMetalDelegation" + $vnetToEdit.Subnets[1] = $subnetWithoutDelegation + $vnet = Set-AzureRmVirtualNetwork -VirtualNetwork $vnetToEdit + + $vnetExpected = Get-AzureRmvirtualNetwork -Name $vnetName -ResourceGroupName $rgname + Assert-AreEqual 2 @($vnetExpected.Subnets).Count + Assert-AreEqual 1 @($vnetExpected.Subnets[0].Delegations).Count + Assert-AreEqual 0 @($vnetExpected.Subnets[1].Delegations).Count + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + <# .SYNOPSIS Tests creating new simple virtualNetwork and subnets. diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.AvailableDelegationsTests/TestAvailableDelegationsList.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.AvailableDelegationsTests/TestAvailableDelegationsList.json new file mode 100644 index 000000000000..2c7ab8b4eef4 --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.AvailableDelegationsTests/TestAvailableDelegationsList.json @@ -0,0 +1,72 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/providers/Microsoft.Network/locations/westcentralus/availableDelegations?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hdmFpbGFibGVEZWxlZ2F0aW9ucz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c10de067-a942-4b31-af27-c70299eee8de" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.Web.serverFarms\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/providers/Microsoft.Network/availableDelegations/Microsoft.Web.serverFarms\",\r\n \"type\": \"Microsoft.Network/availableDelegations\",\r\n \"serviceName\": \"Microsoft.Web/serverFarms\",\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql.servers\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/providers/Microsoft.Network/availableDelegations/Microsoft.Sql.servers\",\r\n \"type\": \"Microsoft.Network/availableDelegations\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance.containerGroups\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/providers/Microsoft.Network/availableDelegations/Microsoft.ContainerInstance.containerGroups\",\r\n \"type\": \"Microsoft.Network/availableDelegations\",\r\n \"serviceName\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Netapp.volumes\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/providers/Microsoft.Network/availableDelegations/Microsoft.Netapp.volumes\",\r\n \"type\": \"Microsoft.Network/availableDelegations\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.HardwareSecurityModules.dedicatedHSMs\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/providers/Microsoft.Network/availableDelegations/Microsoft.HardwareSecurityModules.dedicatedHSMs\",\r\n \"type\": \"Microsoft.Network/availableDelegations\",\r\n \"serviceName\": \"Microsoft.HardwareSecurityModules/dedicatedHSMs\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabricMesh.networks\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/providers/Microsoft.Network/availableDelegations/Microsoft.ServiceFabricMesh.networks\",\r\n \"type\": \"Microsoft.Network/availableDelegations\",\r\n \"serviceName\": \"Microsoft.ServiceFabricMesh/networks\",\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n ]\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2596" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "584c08d1-9b2e-44c6-968c-322bdb48e783" + ], + "x-ms-correlation-request-id": [ + "3ca1d79c-8ba7-469e-82a8-89b5d8d0e840" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T191723Z:3ca1d79c-8ba7-469e-82a8-89b5d8d0e840" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 19:17:22 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "e05dbbce-79c2-45a2-a7ef-f1058856feb3" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkTests/TestVirtualNetworkSubnetDelegationCRUD.json b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkTests/TestVirtualNetworkSubnetDelegationCRUD.json new file mode 100644 index 000000000000..e344620ea26e --- /dev/null +++ b/src/ResourceManager/Network/Commands.Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.VirtualNetworkTests/TestVirtualNetworkSubnetDelegationCRUD.json @@ -0,0 +1,2605 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourcegroups/ps1119?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlZ3JvdXBzL3BzMTExOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ], + "x-ms-client-request-id": [ + "7121cd98-e1c3-4da3-b988-d93d99d2de5f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119\",\r\n \"name\": \"ps1119\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "172" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "a9399a64-9f0f-49c0-8cd5-6e088f4ecfc3" + ], + "x-ms-correlation-request-id": [ + "a9399a64-9f0f-49c0-8cd5-6e088f4ecfc3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210710Z:a9399a64-9f0f-49c0-8cd5-6e088f4ecfc3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:10 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5b9e123-7443-4d7f-a85e-0829fdc4dc2e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/ps3817' under resource group 'ps1119' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "150" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "7f2d7764-b011-444d-9db8-2aad4540e8c5" + ], + "x-ms-correlation-request-id": [ + "7f2d7764-b011-444d-9db8-2aad4540e8c5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210711Z:7f2d7764-b011-444d-9db8-2aad4540e8c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:11 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3817\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"etag\": \"W/\\\"cde7aa88-e43e-4c5f-9e46-2a7a357def0a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7393\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\",\r\n \"etag\": \"W/\\\"cde7aa88-e43e-4c5f-9e46-2a7a357def0a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"sqlDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\",\r\n \"etag\": \"W/\\\"cde7aa88-e43e-4c5f-9e46-2a7a357def0a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"InterfaceEndpoints\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1812" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6e7a51b0-786d-49ac-9700-6a0204cb62dc" + ], + "x-ms-correlation-request-id": [ + "c4ff8ba2-de73-45f5-b364-36c9fda99f18" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"cde7aa88-e43e-4c5f-9e46-2a7a357def0a\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210725Z:c4ff8ba2-de73-45f5-b364-36c9fda99f18" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6242f77f-8d70-4c55-88e4-837f6be0c7eb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3817\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"etag\": \"W/\\\"cde7aa88-e43e-4c5f-9e46-2a7a357def0a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7393\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\",\r\n \"etag\": \"W/\\\"cde7aa88-e43e-4c5f-9e46-2a7a357def0a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"sqlDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\",\r\n \"etag\": \"W/\\\"cde7aa88-e43e-4c5f-9e46-2a7a357def0a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"InterfaceEndpoints\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1812" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3764c2fc-a679-4e4f-9999-3c77c22193a5" + ], + "x-ms-correlation-request-id": [ + "cf135ce7-ad93-497e-8ba0-cb5ddb1ba65c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"cde7aa88-e43e-4c5f-9e46-2a7a357def0a\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210725Z:cf135ce7-ad93-497e-8ba0-cb5ddb1ba65c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ced3a7e-5a48-4dd2-b987-f2b4dae5ec79" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3817\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"etag\": \"W/\\\"cde7aa88-e43e-4c5f-9e46-2a7a357def0a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7393\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\",\r\n \"etag\": \"W/\\\"cde7aa88-e43e-4c5f-9e46-2a7a357def0a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"sqlDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\",\r\n \"etag\": \"W/\\\"cde7aa88-e43e-4c5f-9e46-2a7a357def0a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"InterfaceEndpoints\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1812" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d657209d-53b5-4e59-88be-0f107a828acd" + ], + "x-ms-correlation-request-id": [ + "684cb03d-7b15-45a7-afd3-46657b4c2a75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"cde7aa88-e43e-4c5f-9e46-2a7a357def0a\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210725Z:684cb03d-7b15-45a7-afd3-46657b4c2a75" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1e66903f-8271-41cd-ac2c-8f9f68685774" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3817\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"etag\": \"W/\\\"cde7aa88-e43e-4c5f-9e46-2a7a357def0a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7393\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\",\r\n \"etag\": \"W/\\\"cde7aa88-e43e-4c5f-9e46-2a7a357def0a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"sqlDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\",\r\n \"etag\": \"W/\\\"cde7aa88-e43e-4c5f-9e46-2a7a357def0a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"InterfaceEndpoints\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1812" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cdff5ef2-80b1-4f3b-b55e-3ea916932381" + ], + "x-ms-correlation-request-id": [ + "b30b41bc-51a8-4c03-a797-27ad3f9ec5eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"cde7aa88-e43e-4c5f-9e46-2a7a357def0a\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210725Z:b30b41bc-51a8-4c03-a797-27ad3f9ec5eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3817\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7393\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"sqlDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"InterfaceEndpoints\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"ps415\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2381" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1fb9c1a7-caf7-41fd-b4ef-07642a2a651e" + ], + "x-ms-correlation-request-id": [ + "25988602-e63b-413f-8258-1562418ed5d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"e97c95b5-9472-4a76-8287-b3608b434060\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210736Z:25988602-e63b-413f-8258-1562418ed5d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae5bb7e2-a912-47d5-bb29-cb5fedeb872d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3817\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7393\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"sqlDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"InterfaceEndpoints\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"ps415\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2381" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "56d5b106-bf3d-4198-ba2b-8cd62a4dd565" + ], + "x-ms-correlation-request-id": [ + "83f30115-b30d-4934-b55d-2b9f31364c25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"e97c95b5-9472-4a76-8287-b3608b434060\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210736Z:83f30115-b30d-4934-b55d-2b9f31364c25" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba4ad56c-af9c-48e3-ac31-142aabd32b91" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3817\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7393\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"sqlDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"InterfaceEndpoints\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"ps415\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2381" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bc51b2fc-0df0-4d86-9f8e-275122d87e32" + ], + "x-ms-correlation-request-id": [ + "dee0019a-bc38-4ffb-bfc5-6b04892711c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"e97c95b5-9472-4a76-8287-b3608b434060\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210736Z:dee0019a-bc38-4ffb-bfc5-6b04892711c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb7c30d2-6424-4482-9cd8-2d67f05e56ec" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3817\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7393\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"sqlDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"InterfaceEndpoints\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"ps415\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2381" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bb0221f6-8d77-4a7f-b4bd-778c8db4d47f" + ], + "x-ms-correlation-request-id": [ + "b6087ad5-9644-42c3-90b2-556e203a07b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"e97c95b5-9472-4a76-8287-b3608b434060\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210736Z:b6087ad5-9644-42c3-90b2-556e203a07b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e632d35-223c-454d-9e8d-a17c0b366bee" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3817\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7393\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"sqlDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"InterfaceEndpoints\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"ps415\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2381" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8d304aae-9a61-41ec-a6da-219dc21be0c3" + ], + "x-ms-correlation-request-id": [ + "503f37dc-11cc-4c8a-98c6-625d1b47b954" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"e97c95b5-9472-4a76-8287-b3608b434060\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210736Z:503f37dc-11cc-4c8a-98c6-625d1b47b954" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3817\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7393\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"sqlDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"InterfaceEndpoints\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"ps415\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"bareMetalDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415/delegations/bareMetalDelegation\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d610fcce-8c38-4804-aa5a-c14101453abd" + ], + "x-ms-correlation-request-id": [ + "9262a1ca-d03a-4034-b99c-e2afa9ffa8ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210746Z:9262a1ca-d03a-4034-b99c-e2afa9ffa8ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4de43e48-a36d-4e9d-9f20-2e9ee7a140dc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3817\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7393\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"sqlDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"InterfaceEndpoints\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"ps415\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"bareMetalDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415/delegations/bareMetalDelegation\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "514ab2b3-81be-4f9e-96a9-5d7ea2d26ffe" + ], + "x-ms-correlation-request-id": [ + "9d4142aa-ce74-424a-aa3b-f23e3cf957ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210746Z:9d4142aa-ce74-424a-aa3b-f23e3cf957ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c458c308-a2a7-494a-a000-3fbb4478bb3c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3817\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7393\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"sqlDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"InterfaceEndpoints\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"ps415\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"bareMetalDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415/delegations/bareMetalDelegation\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ef26a77b-5873-471b-9284-7411bafdce98" + ], + "x-ms-correlation-request-id": [ + "f0f2ec25-0a3d-4b3d-8e0e-caa4bbb3ddc5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210747Z:f0f2ec25-0a3d-4b3d-8e0e-caa4bbb3ddc5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "918e1a24-b663-4d18-b7ea-407a31b3526c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3817\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7393\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"sqlDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"InterfaceEndpoints\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"ps415\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"bareMetalDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415/delegations/bareMetalDelegation\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "65e6046d-07f9-4cc8-a162-51dc499f5930" + ], + "x-ms-correlation-request-id": [ + "63ac7882-09b6-4a93-a74c-cb0f9f8d3358" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210747Z:63ac7882-09b6-4a93-a74c-cb0f9f8d3358" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b8e3378-a1df-40ef-8b94-446a8931578d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3817\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7393\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"sqlDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"InterfaceEndpoints\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"ps415\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"bareMetalDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415/delegations/bareMetalDelegation\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c390848c-a9be-447f-bffb-bb45aa01dc34" + ], + "x-ms-correlation-request-id": [ + "b2ad7eee-73a2-46a2-96e6-ea2465cda733" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210747Z:b2ad7eee-73a2-46a2-96e6-ea2465cda733" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a0775042-20b9-4328-8366-2e190db8df81" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3817\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7393\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"sqlDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"InterfaceEndpoints\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"ps415\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"bareMetalDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415/delegations/bareMetalDelegation\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1a9c87b4-9fd5-4921-a217-1cb13d128e16" + ], + "x-ms-correlation-request-id": [ + "0168145c-33e8-475d-b6a8-22718d6199df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210747Z:0168145c-33e8-475d-b6a8-22718d6199df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "477ddc31-5ab7-4cb5-84ae-d9ab195351f5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3817\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7393\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"sqlDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"InterfaceEndpoints\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"ps415\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"bareMetalDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415/delegations/bareMetalDelegation\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3197" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "478e248a-9a42-4be4-9218-12d0fca5893e" + ], + "x-ms-correlation-request-id": [ + "ce465078-c4e5-413a-8db2-a82895f70167" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210747Z:ce465078-c4e5-413a-8db2-a82895f70167" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3817\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"etag\": \"W/\\\"86a99577-e5f7-4c50-8770-dc7df4109016\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7393\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\",\r\n \"etag\": \"W/\\\"86a99577-e5f7-4c50-8770-dc7df4109016\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"sqlDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\",\r\n \"etag\": \"W/\\\"86a99577-e5f7-4c50-8770-dc7df4109016\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"InterfaceEndpoints\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"ps415\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415\",\r\n \"etag\": \"W/\\\"86a99577-e5f7-4c50-8770-dc7df4109016\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2381" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "433d4031-cc5e-4bfc-be2b-072bf7d512ef" + ], + "x-ms-correlation-request-id": [ + "8999a85f-860c-4516-b695-52fff12450c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"86a99577-e5f7-4c50-8770-dc7df4109016\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210801Z:8999a85f-860c-4516-b695-52fff12450c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:08:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "85bcf9c7-246d-45f7-978d-d9d7c8d9ee23" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3817\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"etag\": \"W/\\\"86a99577-e5f7-4c50-8770-dc7df4109016\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7393\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\",\r\n \"etag\": \"W/\\\"86a99577-e5f7-4c50-8770-dc7df4109016\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"sqlDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\",\r\n \"etag\": \"W/\\\"86a99577-e5f7-4c50-8770-dc7df4109016\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"InterfaceEndpoints\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"ps415\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415\",\r\n \"etag\": \"W/\\\"86a99577-e5f7-4c50-8770-dc7df4109016\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2381" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "eea2b56d-0c49-4405-8ef1-4f63171a81b8" + ], + "x-ms-correlation-request-id": [ + "e4737d0c-8976-4754-8282-e2227d74728a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"86a99577-e5f7-4c50-8770-dc7df4109016\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210801Z:e4737d0c-8976-4754-8282-e2227d74728a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:08:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d92bad29-8313-4573-8762-8c9dc521bc86" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3817\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"etag\": \"W/\\\"86a99577-e5f7-4c50-8770-dc7df4109016\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7393\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\",\r\n \"etag\": \"W/\\\"86a99577-e5f7-4c50-8770-dc7df4109016\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"sqlDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\",\r\n \"etag\": \"W/\\\"86a99577-e5f7-4c50-8770-dc7df4109016\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"InterfaceEndpoints\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"ps415\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415\",\r\n \"etag\": \"W/\\\"86a99577-e5f7-4c50-8770-dc7df4109016\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2381" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c29dac07-4066-4bd4-8aaa-1682fe3d9976" + ], + "x-ms-correlation-request-id": [ + "969a852c-8937-4537-a301-db99cd37771a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "ETag": [ + "W/\"86a99577-e5f7-4c50-8770-dc7df4109016\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210805Z:969a852c-8937-4537-a301-db99cd37771a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:08:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"resourceNavigationLinks\": [],\r\n \"serviceAssociationLinks\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"name\": \"sqlDelegation\"\r\n }\r\n ]\r\n },\r\n \"name\": \"ps7393\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n },\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "813" + ], + "x-ms-client-request-id": [ + "a7049de9-6682-433a-85c2-2baa7183a29c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3817\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"etag\": \"W/\\\"81b6dd97-ee1d-4a79-b757-64f70333a4f0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7393\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\",\r\n \"etag\": \"W/\\\"81b6dd97-ee1d-4a79-b757-64f70333a4f0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"sqlDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\",\r\n \"etag\": \"W/\\\"81b6dd97-ee1d-4a79-b757-64f70333a4f0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"InterfaceEndpoints\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1810" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "085421d0-2c11-4f1a-a8b9-205af3971f18" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/providers/Microsoft.Network/locations/westcentralus/operations/085421d0-2c11-4f1a-a8b9-205af3971f18?api-version=2018-08-01" + ], + "x-ms-correlation-request-id": [ + "5a6c9539-3020-4143-98f9-a5870c46934a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210714Z:5a6c9539-3020-4143-98f9-a5870c46934a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:14 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"resourceNavigationLinks\": [],\r\n \"serviceAssociationLinks\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"name\": \"sqlDelegation\",\r\n \"etag\": \"W/\\\"cde7aa88-e43e-4c5f-9e46-2a7a357def0a\\\"\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ps7393\",\r\n \"etag\": \"W/\\\"cde7aa88-e43e-4c5f-9e46-2a7a357def0a\\\"\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"resourceNavigationLinks\": [],\r\n \"serviceAssociationLinks\": [],\r\n \"delegations\": []\r\n },\r\n \"name\": \"ps415\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n },\r\n \"etag\": \"W/\\\"cde7aa88-e43e-4c5f-9e46-2a7a357def0a\\\"\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2068" + ], + "x-ms-client-request-id": [ + "1b81c9d7-f337-479e-9f18-2380bb9afd0b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3817\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"etag\": \"W/\\\"bf05dd5b-a6ca-442d-9041-b4875e6f8c32\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7393\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\",\r\n \"etag\": \"W/\\\"bf05dd5b-a6ca-442d-9041-b4875e6f8c32\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"sqlDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\",\r\n \"etag\": \"W/\\\"bf05dd5b-a6ca-442d-9041-b4875e6f8c32\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"InterfaceEndpoints\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"ps415\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415\",\r\n \"etag\": \"W/\\\"bf05dd5b-a6ca-442d-9041-b4875e6f8c32\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2378" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "fc5bdaae-0569-4171-8627-853063a3df03" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/providers/Microsoft.Network/locations/westcentralus/operations/fc5bdaae-0569-4171-8627-853063a3df03?api-version=2018-08-01" + ], + "x-ms-correlation-request-id": [ + "3e848247-d72c-4f60-b2ff-8a48288ee105" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210726Z:3e848247-d72c-4f60-b2ff-8a48288ee105" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"resourceNavigationLinks\": [],\r\n \"serviceAssociationLinks\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"name\": \"sqlDelegation\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ps7393\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"resourceNavigationLinks\": [],\r\n \"serviceAssociationLinks\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": []\r\n },\r\n \"name\": \"bareMetalDelegation\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ps415\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n },\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2560" + ], + "x-ms-client-request-id": [ + "10f7a88b-b7fe-4264-9701-b9d8bc258bf5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3817\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"etag\": \"W/\\\"8f124025-6739-4b12-b7fd-72a82f122dcd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7393\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\",\r\n \"etag\": \"W/\\\"8f124025-6739-4b12-b7fd-72a82f122dcd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"sqlDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\",\r\n \"etag\": \"W/\\\"8f124025-6739-4b12-b7fd-72a82f122dcd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"InterfaceEndpoints\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"ps415\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415\",\r\n \"etag\": \"W/\\\"8f124025-6739-4b12-b7fd-72a82f122dcd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"bareMetalDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415/delegations/bareMetalDelegation\",\r\n \"etag\": \"W/\\\"8f124025-6739-4b12-b7fd-72a82f122dcd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\"\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"HostedWorkloads\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3194" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "86dbcc6f-2deb-4d7b-bd0a-8b27511f9528" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/providers/Microsoft.Network/locations/westcentralus/operations/86dbcc6f-2deb-4d7b-bd0a-8b27511f9528?api-version=2018-08-01" + ], + "x-ms-correlation-request-id": [ + "cfb9b1b4-6e8a-4a45-b6ea-d69798d6be8c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210736Z:cfb9b1b4-6e8a-4a45-b6ea-d69798d6be8c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlR3JvdXBzL3BzMTExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3BzMzgxNz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"resourceNavigationLinks\": [],\r\n \"serviceAssociationLinks\": [],\r\n \"delegations\": [\r\n {\r\n \"properties\": {\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"name\": \"sqlDelegation\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ps7393\",\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"resourceNavigationLinks\": [],\r\n \"serviceAssociationLinks\": [],\r\n \"delegations\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ps415\",\r\n \"etag\": \"W/\\\"e97c95b5-9472-4a76-8287-b3608b434060\\\"\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n },\r\n \"etag\": \"W/\\\"f9fc89b6-b33d-46dd-bcc3-8c3bc6fe34d7\\\"\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2333" + ], + "x-ms-client-request-id": [ + "f99194e8-1443-45bd-8ef2-6afa1f3b785a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3817\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817\",\r\n \"etag\": \"W/\\\"768cb4d8-69c7-4b99-aaa1-9f853fc0e495\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"03ad5f0c-bc7f-4b08-b48e-38f366d68e26\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"ps7393\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393\",\r\n \"etag\": \"W/\\\"768cb4d8-69c7-4b99-aaa1-9f853fc0e495\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [\r\n {\r\n \"name\": \"sqlDelegation\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps7393/delegations/sqlDelegation\",\r\n \"etag\": \"W/\\\"768cb4d8-69c7-4b99-aaa1-9f853fc0e495\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Sql/servers\",\r\n \"actions\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n }\r\n ],\r\n \"purpose\": \"InterfaceEndpoints\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"ps415\",\r\n \"id\": \"/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourceGroups/ps1119/providers/Microsoft.Network/virtualNetworks/ps3817/subnets/ps415\",\r\n \"etag\": \"W/\\\"768cb4d8-69c7-4b99-aaa1-9f853fc0e495\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2378" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "ce62f0be-ef41-4e3e-a3b2-dc1751c35c14" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/providers/Microsoft.Network/locations/westcentralus/operations/ce62f0be-ef41-4e3e-a3b2-dc1751c35c14?api-version=2018-08-01" + ], + "x-ms-correlation-request-id": [ + "7989d1a5-af4d-4355-9de5-7a3ddaa3fbb2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210747Z:7989d1a5-af4d-4355-9de5-7a3ddaa3fbb2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/providers/Microsoft.Network/locations/westcentralus/operations/085421d0-2c11-4f1a-a8b9-205af3971f18?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzA4NTQyMWQwLTJjMTEtNGYxYS1hOGI5LTIwNWFmMzk3MWYxOD9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "092b2ffd-4e27-4b18-b7e3-7b14361f3e77" + ], + "x-ms-correlation-request-id": [ + "0cb68796-49ab-40bd-ba13-281780cce082" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210725Z:0cb68796-49ab-40bd-ba13-281780cce082" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:24 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/providers/Microsoft.Network/locations/westcentralus/operations/fc5bdaae-0569-4171-8627-853063a3df03?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjNWJkYWFlLTA1NjktNDE3MS04NjI3LTg1MzA2M2EzZGYwMz9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a05f55e6-79eb-48e6-994b-2ad87b1777c2" + ], + "x-ms-correlation-request-id": [ + "44f38113-3194-40ed-8270-8145f4701c89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210736Z:44f38113-3194-40ed-8270-8145f4701c89" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/providers/Microsoft.Network/locations/westcentralus/operations/86dbcc6f-2deb-4d7b-bd0a-8b27511f9528?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzg2ZGJjYzZmLTJkZWItNGQ3Yi1iZDBhLThiMjc1MTFmOTUyOD9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "df7ddb36-76ae-4db1-a6c1-fe1e33414e74" + ], + "x-ms-correlation-request-id": [ + "596484b9-5e72-4038-9c90-89fcaf303002" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210746Z:596484b9-5e72-4038-9c90-89fcaf303002" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/providers/Microsoft.Network/locations/westcentralus/operations/ce62f0be-ef41-4e3e-a3b2-dc1751c35c14?api-version=2018-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2NlNjJmMGJlLWVmNDEtNGUzZS1hM2IyLWRjMTc1MWMzNWMxND9hcGktdmVyc2lvbj0yMDE4LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.4.0.0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "464eb6f2-3f02-4809-9c12-7d27aea9426c" + ], + "x-ms-correlation-request-id": [ + "b8f51f63-b28f-413f-839b-6ee5decea202" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210757Z:b8f51f63-b28f-413f-839b-6ee5decea202" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 13 Sep 2018 21:07:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/resourcegroups/ps1119?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL3Jlc291cmNlZ3JvdXBzL3BzMTExOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2125e3fc-26b2-43b3-ba44-8dbe6e372717" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "6eac9989-30d3-4645-bca4-916085f0a7c2" + ], + "x-ms-correlation-request-id": [ + "6eac9989-30d3-4645-bca4-916085f0a7c2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210814Z:6eac9989-30d3-4645-bca4-916085f0a7c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Sep 2018 21:08:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExMTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExMTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "00d695a6-c9b6-4128-a6ba-63b57aa5648a" + ], + "x-ms-correlation-request-id": [ + "00d695a6-c9b6-4128-a6ba-63b57aa5648a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210829Z:00d695a6-c9b6-4128-a6ba-63b57aa5648a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Sep 2018 21:08:28 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExMTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExMTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "f1feba50-1a15-4c0d-9da3-ff07d1f897ad" + ], + "x-ms-correlation-request-id": [ + "f1feba50-1a15-4c0d-9da3-ff07d1f897ad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210844Z:f1feba50-1a15-4c0d-9da3-ff07d1f897ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Sep 2018 21:08:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExMTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExMTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "e5d0e47d-ce3f-4d2c-a5a7-c331fc9e152f" + ], + "x-ms-correlation-request-id": [ + "e5d0e47d-ce3f-4d2c-a5a7-c331fc9e152f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210859Z:e5d0e47d-ce3f-4d2c-a5a7-c331fc9e152f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Sep 2018 21:08:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExMTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExMTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "330d3df4-31f2-41e4-a81e-2d3c22a828ad" + ], + "x-ms-correlation-request-id": [ + "330d3df4-31f2-41e4-a81e-2d3c22a828ad" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210914Z:330d3df4-31f2-41e4-a81e-2d3c22a828ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Sep 2018 21:09:13 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExMTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExMTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "be120b96-6cad-4844-8227-54d9869b177d" + ], + "x-ms-correlation-request-id": [ + "be120b96-6cad-4844-8227-54d9869b177d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210929Z:be120b96-6cad-4844-8227-54d9869b177d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Sep 2018 21:09:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExMTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExMTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "9fdfc6b0-ab71-49e6-b943-d9b53773607b" + ], + "x-ms-correlation-request-id": [ + "9fdfc6b0-ab71-49e6-b943-d9b53773607b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210944Z:9fdfc6b0-ab71-49e6-b943-d9b53773607b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Sep 2018 21:09:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExMTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExMTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "4b70b102-1020-4ff1-aec4-d5c7afed7a7c" + ], + "x-ms-correlation-request-id": [ + "4b70b102-1020-4ff1-aec4-d5c7afed7a7c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T210959Z:4b70b102-1020-4ff1-aec4-d5c7afed7a7c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Sep 2018 21:09:58 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExMTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExMTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "4b7b45b6-1944-4d13-942f-0b8f32e32572" + ], + "x-ms-correlation-request-id": [ + "4b7b45b6-1944-4d13-942f-0b8f32e32572" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T211014Z:4b7b45b6-1944-4d13-942f-0b8f32e32572" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Sep 2018 21:10:14 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExMTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExMTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "86b47a01-3431-4c16-add2-05e4fb2f1b52" + ], + "x-ms-correlation-request-id": [ + "86b47a01-3431-4c16-add2-05e4fb2f1b52" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T211029Z:86b47a01-3431-4c16-add2-05e4fb2f1b52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Sep 2018 21:10:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExMTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExMTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "7b98b0fd-9c09-4794-b5ee-3e09a81c48c3" + ], + "x-ms-correlation-request-id": [ + "7b98b0fd-9c09-4794-b5ee-3e09a81c48c3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T211044Z:7b98b0fd-9c09-4794-b5ee-3e09a81c48c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Sep 2018 21:10:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e05dbbce-79c2-45a2-a7ef-f1058856feb3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzExMTktV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTA1ZGJiY2UtNzljMi00NWEyLWE3ZWYtZjEwNTg4NTZmZWIzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeE1Ua3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3163.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17134", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/4.1.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "b2798585-1e99-4779-b0e7-99726e1e6fb6" + ], + "x-ms-correlation-request-id": [ + "b2798585-1e99-4779-b0e7-99726e1e6fb6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20180913T211044Z:b2798585-1e99-4779-b0e7-99726e1e6fb6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 13 Sep 2018 21:10:44 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-subnetDelegationCRUD": [ + "ps1119", + "ps3817", + "ps7393", + "ps415", + "ps1305" + ] + }, + "Variables": { + "SubscriptionId": "e05dbbce-79c2-45a2-a7ef-f1058856feb3" + } +} \ No newline at end of file From a4fdbd8e5e5de3b2e2bf268289c9c0170c25ff25 Mon Sep 17 00:00:00 2001 From: Rupali Vohra Date: Thu, 13 Sep 2018 08:30:58 -0700 Subject: [PATCH 05/11] Adding psm1 to try and fix build --- tools/AzureRM/AzureRM.psm1 | Bin 0 -> 9610 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 tools/AzureRM/AzureRM.psm1 diff --git a/tools/AzureRM/AzureRM.psm1 b/tools/AzureRM/AzureRM.psm1 new file mode 100644 index 0000000000000000000000000000000000000000..2d09c68903fc0d94d284d527c3df666c29364e6c GIT binary patch literal 9610 zcmcIqYi}Dx6uqC3_z$L7YARt9Cw(On5_vSKMUqxc3LgMfe#JF$YoswG*R#m-V`pb)&Yb(4x&G(xucd<5m-2=1*Qt!9EAM3}JzQN&OGYw~OI%GQMaw1b zCwgbT-+kGWKk!t7ey=dbee}r2%zho?{s`{`-wl2E$L$xu58u34`=gkM$Aint3&@riuXo&oB|6u{h(}1FJS>z*43fai1T36_9Wq48P;*DnEe|Kg2epH}*VBv)#{?Qh{m*Q<2_)3~zPtq@ zznmK2hBh3F={;s0tDnof%WAzfTZyw5V`U#)bmR)QIdRE@7DGLy?}}YL=T0&ETldUl zJzf*`A@8AT!U%HrXrZl`YkwTQ>I3*c#t@&BIdlAq8OQpVbpXBx@JhY4{nJiKvL_-& z6zadvSBDs}Re}Tf<# z(X$VH%mWf+Ngkc0g_^a*`-emI4=p*uH**%o_5m>YyfpR2mYYH_CkGn7+&Y!A!?Jj^gDC7m-$W_j|e}JXY1BN}RhjnVb#VYoW$>dM4ZpNh!{NJQN z-dc{&<4%S-tHtdTFu}bxbE{(6M59y+84Z=Sp1eR? z7o0JY7vYPVQwCc+eHZ|XM`Ota_c>)m$}_Avm5&-7uUxa!M?S$j-b#_U`;J{IIHcppf7ESR4ql9)4kJ9Erq;O@Sy`9R0bhh?&5NaP)K(PM$; zCCbU$!!FrhrwG;;zhmUw33R`O$g?`K=C#DSXxhS6QE_+?!Q8|I~UR z>$7~ZBFk#!f$r9Z@ViZ1v;I`U6INTDAICdaMgGDFN5GXJL$fGa!_KBHzhQKqR8}O9 zBp|BePF3DOUPl@OhH{4ISq~#uq1UZm*(ckp=*@}+vD0?DT9>}Yb37~Vs{MS2r@#MH z@#Ry2^(ruqkiqT3-VgA4gZBy0zQ)-JHH?*6q8iN*S Date: Thu, 13 Sep 2018 22:20:19 -0700 Subject: [PATCH 06/11] Update Commands.Network.csproj --- .../Network/Commands.Network/Commands.Network.csproj | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj b/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj index d086505372a9..e5bc30995a0c 100644 --- a/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj +++ b/src/ResourceManager/Network/Commands.Network/Commands.Network.csproj @@ -599,7 +599,6 @@ - @@ -746,4 +745,4 @@ - \ No newline at end of file + From 4ddeaa6cf1ed82cd2b4adb6a9d3b1d5c91dab164 Mon Sep 17 00:00:00 2001 From: Maddie Clayton Date: Thu, 13 Sep 2018 22:25:27 -0700 Subject: [PATCH 07/11] Update Set-AzureRmVirtualNetworkSubnetConfig.md --- .../help/Set-AzureRmVirtualNetworkSubnetConfig.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkSubnetConfig.md b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkSubnetConfig.md index 950f5098a67e..8efdd3c6d162 100644 --- a/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkSubnetConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/Set-AzureRmVirtualNetworkSubnetConfig.md @@ -119,7 +119,7 @@ Accept wildcard characters: False ``` ### -Delegation -Delegations +List of services that have permission to perform operations on this subnet. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation] From 912fded794fa177efc782d4ac1248a6f75615df6 Mon Sep 17 00:00:00 2001 From: Maddie Clayton Date: Thu, 13 Sep 2018 22:26:06 -0700 Subject: [PATCH 08/11] Update New-AzureRmVirtualNetworkSubnetConfig.md --- .../help/New-AzureRmVirtualNetworkSubnetConfig.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkSubnetConfig.md b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkSubnetConfig.md index d28350133317..c4bb2dda6c6a 100644 --- a/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkSubnetConfig.md +++ b/src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkSubnetConfig.md @@ -101,7 +101,7 @@ Accept wildcard characters: False ``` ### -Delegation -Delegations +List of services that have permission to perform operations on this subnet. ```yaml Type: System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation] From c4ab0842be5ea8227c94af4be6de560ca13e3656 Mon Sep 17 00:00:00 2001 From: Maddie Clayton Date: Thu, 13 Sep 2018 23:07:43 -0700 Subject: [PATCH 09/11] Update Mappings.cs --- .../Commands.Profile/AzureRmAlias/Mappings.cs | 1320 ----------------- 1 file changed, 1320 deletions(-) diff --git a/src/ResourceManager/Profile/Commands.Profile/AzureRmAlias/Mappings.cs b/src/ResourceManager/Profile/Commands.Profile/AzureRmAlias/Mappings.cs index 41d2bc419547..9dff7c78282b 100644 --- a/src/ResourceManager/Profile/Commands.Profile/AzureRmAlias/Mappings.cs +++ b/src/ResourceManager/Profile/Commands.Profile/AzureRmAlias/Mappings.cs @@ -2383,1326 +2383,6 @@ public static Dictionary GetCaseInsensitiveMapping() 'Remove-AzNotificationHubsNamespace': 'Remove-AzureRmNotificationHubsNamespace' } } - - }, - 'Az.DataLakeAnalytics': { - 'Get-AzDataLakeAnalyticsJobRecurrence': 'Get-AzureRmDataLakeAnalyticsJobRecurrence', - 'Set-AzDataLakeAnalyticsFirewallRule': 'Set-AzureRmDataLakeAnalyticsFirewallRule', - 'Set-AzDataLakeAnalyticsCatalogItemAclEntry': 'Set-AzureRmDataLakeAnalyticsCatalogItemAclEntry', - 'Get-AzDataLakeAnalyticsDataSource': 'Get-AzureRmDataLakeAnalyticsDataSource', - 'Stop-AzDataLakeAnalyticsJob': 'Stop-AzureRmDataLakeAnalyticsJob', - 'Get-AzDataLakeAnalyticsCatalogItem': 'Get-AzureRmDataLakeAnalyticsCatalogItem', - 'Get-AzDataLakeAnalyticsCatalogItemAclEntry': 'Get-AzureRmDataLakeAnalyticsCatalogItemAclEntry', - 'Remove-AzDataLakeAnalyticsDataSource': 'Remove-AzureRmDataLakeAnalyticsDataSource', - 'Submit-AzDataLakeAnalyticsJob': 'Submit-AzureRmDataLakeAnalyticsJob', - 'New-AzDataLakeAnalyticsCatalogSecret': 'New-AzureRmDataLakeAnalyticsCatalogSecret', - 'Test-AzDataLakeAnalyticsCatalogItem': 'Test-AzureRmDataLakeAnalyticsCatalogItem', - 'Remove-AzDataLakeAnalyticsFirewallRule': 'Remove-AzureRmDataLakeAnalyticsFirewallRule', - 'Get-AzDataLakeAnalyticsJob': 'Get-AzureRmDataLakeAnalyticsJob', - 'Get-AzDataLakeAnalyticsFirewallRule': 'Get-AzureRmDataLakeAnalyticsFirewallRule', - 'Remove-AzDataLakeAnalyticsCatalogSecret': 'Remove-AzureRmDataLakeAnalyticsCatalogSecret', - 'Test-AzDataLakeAnalyticsAccount': 'Test-AzureRmDataLakeAnalyticsAccount', - 'Set-AzDataLakeAnalyticsCatalogCredential': 'Set-AzureRmDataLakeAnalyticsCatalogCredential', - 'Remove-AzDataLakeAnalyticsAccount': 'Remove-AzureRmDataLakeAnalyticsAccount', - 'Update-AzDataLakeAnalyticsComputePolicy': 'Update-AzureRmDataLakeAnalyticsComputePolicy', - 'Get-AzDataLakeAnalyticsAccount': 'Get-AzureRmDataLakeAnalyticsAccount', - 'Get-AzDataLakeAnalyticsComputePolicy': 'Get-AzureRmDataLakeAnalyticsComputePolicy', - 'Get-AzDataLakeAnalyticsJobPipeline': 'Get-AzureRmDataLakeAnalyticsJobPipeline', - 'Add-AzDataLakeAnalyticsDataSource': 'Add-AzureRmDataLakeAnalyticsDataSource', - 'Remove-AzDataLakeAnalyticsCatalogItemAclEntry': 'Remove-AzureRmDataLakeAnalyticsCatalogItemAclEntry', - 'Add-AzDataLakeAnalyticsFirewallRule': 'Add-AzureRmDataLakeAnalyticsFirewallRule', - 'Remove-AzDataLakeAnalyticsCatalogCredential': 'Remove-AzureRmDataLakeAnalyticsCatalogCredential', - 'New-AzDataLakeAnalyticsAccount': 'New-AzureRmDataLakeAnalyticsAccount', - 'Set-AzDataLakeAnalyticsCatalogSecret': 'Set-AzureRmDataLakeAnalyticsCatalogSecret', - 'New-AzDataLakeAnalyticsCatalogCredential': 'New-AzureRmDataLakeAnalyticsCatalogCredential', - 'Set-AzDataLakeAnalyticsDataSource': 'Set-AzureRmDataLakeAnalyticsDataSource', - 'Wait-AzDataLakeAnalyticsJob': 'Wait-AzureRmDataLakeAnalyticsJob', - 'Remove-AzDataLakeAnalyticsComputePolicy': 'Remove-AzureRmDataLakeAnalyticsComputePolicy', - 'Set-AzDataLakeAnalyticsAccount': 'Set-AzureRmDataLakeAnalyticsAccount', - 'New-AzDataLakeAnalyticsComputePolicy': 'New-AzureRmDataLakeAnalyticsComputePolicy' - }, - 'Az.MachineLearning': { - 'New-AzMlWebService': 'New-AzureRmMlWebService', - 'Get-AzMlWebService': 'Get-AzureRmMlWebService', - 'Import-AzMlWebService': 'Import-AzureRmMlWebService', - 'Get-AzMlCommitmentAssociation': 'Get-AzureRmMlCommitmentAssociation', - 'Update-AzMlCommitmentPlan': 'Update-AzureRmMlCommitmentPlan', - 'Update-AzMlWebService': 'Update-AzureRmMlWebService', - 'Get-AzMlWebServiceKeys': 'Get-AzureRmMlWebServiceKeys', - 'Get-AzMlCommitmentPlanUsageHistory': 'Get-AzureRmMlCommitmentPlanUsageHistory', - 'Add-AzMlWebServiceRegionalProperty': 'Add-AzureRmMlWebServiceRegionalProperty', - 'New-AzMlCommitmentPlan': 'New-AzureRmMlCommitmentPlan', - 'Get-AzMlCommitmentPlan': 'Get-AzureRmMlCommitmentPlan', - 'Remove-AzMlWebService': 'Remove-AzureRmMlWebService', - 'Move-AzMlCommitmentAssociation': 'Move-AzureRmMlCommitmentAssociation', - 'Export-AzMlWebService': 'Export-AzureRmMlWebService', - 'Remove-AzMlCommitmentPlan': 'Remove-AzureRmMlCommitmentPlan' - }, - 'Az.DataLakeStore': { - 'Get-AzDataLakeStoreChildItemSummary': 'Get-AzureRmDataLakeStoreChildItemSummary', - 'Set-AzDataLakeStoreItemPermission': 'Set-AzureRmDataLakeStoreItemPermission', - 'Add-AzDataLakeStoreItemContent': 'Add-AzureRmDataLakeStoreItemContent', - 'Get-AzDataLakeStoreChildItem': 'Get-AzureRmDataLakeStoreChildItem', - 'Get-AzDataLakeStoreItem': 'Get-AzureRmDataLakeStoreItem', - 'Set-AzDataLakeStoreItemExpiry': 'Set-AzureRmDataLakeStoreItemExpiry', - 'Remove-AzDataLakeStoreAccount': 'Remove-AzureRmDataLakeStoreAccount', - 'Get-AzDataLakeStoreFirewallRule': 'Get-AzureRmDataLakeStoreFirewallRule', - 'New-AzDataLakeStoreAccount': 'New-AzureRmDataLakeStoreAccount', - 'Remove-AzDataLakeStoreFirewallRule': 'Remove-AzureRmDataLakeStoreFirewallRule', - 'Add-AzDataLakeStoreFirewallRule': 'Add-AzureRmDataLakeStoreFirewallRule', - 'Join-AzDataLakeStoreItem': 'Join-AzureRmDataLakeStoreItem', - 'Import-AzDataLakeStoreItem': 'Import-AzureRmDataLakeStoreItem', - 'Remove-AzDataLakeStoreItemAclEntry': 'Remove-AzureRmDataLakeStoreItemAclEntry', - 'Set-AzDataLakeStoreItemOwner': 'Set-AzureRmDataLakeStoreItemOwner', - 'Remove-AzDataLakeStoreTrustedIdProvider': 'Remove-AzureRmDataLakeStoreTrustedIdProvider', - 'Enable-AzDataLakeStoreKeyVault': 'Enable-AzureRmDataLakeStoreKeyVault', - 'Set-AzDataLakeStoreAccount': 'Set-AzureRmDataLakeStoreAccount', - 'Add-AzDataLakeStoreTrustedIdProvider': 'Add-AzureRmDataLakeStoreTrustedIdProvider', - 'Get-AzDataLakeStoreItemPermission': 'Get-AzureRmDataLakeStoreItemPermission', - 'Remove-AzDataLakeStoreItem': 'Remove-AzureRmDataLakeStoreItem', - 'New-AzDataLakeStoreItem': 'New-AzureRmDataLakeStoreItem', - 'Export-AzDataLakeStoreItem': 'Export-AzureRmDataLakeStoreItem', - 'Move-AzDataLakeStoreItem': 'Move-AzureRmDataLakeStoreItem', - 'Get-AzDataLakeStoreItemOwner': 'Get-AzureRmDataLakeStoreItemOwner', - 'Get-AzDataLakeStoreAccount': 'Get-AzureRmDataLakeStoreAccount', - 'Set-AzDataLakeStoreItemAcl': 'Set-AzureRmDataLakeStoreItemAcl', - 'Get-AzDataLakeStoreItemAclEntry': 'Get-AzureRmDataLakeStoreItemAclEntry', - 'Test-AzDataLakeStoreAccount': 'Test-AzureRmDataLakeStoreAccount', - 'Export-AzDataLakeStoreChildItemProperties': 'Export-AzureRmDataLakeStoreChildItemProperties', - 'Get-AzDataLakeStoreItemContent': 'Get-AzureRmDataLakeStoreItemContent', - 'Set-AzDataLakeStoreFirewallRule': 'Set-AzureRmDataLakeStoreFirewallRule', - 'Get-AzDataLakeStoreTrustedIdProvider': 'Get-AzureRmDataLakeStoreTrustedIdProvider', - 'Set-AzDataLakeStoreItemAclEntry': 'Set-AzureRmDataLakeStoreItemAclEntry', - 'Set-AzDataLakeStoreTrustedIdProvider': 'Set-AzureRmDataLakeStoreTrustedIdProvider', - 'Test-AzDataLakeStoreItem': 'Test-AzureRmDataLakeStoreItem', - 'Remove-AzDataLakeStoreItemAcl': 'Remove-AzureRmDataLakeStoreItemAcl' - }, - 'Az.OperationalInsights': { - 'Get-AzOperationalInsightsSavedSearch': 'Get-AzureRmOperationalInsightsSavedSearch', - 'New-AzOperationalInsightsWindowsPerformanceCounterDataSource': 'New-AzureRmOperationalInsightsWindowsPerformanceCounterDataSource', - 'Remove-AzOperationalInsightsWorkspace': 'Remove-AzureRmOperationalInsightsWorkspace', - 'Remove-AzOperationalInsightsSavedSearch': 'Remove-AzureRmOperationalInsightsSavedSearch', - 'New-AzOperationalInsightsStorageInsight': 'New-AzureRmOperationalInsightsStorageInsight', - 'Get-AzOperationalInsightsWorkspaceManagementGroups': 'Get-AzureRmOperationalInsightsWorkspaceManagementGroups', - 'Remove-AzOperationalInsightsStorageInsight': 'Remove-AzureRmOperationalInsightsStorageInsight', - 'New-AzOperationalInsightsLinuxSyslogDataSource': 'New-AzureRmOperationalInsightsLinuxSyslogDataSource', - 'New-AzOperationalInsightsWorkspace': 'New-AzureRmOperationalInsightsWorkspace', - 'Set-AzOperationalInsightsWorkspace': 'Set-AzureRmOperationalInsightsWorkspace', - 'Get-AzOperationalInsightsIntelligencePacks': 'Get-AzureRmOperationalInsightsIntelligencePacks', - 'New-AzOperationalInsightsCustomLogDataSource': 'New-AzureRmOperationalInsightsCustomLogDataSource', - 'Get-AzOperationalInsightsSearchResults': 'Get-AzureRmOperationalInsightsSearchResults', - 'Disable-AzOperationalInsightsLinuxSyslogCollection': 'Disable-AzureRmOperationalInsightsLinuxSyslogCollection', - 'Set-AzOperationalInsightsIntelligencePack': 'Set-AzureRmOperationalInsightsIntelligencePack', - 'New-AzOperationalInsightsSavedSearch': 'New-AzureRmOperationalInsightsSavedSearch', - 'Get-AzOperationalInsightsWorkspace': 'Get-AzureRmOperationalInsightsWorkspace', - 'Set-AzOperationalInsightsStorageInsight': 'Set-AzureRmOperationalInsightsStorageInsight', - 'Enable-AzOperationalInsightsLinuxSyslogCollection': 'Enable-AzureRmOperationalInsightsLinuxSyslogCollection', - 'Get-AzOperationalInsightsSavedSearchResults': 'Get-AzureRmOperationalInsightsSavedSearchResults', - 'Disable-AzOperationalInsightsLinuxPerformanceCollection': 'Disable-AzureRmOperationalInsightsLinuxPerformanceCollection', - 'Set-AzOperationalInsightsDataSource': 'Set-AzureRmOperationalInsightsDataSource', - 'New-AzOperationalInsightsComputerGroup': 'New-AzureRmOperationalInsightsComputerGroup', - 'New-AzOperationalInsightsAzureActivityLogDataSource': 'New-AzureRmOperationalInsightsAzureActivityLogDataSource', - 'Remove-AzOperationalInsightsDataSource': 'Remove-AzureRmOperationalInsightsDataSource', - 'Disable-AzOperationalInsightsIISLogCollection': 'Disable-AzureRmOperationalInsightsIISLogCollection', - 'Get-AzOperationalInsightsWorkspaceSharedKeys': 'Get-AzureRmOperationalInsightsWorkspaceSharedKeys', - 'Enable-AzOperationalInsightsIISLogCollection': 'Enable-AzureRmOperationalInsightsIISLogCollection', - 'Get-AzOperationalInsightsSchema': 'Get-AzureRmOperationalInsightsSchema', - 'New-AzOperationalInsightsAzureAuditDataSource': 'New-AzureRmOperationalInsightsAzureAuditDataSource', - 'Enable-AzOperationalInsightsLinuxCustomLogCollection': 'Enable-AzureRmOperationalInsightsLinuxCustomLogCollection', - 'Invoke-AzOperationalInsightsQuery': 'Invoke-AzureRmOperationalInsightsQuery', - 'Get-AzOperationalInsightsStorageInsight': 'Get-AzureRmOperationalInsightsStorageInsight', - 'New-AzOperationalInsightsWindowsEventDataSource': 'New-AzureRmOperationalInsightsWindowsEventDataSource', - 'Get-AzOperationalInsightsWorkspaceUsage': 'Get-AzureRmOperationalInsightsWorkspaceUsage', - 'Get-AzOperationalInsightsLinkTargets': 'Get-AzureRmOperationalInsightsLinkTargets', - 'Get-AzOperationalInsightsDataSource': 'Get-AzureRmOperationalInsightsDataSource', - 'Set-AzOperationalInsightsSavedSearch': 'Set-AzureRmOperationalInsightsSavedSearch', - 'Enable-AzOperationalInsightsLinuxPerformanceCollection': 'Enable-AzureRmOperationalInsightsLinuxPerformanceCollection', - 'New-AzOperationalInsightsLinuxPerformanceObjectDataSource': 'New-AzureRmOperationalInsightsLinuxPerformanceObjectDataSource', - 'Disable-AzOperationalInsightsLinuxCustomLogCollection': 'Disable-AzureRmOperationalInsightsLinuxCustomLogCollection' - }, - 'Az.PowerBIEmbedded': { - 'Resume-AzPowerBIEmbeddedCapacity': 'Resume-AzureRmPowerBIEmbeddedCapacity', - 'New-AzPowerBIWorkspaceCollection': 'New-AzureRmPowerBIWorkspaceCollection', - 'Remove-AzPowerBIWorkspaceCollection': 'Remove-AzureRmPowerBIWorkspaceCollection', - 'Get-AzPowerBIEmbeddedCapacity': 'Get-AzureRmPowerBIEmbeddedCapacity', - 'Get-AzPowerBIWorkspaceCollection': 'Get-AzureRmPowerBIWorkspaceCollection', - 'Test-AzPowerBIEmbeddedCapacity': 'Test-AzureRmPowerBIEmbeddedCapacity', - 'New-AzPowerBIEmbeddedCapacity': 'New-AzureRmPowerBIEmbeddedCapacity', - 'Get-AzPowerBIWorkspace': 'Get-AzureRmPowerBIWorkspace', - 'Remove-AzPowerBIEmbeddedCapacity': 'Remove-AzureRmPowerBIEmbeddedCapacity', - 'Reset-AzPowerBIWorkspaceCollectionAccessKeys': 'Reset-AzureRmPowerBIWorkspaceCollectionAccessKeys', - 'Get-AzPowerBIWorkspaceCollectionAccessKeys': 'Get-AzureRmPowerBIWorkspaceCollectionAccessKeys', - 'Suspend-AzPowerBIEmbeddedCapacity': 'Suspend-AzureRmPowerBIEmbeddedCapacity', - 'Update-AzPowerBIEmbeddedCapacity': 'Update-AzureRmPowerBIEmbeddedCapacity' - }, - 'Az.Tags': { - 'Remove-AzTag': 'Remove-AzureRmTag', - 'Get-AzTag': 'Get-AzureRmTag', - 'New-AzTag': 'New-AzureRmTag' - }, - 'Az.Media': { - 'New-AzMediaService': 'New-AzureRmMediaService', - 'Set-AzMediaService': 'Set-AzureRmMediaService', - 'Get-AzMediaService': 'Get-AzureRmMediaService', - 'New-AzMediaServiceStorageConfig': 'New-AzureRmMediaServiceStorageConfig', - 'Get-AzMediaServiceKeys': 'Get-AzureRmMediaServiceKeys', - 'Remove-AzMediaService': 'Remove-AzureRmMediaService', - 'Set-AzMediaServiceKey': 'Set-AzureRmMediaServiceKey', - 'Get-AzMediaServiceNameAvailability': 'Get-AzureRmMediaServiceNameAvailability', - 'Sync-AzMediaServiceStorageKeys': 'Sync-AzureRmMediaServiceStorageKeys' - }, - 'Az.Storage': { - 'New-AzStorageQueueSASToken': 'New-AzureStorageQueueSASToken', - 'Get-AzRmStorageContainer': 'Get-AzureRmStorageContainer', - 'Get-AzStorageFileContent': 'Get-AzureStorageFileContent', - 'Remove-AzStorageFile': 'Remove-AzureStorageFile', - 'Set-AzCurrentStorageAccount': 'Set-AzureRmCurrentStorageAccount', - 'Get-AzStorageUsage': 'Get-AzureRmStorageUsage', - 'Get-AzStorageQueue': 'Get-AzureStorageQueue', - 'Enable-AzStorageDeleteRetentionPolicy': 'Enable-AzureStorageDeleteRetentionPolicy', - 'Update-AzStorageServiceProperty': 'Update-AzureStorageServiceProperty', - 'Start-CopyAzureStorageBlob': 'Start-CopyAzureStorageBlob', - 'Get-AzStorageTable': 'Get-AzureStorageTable', - 'Set-AzStorageCORSRule': 'Set-AzureStorageCORSRule', - 'Get-AzStorageCORSRule': 'Get-AzureStorageCORSRule', - 'Stop-AzStorageBlobCopy': 'Stop-AzureStorageBlobCopy', - 'Stop-AzStorageFileCopy': 'Stop-AzureStorageFileCopy', - 'Get-AzStorageAccountNameAvailability': 'Get-AzureRmStorageAccountNameAvailability', - 'Get-AzStorageAccountNetworkRuleSet': 'Get-AzureRmStorageAccountNetworkRuleSet', - 'Remove-AzStorageQueue': 'Remove-AzureStorageQueue', - 'New-AzStorageTable': 'New-AzureStorageTable', - 'Remove-AzStorageShare': 'Remove-AzureStorageShare', - 'Set-AzStorageShareQuota': 'Set-AzureStorageShareQuota', - 'Get-AzStorageBlobContent': 'Get-AzureStorageBlobContent', - 'Update-AzRmStorageContainer': 'Update-AzureRmStorageContainer', - 'New-AzStorageDirectory': 'New-AzureStorageDirectory', - 'New-AzStorageTableSASToken': 'New-AzureStorageTableSASToken', - 'Set-AzStorageAccount': 'Set-AzureRmStorageAccount', - 'New-AzStorageQueue': 'New-AzureStorageQueue', - 'Remove-AzStorageTable': 'Remove-AzureStorageTable', - 'Get-AzStorageFile': 'Get-AzureStorageFile', - 'Get-AzStorageShareStoredAccessPolicy': 'Get-AzureStorageShareStoredAccessPolicy', - 'Set-AzStorageContainerAcl': 'Set-AzureStorageContainerAcl', - 'Remove-AzRmStorageContainer': 'Remove-AzureRmStorageContainer', - 'Update-AzStorageAccountNetworkRuleSet': 'Update-AzureRmStorageAccountNetworkRuleSet', - 'Set-AzStorageBlobContent': 'Set-AzureStorageBlobContent', - 'Start-AzStorageBlobCopy': 'Start-AzureStorageBlobCopy', - 'Set-AzStorageQueueStoredAccessPolicy': 'Set-AzureStorageQueueStoredAccessPolicy', - 'New-AzStorageAccount': 'New-AzureRmStorageAccount', - 'New-AzStorageAccountSASToken': 'New-AzureStorageAccountSASToken', - 'Get-AzStorageBlob': 'Get-AzureStorageBlob', - 'New-AzStorageContainer': 'New-AzureStorageContainer', - 'New-AzRmStorageContainer': 'New-AzureRmStorageContainer', - 'Get-AzStorageContainer': 'Get-AzureStorageContainer', - 'Get-AzStorageTableStoredAccessPolicy': 'Get-AzureStorageTableStoredAccessPolicy', - 'New-AzStorageContext': 'New-AzureStorageContext', - 'Enable-AzStorageSoftDelete': 'Enable-AzureStorageSoftDelete', - 'Remove-AzStorageShareStoredAccessPolicy': 'Remove-AzureStorageShareStoredAccessPolicy', - 'Get-AzStorageQueueStoredAccessPolicy': 'Get-AzureStorageQueueStoredAccessPolicy', - 'New-AzStorageFileSASToken': 'New-AzureStorageFileSASToken', - 'Remove-AzStorageAccountNetworkRule': 'Remove-AzureRmStorageAccountNetworkRule', - 'Set-AzStorageServiceLoggingProperty': 'Set-AzureStorageServiceLoggingProperty', - 'Get-AzRmStorageContainerImmutabilityPolicy': 'Get-AzureRmStorageContainerImmutabilityPolicy', - 'New-AzStorageTableStoredAccessPolicy': 'New-AzureStorageTableStoredAccessPolicy', - 'Add-AzStorageAccountNetworkRule': 'Add-AzureRmStorageAccountNetworkRule', - 'Disable-AzStorageSoftDelete': 'Disable-AzureStorageSoftDelete', - 'Remove-AzRmStorageContainerImmutabilityPolicy': 'Remove-AzureRmStorageContainerImmutabilityPolicy', - 'Set-AzStorageTableStoredAccessPolicy': 'Set-AzureStorageTableStoredAccessPolicy', - 'Remove-AzStorageQueueStoredAccessPolicy': 'Remove-AzureStorageQueueStoredAccessPolicy', - 'Set-AzStorageContainerStoredAccessPolicy': 'Set-AzureStorageContainerStoredAccessPolicy', - 'Remove-AzStorageAccount': 'Remove-AzureRmStorageAccount', - 'Get-AzStorageServiceMetricsProperty': 'Get-AzureStorageServiceMetricsProperty', - 'New-AzStorageContainerStoredAccessPolicy': 'New-AzureStorageContainerStoredAccessPolicy', - 'Lock-AzRmStorageContainerImmutabilityPolicy': 'Lock-AzureRmStorageContainerImmutabilityPolicy', - 'Add-AzRmStorageContainerLegalHold': 'Add-AzureRmStorageContainerLegalHold', - 'Remove-AzStorageBlob': 'Remove-AzureStorageBlob', - 'Remove-AzStorageContainerStoredAccessPolicy': 'Remove-AzureStorageContainerStoredAccessPolicy', - 'Remove-AzRmStorageContainerLegalHold': 'Remove-AzureRmStorageContainerLegalHold', - 'Remove-AzStorageTableStoredAccessPolicy': 'Remove-AzureStorageTableStoredAccessPolicy', - 'Start-AzStorageFileCopy': 'Start-AzureStorageFileCopy', - 'New-AzStorageAccountKey': 'New-AzureRmStorageAccountKey', - 'New-AzStorageShareStoredAccessPolicy': 'New-AzureStorageShareStoredAccessPolicy', - 'Stop-CopyAzureStorageBlob': 'Stop-CopyAzureStorageBlob', - 'Disable-AzStorageDeleteRetentionPolicy': 'Disable-AzureStorageDeleteRetentionPolicy', - 'Set-AzStorageServiceMetricsProperty': 'Set-AzureStorageServiceMetricsProperty', - 'New-AzStorageContainerSASToken': 'New-AzureStorageContainerSASToken', - 'New-AzStorageShare': 'New-AzureStorageShare', - 'Get-AzStorageServiceLoggingProperty': 'Get-AzureStorageServiceLoggingProperty', - 'New-AzStorageQueueStoredAccessPolicy': 'New-AzureStorageQueueStoredAccessPolicy', - 'Get-AzStorageServiceProperty': 'Get-AzureStorageServiceProperty', - 'New-AzStorageBlobSASToken': 'New-AzureStorageBlobSASToken', - 'Remove-AzStorageCORSRule': 'Remove-AzureStorageCORSRule', - 'Set-AzStorageFileContent': 'Set-AzureStorageFileContent', - 'New-AzStorageShareSASToken': 'New-AzureStorageShareSASToken', - 'Get-AzStorageAccountKey': 'Get-AzureRmStorageAccountKey', - 'Remove-AzStorageDirectory': 'Remove-AzureStorageDirectory', - 'Get-AzStorageContainerAcl': 'Get-AzureStorageContainerAcl', - 'Get-AzStorageBlobCopyState': 'Get-AzureStorageBlobCopyState', - 'Set-AzStorageShareStoredAccessPolicy': 'Set-AzureStorageShareStoredAccessPolicy', - 'Get-AzStorageContainerStoredAccessPolicy': 'Get-AzureStorageContainerStoredAccessPolicy', - 'Get-AzStorageShare': 'Get-AzureStorageShare', - 'Remove-AzStorageContainer': 'Remove-AzureStorageContainer', - 'Start-AzStorageBlobIncrementalCopy': 'Start-AzureStorageBlobIncrementalCopy', - 'Get-AzStorageFileCopyState': 'Get-AzureStorageFileCopyState', - 'Get-AzStorageAccount': 'Get-AzureRmStorageAccount', - 'Set-AzRmStorageContainerImmutabilityPolicy': 'Set-AzureRmStorageContainerImmutabilityPolicy' - }, - 'Az.Insights': { - 'Remove-AzAlertRule': 'Remove-AzureRmAlertRule', - 'Get-AzDiagnosticSetting': 'Get-AzureRmDiagnosticSetting', - 'New-AzAlertRuleEmail': 'New-AzureRmAlertRuleEmail', - 'Get-AzMetric': 'Get-AzureRmMetric', - 'Get-AzLogProfile': 'Get-AzureRmLogProfile', - 'Get-AzMetricDefinition': 'Get-AzureRmMetricDefinition', - 'New-AzAutoscaleRule': 'New-AzureRmAutoscaleRule', - 'Get-AzAutoscaleHistory': 'Get-AzureRmAutoscaleHistory', - 'New-AzActivityLogAlertCondition': 'New-AzureRmActivityLogAlertCondition', - 'Set-AzActionGroup': 'Set-AzureRmActionGroup', - 'New-AzActionGroupReceiver': 'New-AzureRmActionGroupReceiver', - 'Add-AzLogProfile': 'Add-AzureRmLogProfile', - 'Get-AzLog': 'Get-AzureRmLog', - 'Get-AzActionGroup': 'Get-AzureRmActionGroup', - 'Remove-AzActionGroup': 'Remove-AzureRmActionGroup', - 'Add-AzWebtestAlertRule': 'Add-AzureRmWebtestAlertRule', - 'New-AzAutoscaleNotification': 'New-AzureRmAutoscaleNotification', - 'Remove-AzDiagnosticSetting': 'Remove-AzureRmDiagnosticSetting', - 'Enable-AzActivityLogAlert': 'Enable-AzureRmActivityLogAlert', - 'Get-AzAutoscaleSetting': 'Get-AzureRmAutoscaleSetting', - 'Set-AzDiagnosticSetting': 'Set-AzureRmDiagnosticSetting', - 'Add-AzAutoscaleSetting': 'Add-AzureRmAutoscaleSetting', - 'New-AzActionGroup': 'New-AzureRmActionGroup', - 'New-AzAutoscaleProfile': 'New-AzureRmAutoscaleProfile', - 'Set-AzActivityLogAlert': 'Set-AzureRmActivityLogAlert', - 'New-AzAutoscaleWebhook': 'New-AzureRmAutoscaleWebhook', - 'Get-AzActivityLogAlert': 'Get-AzureRmActivityLogAlert', - 'Get-AzAlertHistory': 'Get-AzureRmAlertHistory', - 'New-AzAlertRuleWebhook': 'New-AzureRmAlertRuleWebhook', - 'Remove-AzLogProfile': 'Remove-AzureRmLogProfile', - 'Remove-AzActivityLogAlert': 'Remove-AzureRmActivityLogAlert', - 'Remove-AzAutoscaleSetting': 'Remove-AzureRmAutoscaleSetting', - 'Add-AzMetricAlertRule': 'Add-AzureRmMetricAlertRule', - 'Get-AzAlertRule': 'Get-AzureRmAlertRule', - 'New-AzMetricFilter': 'New-AzureRmMetricFilter', - 'Disable-AzActivityLogAlert': 'Disable-AzureRmActivityLogAlert' - }, - 'Az.MarketplaceOrdering': { - 'Get-AzMarketplaceTerms': 'Get-AzureRmMarketplaceTerms', - 'Set-AzMarketplaceTerms': 'Set-AzureRmMarketplaceTerms' - }, - 'Az.Cdn': { - 'Get-AzCdnCustomDomain': 'Get-AzureRmCdnCustomDomain', - 'New-AzCdnEndpoint': 'New-AzureRmCdnEndpoint', - 'Start-AzCdnEndpoint': 'Start-AzureRmCdnEndpoint', - 'Confirm-AzCdnEndpointProbeUrl': 'Confirm-AzureRmCdnEndpointProbeUrl', - 'Get-AzCdnEndpoint': 'Get-AzureRmCdnEndpoint', - 'Get-AzCdnProfileResourceUsage': 'Get-AzureRmCdnProfileResourceUsage', - 'Enable-AzCdnCustomDomain': 'Enable-AzureRmCdnCustomDomain', - 'Get-AzCdnOrigin': 'Get-AzureRmCdnOrigin', - 'Get-AzCdnProfile': 'Get-AzureRmCdnProfile', - 'New-AzCdnProfile': 'New-AzureRmCdnProfile', - 'Remove-AzCdnCustomDomain': 'Remove-AzureRmCdnCustomDomain', - 'Get-AzCdnEndpointNameAvailability': 'Get-AzureRmCdnEndpointNameAvailability', - 'Get-AzCdnProfileSsoUrl': 'Get-AzureRmCdnProfileSsoUrl', - 'Publish-AzCdnEndpointContent': 'Publish-AzureRmCdnEndpointContent', - 'New-AzCdnCustomDomain': 'New-AzureRmCdnCustomDomain', - 'Unpublish-AzCdnEndpointContent': 'Unpublish-AzureRmCdnEndpointContent', - 'Test-AzCdnCustomDomain': 'Test-AzureRmCdnCustomDomain', - 'Disable-AzCdnCustomDomain': 'Disable-AzureRmCdnCustomDomain', - 'Validate-AzCdnCustomDomain': 'Validate-AzureRmCdnCustomDomain', - 'Get-AzCdnEdgeNodes': 'Get-AzureRmCdnEdgeNodes', - 'Get-AzCdnSubscriptionResourceUsage': 'Get-AzureRmCdnSubscriptionResourceUsage', - 'Stop-AzCdnEndpoint': 'Stop-AzureRmCdnEndpoint', - 'Remove-AzCdnProfile': 'Remove-AzureRmCdnProfile', - 'Get-AzCdnEndpointResourceUsage': 'Get-AzureRmCdnEndpointResourceUsage', - 'Remove-AzCdnEndpoint': 'Remove-AzureRmCdnEndpoint', - 'Set-AzCdnOrigin': 'Set-AzureRmCdnOrigin', - 'Set-AzCdnEndpoint': 'Set-AzureRmCdnEndpoint', - 'Get-AzCdnProfileSupportedOptimizationType': 'Get-AzureRmCdnProfileSupportedOptimizationType', - 'Set-AzCdnProfile': 'Set-AzureRmCdnProfile' - }, - 'Az.RecoveryServices.SiteRecovery': { - 'Get-AzRecoveryServicesAsrProtectionContainerMapping': 'Get-AzureRmRecoveryServicesAsrProtectionContainerMapping', - 'Remove-AzRecoveryServicesAsrNetworkMapping': 'Remove-AzureRmRecoveryServicesAsrNetworkMapping', - 'Edit-AzRecoveryServicesAsrRecoveryPlan': 'Edit-AzureRmRecoveryServicesAsrRecoveryPlan', - 'Remove-AzRecoveryServicesAsrvCenter': 'Remove-AzureRmRecoveryServicesAsrvCenter', - 'Start-AzRecoveryServicesAsrUnplannedFailoverJob': 'Start-AzureRmRecoveryServicesAsrUnplannedFailoverJob', - 'Get-AzRecoveryServicesAsrNetworkMapping': 'Get-AzureRmRecoveryServicesAsrNetworkMapping', - 'Get-AzRecoveryServicesAsrProtectionContainer': 'Get-AzureRmRecoveryServicesAsrProtectionContainer', - 'Restart-AzRecoveryServicesAsrJob': 'Restart-AzureRmRecoveryServicesAsrJob', - 'Update-AzRecoveryServicesAsrPolicy': 'Update-AzureRmRecoveryServicesAsrPolicy', - 'New-AzRecoveryServicesAsrNetworkMapping': 'New-AzureRmRecoveryServicesAsrNetworkMapping', - 'Get-AzRecoveryServicesAsrvCenter': 'Get-AzureRmRecoveryServicesAsrvCenter', - 'Set-AzRecoveryServicesAsrVaultSettings': 'Set-AzureRmRecoveryServicesAsrVaultSettings', - 'Get-AzRecoveryServicesAsrNotificationSetting': 'Get-AzureRmRecoveryServicesAsrNotificationSetting', - 'Set-AzRecoveryServicesAsrReplicationProtectedItem': 'Set-AzureRmRecoveryServicesAsrReplicationProtectedItem', - 'Start-AzRecoveryServicesAsrCommitFailoverJob': 'Start-AzureRmRecoveryServicesAsrCommitFailoverJob', - 'Remove-AzRecoveryServicesAsrServicesProvider': 'Remove-AzureRmRecoveryServicesAsrServicesProvider', - 'Get-AzRecoveryServicesAsrFabric': 'Get-AzureRmRecoveryServicesAsrFabric', - 'Get-AzRecoveryServicesAsrPolicy': 'Get-AzureRmRecoveryServicesAsrPolicy', - 'Start-AzRecoveryServicesAsrTestFailoverJob': 'Start-AzureRmRecoveryServicesAsrTestFailoverJob', - 'Remove-AzRecoveryServicesAsrStorageClassificationMapping': 'Remove-AzureRmRecoveryServicesAsrStorageClassificationMapping', - 'Get-AzRecoveryServicesAsrRecoveryPoint': 'Get-AzureRmRecoveryServicesAsrRecoveryPoint', - 'Update-AzRecoveryServicesAsrvCenter': 'Update-AzureRmRecoveryServicesAsrvCenter', - 'New-AzRecoveryServicesAsrvCenter': 'New-AzureRmRecoveryServicesAsrvCenter', - 'New-AzRecoveryServicesAsrFabric': 'New-AzureRmRecoveryServicesAsrFabric', - 'Get-AzRecoveryServicesAsrStorageClassificationMapping': 'Get-AzureRmRecoveryServicesAsrStorageClassificationMapping', - 'Get-AzRecoveryServicesAsrVaultContext': 'Get-AzureRmRecoveryServicesAsrVaultContext', - 'Get-AzRecoveryServicesAsrVaultSettings': 'Get-AzureRmRecoveryServicesAsrVaultSettings', - 'Update-AzRecoveryServicesAsrMobilityService': 'Update-AzureRmRecoveryServicesAsrMobilityService', - 'Remove-AzRecoveryServicesAsrReplicationProtectedItem': 'Remove-AzureRmRecoveryServicesAsrReplicationProtectedItem', - 'Start-AzRecoveryServicesAsrPlannedFailoverJob': 'Start-AzureRmRecoveryServicesAsrPlannedFailoverJob', - 'Get-AzRecoveryServicesAsrEvent': 'Get-AzureRmRecoveryServicesAsrEvent', - 'Get-AzRecoveryServicesAsrReplicationProtectedItem': 'Get-AzureRmRecoveryServicesAsrReplicationProtectedItem', - 'New-AzRecoveryServicesAsrAzureToAzureDiskReplicationConfig': 'New-AzureRmRecoveryServicesAsrAzureToAzureDiskReplicationConfig', - 'New-AzRecoveryServicesAsrRecoveryPlan': 'New-AzureRmRecoveryServicesAsrRecoveryPlan', - 'Get-AzRecoveryServicesAsrProtectableItem': 'Get-AzureRmRecoveryServicesAsrProtectableItem', - 'Update-AzRecoveryServicesAsrRecoveryPlan': 'Update-AzureRmRecoveryServicesAsrRecoveryPlan', - 'New-AzRecoveryServicesAsrStorageClassificationMapping': 'New-AzureRmRecoveryServicesAsrStorageClassificationMapping', - 'Get-AzRecoveryServicesAsrNetwork': 'Get-AzureRmRecoveryServicesAsrNetwork', - 'Remove-AzRecoveryServicesAsrProtectionContainerMapping': 'Remove-AzureRmRecoveryServicesAsrProtectionContainerMapping', - 'Remove-AzRecoveryServicesAsrRecoveryPlan': 'Remove-AzureRmRecoveryServicesAsrRecoveryPlan', - 'Update-AzRecoveryServicesAsrServicesProvider': 'Update-AzureRmRecoveryServicesAsrServicesProvider', - 'New-AzRecoveryServicesAsrProtectableItem': 'New-AzureRmRecoveryServicesAsrProtectableItem', - 'Get-AzRecoveryServicesAsrStorageClassification': 'Get-AzureRmRecoveryServicesAsrStorageClassification', - 'Start-AzRecoveryServicesAsrTestFailoverCleanupJob': 'Start-AzureRmRecoveryServicesAsrTestFailoverCleanupJob', - 'New-AzRecoveryServicesAsrReplicationProtectedItem': 'New-AzureRmRecoveryServicesAsrReplicationProtectedItem', - 'Get-AzRecoveryServicesAsrServicesProvider': 'Get-AzureRmRecoveryServicesAsrServicesProvider', - 'Stop-AzRecoveryServicesAsrJob': 'Stop-AzureRmRecoveryServicesAsrJob', - 'Set-AzRecoveryServicesAsrAlertSetting': 'Set-AzureRmRecoveryServicesAsrAlertSetting', - 'New-AzRecoveryServicesAsrProtectionContainer': 'New-AzureRmRecoveryServicesAsrProtectionContainer', - 'New-AzRecoveryServicesAsrPolicy': 'New-AzureRmRecoveryServicesAsrPolicy', - 'Start-AzRecoveryServicesAsrResynchronizeReplicationJob': 'Start-AzureRmRecoveryServicesAsrResynchronizeReplicationJob', - 'Update-AzRecoveryServicesAsrProtectionDirection': 'Update-AzureRmRecoveryServicesAsrProtectionDirection', - 'Resume-AzRecoveryServicesAsrJob': 'Resume-AzureRmRecoveryServicesAsrJob', - 'Set-AzRecoveryServicesAsrVaultContext': 'Set-AzureRmRecoveryServicesAsrVaultContext', - 'New-AzRecoveryServicesAsrProtectionContainerMapping': 'New-AzureRmRecoveryServicesAsrProtectionContainerMapping', - 'Set-AzRecoveryServicesAsrNotificationSetting': 'Set-AzureRmRecoveryServicesAsrNotificationSetting', - 'Remove-AzRecoveryServicesAsrProtectionContainer': 'Remove-AzureRmRecoveryServicesAsrProtectionContainer', - 'Start-AzRecoveryServicesAsrSwitchProcessServerJob': 'Start-AzureRmRecoveryServicesAsrSwitchProcessServerJob', - 'Remove-AzRecoveryServicesAsrFabric': 'Remove-AzureRmRecoveryServicesAsrFabric', - 'Get-AzRecoveryServicesAsrJob': 'Get-AzureRmRecoveryServicesAsrJob', - 'Import-AzRecoveryServicesAsrVaultSettingsFile': 'Import-AzureRmRecoveryServicesAsrVaultSettingsFile', - 'Start-AzRecoveryServicesAsrApplyRecoveryPoint': 'Start-AzureRmRecoveryServicesAsrApplyRecoveryPoint', - 'Get-AzRecoveryServicesAsrRecoveryPlan': 'Get-AzureRmRecoveryServicesAsrRecoveryPlan', - 'Remove-AzRecoveryServicesAsrPolicy': 'Remove-AzureRmRecoveryServicesAsrPolicy', - 'Update-AzRecoveryServicesAsrNetworkMapping': 'Update-AzureRmRecoveryServicesAsrNetworkMapping', - 'Get-AzRecoveryServicesAsrAlertSetting': 'Get-AzureRmRecoveryServicesAsrAlertSetting' - }, - 'Az.Websites': { - 'Set-AzWebAppSlotConfigName': 'Set-AzureRmWebAppSlotConfigName', - 'Start-AzWebApp': 'Start-AzureRmWebApp', - 'Start-AzWebAppSlot': 'Start-AzureRmWebAppSlot', - 'Remove-AzWebAppSlot': 'Remove-AzureRmWebAppSlot', - 'Get-AzWebAppSlotConfigName': 'Get-AzureRmWebAppSlotConfigName', - 'Restore-AzWebAppSnapshot': 'Restore-AzureRmWebAppSnapshot', - 'Swap-AzWebAppSlot': 'Swap-AzureRmWebAppSlot', - 'Get-AzWebApp': 'Get-AzureRmWebApp', - 'Remove-AzAppServicePlan': 'Remove-AzureRmAppServicePlan', - 'Get-AzWebAppPublishingProfile': 'Get-AzureRmWebAppPublishingProfile', - 'Get-AzWebAppSlotPublishingProfile': 'Get-AzureRmWebAppSlotPublishingProfile', - 'Set-AzWebApp': 'Set-AzureRmWebApp', - 'Reset-AzWebAppPublishingProfile': 'Reset-AzureRmWebAppPublishingProfile', - 'New-AzWebAppSSLBinding': 'New-AzureRmWebAppSSLBinding', - 'Remove-AzWebAppSSLBinding': 'Remove-AzureRmWebAppSSLBinding', - 'Get-AzWebAppCertificate': 'Get-AzureRmWebAppCertificate', - 'Get-AzWebAppBackupConfiguration': 'Get-AzureRmWebAppBackupConfiguration', - 'Get-AzWebAppBackupList': 'Get-AzureRmWebAppBackupList', - 'Switch-AzWebAppSlot': 'Switch-AzureRmWebAppSlot', - 'Get-AzAppServicePlanMetrics': 'Get-AzureRmAppServicePlanMetrics', - 'Get-AzAppServicePlan': 'Get-AzureRmAppServicePlan', - 'New-AzAppServicePlan': 'New-AzureRmAppServicePlan', - 'Get-AzWebAppSlot': 'Get-AzureRmWebAppSlot', - 'Reset-AzWebAppSlotPublishingProfile': 'Reset-AzureRmWebAppSlotPublishingProfile', - 'Remove-AzWebAppBackup': 'Remove-AzureRmWebAppBackup', - 'Get-AzWebAppBackup': 'Get-AzureRmWebAppBackup', - 'Restart-AzWebAppSlot': 'Restart-AzureRmWebAppSlot', - 'Restore-AzWebAppBackup': 'Restore-AzureRmWebAppBackup', - 'New-AzWebAppDatabaseBackupSetting': 'New-AzureRmWebAppDatabaseBackupSetting', - 'New-AzWebApp': 'New-AzureRmWebApp', - 'Remove-AzWebApp': 'Remove-AzureRmWebApp', - 'Get-AzWebAppMetrics': 'Get-AzureRmWebAppMetrics', - 'Get-AzWebAppSSLBinding': 'Get-AzureRmWebAppSSLBinding', - 'Set-AzWebAppSlot': 'Set-AzureRmWebAppSlot', - 'New-AzWebAppBackup': 'New-AzureRmWebAppBackup', - 'Get-AzWebAppSnapshot': 'Get-AzureRmWebAppSnapshot', - 'New-AzWebAppSlot': 'New-AzureRmWebAppSlot', - 'Set-AzAppServicePlan': 'Set-AzureRmAppServicePlan', - 'Get-AzWebAppSlotMetrics': 'Get-AzureRmWebAppSlotMetrics', - 'Edit-AzWebAppBackupConfiguration': 'Edit-AzureRmWebAppBackupConfiguration', - 'Restart-AzWebApp': 'Restart-AzureRmWebApp', - 'Stop-AzWebApp': 'Stop-AzureRmWebApp', - 'Stop-AzWebAppSlot': 'Stop-AzureRmWebAppSlot' - }, - 'Az.StorageSync': { - 'Invoke-AzStorageSyncCompatibilityCheck': 'Invoke-AzureRmStorageSyncCompatibilityCheck' - }, - 'Az.KeyVault': { - 'Undo-AzKeyVaultCertificateRemoval': 'Undo-AzureKeyVaultCertificateRemoval', - 'Remove-AzKeyVaultAccessPolicy': 'Remove-AzureRmKeyVaultAccessPolicy', - 'Update-AzKeyVaultNetworkRuleSet': 'Update-AzureRmKeyVaultNetworkRuleSet', - 'Add-AzKeyVaultManagedStorageAccount': 'Add-AzureKeyVaultManagedStorageAccount', - 'Restore-AzKeyVaultCertificate': 'Restore-AzureKeyVaultCertificate', - 'New-AzKeyVault': 'New-AzureRmKeyVault', - 'Add-AzKeyVaultNetworkRule': 'Add-AzureRmKeyVaultNetworkRule', - 'Get-AzKeyVaultSecret': 'Get-AzureKeyVaultSecret', - 'Add-AzKeyVaultKey': 'Add-AzureKeyVaultKey', - 'New-AzKeyVaultCertificateOrganizationDetails': 'New-AzureKeyVaultCertificateOrganizationDetails', - 'Undo-AzKeyVaultManagedStorageSasDefinitionRemoval': 'Undo-AzureKeyVaultManagedStorageSasDefinitionRemoval', - 'Backup-AzKeyVaultCertificate': 'Backup-AzureKeyVaultCertificate', - 'New-AzKeyVaultCertificateAdministratorDetails': 'New-AzureKeyVaultCertificateAdministratorDetails', - 'Set-AzKeyVaultSecret': 'Set-AzureKeyVaultSecret', - 'Set-AzKeyVaultManagedStorageSasDefinition': 'Set-AzureKeyVaultManagedStorageSasDefinition', - 'Update-AzKeyVaultManagedStorageAccount': 'Update-AzureKeyVaultManagedStorageAccount', - 'Stop-AzKeyVaultCertificateOperation': 'Stop-AzureKeyVaultCertificateOperation', - 'Import-AzKeyVaultCertificate': 'Import-AzureKeyVaultCertificate', - 'Add-AzKeyVaultCertificate': 'Add-AzureKeyVaultCertificate', - 'Update-AzKeyVaultCertificate': 'Update-AzureKeyVaultCertificate', - 'Add-AzKeyVaultCertificateContact': 'Add-AzureKeyVaultCertificateContact', - 'Remove-AzKeyVaultCertificateIssuer': 'Remove-AzureKeyVaultCertificateIssuer', - 'Update-AzKeyVaultKey': 'Update-AzureKeyVaultKey', - 'Remove-AzKeyVaultKey': 'Remove-AzureKeyVaultKey', - 'Set-AzKeyVaultAccessPolicy': 'Set-AzureRmKeyVaultAccessPolicy', - 'Restore-AzKeyVaultSecret': 'Restore-AzureKeyVaultSecret', - 'Set-AzKeyVaultCertificateIssuer': 'Set-AzureKeyVaultCertificateIssuer', - 'Remove-AzKeyVaultCertificateOperation': 'Remove-AzureKeyVaultCertificateOperation', - 'Get-AzKeyVaultCertificateOperation': 'Get-AzureKeyVaultCertificateOperation', - 'Get-AzKeyVaultManagedStorageAccount': 'Get-AzureKeyVaultManagedStorageAccount', - 'Restore-AzKeyVaultKey': 'Restore-AzureKeyVaultKey', - 'Get-AzKeyVaultKey': 'Get-AzureKeyVaultKey', - 'Remove-AzKeyVaultSecret': 'Remove-AzureKeyVaultSecret', - 'Restore-AzKeyVaultManagedStorageAccount': 'Restore-AzureKeyVaultManagedStorageAccount', - 'Get-AzKeyVaultCertificate': 'Get-AzureKeyVaultCertificate', - 'Remove-AzKeyVaultCertificateContact': 'Remove-AzureKeyVaultCertificateContact', - 'Backup-AzKeyVaultSecret': 'Backup-AzureKeyVaultSecret', - 'Get-AzKeyVaultManagedStorageSasDefinition': 'Get-AzureKeyVaultManagedStorageSasDefinition', - 'Get-AzKeyVaultCertificateIssuer': 'Get-AzureKeyVaultCertificateIssuer', - 'Backup-AzKeyVaultManagedStorageAccount': 'Backup-AzureKeyVaultManagedStorageAccount', - 'Set-AzKeyVaultCertificatePolicy': 'Set-AzureKeyVaultCertificatePolicy', - 'Set-AzKeyVaultSecretAttribute': 'Set-AzureKeyVaultSecretAttribute', - 'Undo-AzKeyVaultSecretRemoval': 'Undo-AzureKeyVaultSecretRemoval', - 'Remove-AzKeyVaultNetworkRule': 'Remove-AzureRmKeyVaultNetworkRule', - 'Get-AzKeyVaultCertificateContact': 'Get-AzureKeyVaultCertificateContact', - 'Update-AzKeyVaultManagedStorageAccountKey': 'Update-AzureKeyVaultManagedStorageAccountKey', - 'Set-AzKeyVaultCertificateAttribute': 'Set-AzureKeyVaultCertificateAttribute', - 'Set-AzKeyVaultKeyAttribute': 'Set-AzureKeyVaultKeyAttribute', - 'Get-AzKeyVaultCertificatePolicy': 'Get-AzureKeyVaultCertificatePolicy', - 'Get-AzKeyVault': 'Get-AzureRmKeyVault', - 'Remove-AzKeyVaultManagedStorageAccount': 'Remove-AzureKeyVaultManagedStorageAccount', - 'Undo-AzKeyVaultRemoval': 'Undo-AzureRmKeyVaultRemoval', - 'Update-AzKeyVaultSecret': 'Update-AzureKeyVaultSecret', - 'Remove-AzKeyVaultCertificate': 'Remove-AzureKeyVaultCertificate', - 'New-AzKeyVaultCertificatePolicy': 'New-AzureKeyVaultCertificatePolicy', - 'Backup-AzKeyVaultKey': 'Backup-AzureKeyVaultKey', - 'Remove-AzKeyVaultManagedStorageSasDefinition': 'Remove-AzureKeyVaultManagedStorageSasDefinition', - 'Remove-AzKeyVault': 'Remove-AzureRmKeyVault', - 'Set-AzKeyVaultKey': 'Set-AzureKeyVaultKey', - 'Undo-AzKeyVaultManagedStorageAccountRemoval': 'Undo-AzureKeyVaultManagedStorageAccountRemoval', - 'Undo-AzKeyVaultKeyRemoval': 'Undo-AzureKeyVaultKeyRemoval' - }, - 'Az.Profile': { - 'Save-AzProfile': 'Save-AzureRmProfile', - 'Clear-AzDefault': 'Clear-AzureRmDefault', - 'Login-AzAccount': 'Login-AzureRmAccount', - 'Rename-AzContext': 'Rename-AzureRmContext', - 'Logout-AzAccount': 'Logout-AzureRmAccount', - 'Get-AzContextAutosaveSetting': 'Get-AzureRmContextAutosaveSetting', - 'Get-AzContext': 'Get-AzureRmContext', - 'Disable-AzDataCollection': 'Disable-AzureRmDataCollection', - 'Disconnect-AzAccount': 'Disconnect-AzureRmAccount', - 'Save-AzContext': 'Save-AzureRmContext', - 'Enable-AzContextAutosave': 'Enable-AzureRmContextAutosave', - 'Get-AzEnvironment': 'Get-AzureRmEnvironment', - 'Disable-AzContextAutosave': 'Disable-AzureRmContextAutosave', - 'Enable-AzDataCollection': 'Enable-AzureRmDataCollection', - 'Connect-AzAccount': 'Connect-AzureRmAccount', - 'Select-AzContext': 'Select-AzureRmContext', - 'Clear-AzContext': 'Clear-AzureRmContext', - 'Select-AzSubscription': 'Select-AzureRmSubscription', - 'Import-AzContext': 'Import-AzureRmContext', - 'Set-AzContext': 'Set-AzureRmContext', - 'Remove-AzEnvironment': 'Remove-AzureRmEnvironment', - 'Add-AzAccount': 'Add-AzureRmAccount', - 'Resolve-AzError': 'Resolve-AzureRmError', - 'Get-AzDefault': 'Get-AzureRmDefault', - 'Add-AzEnvironment': 'Add-AzureRmEnvironment', - 'Remove-AzAccount': 'Remove-AzureRmAccount', - 'Set-AzEnvironment': 'Set-AzureRmEnvironment', - 'Get-AzSubscription': 'Get-AzureRmSubscription', - 'Set-AzDefault': 'Set-AzureRmDefault', - 'Remove-AzContext': 'Remove-AzureRmContext', - 'Get-AzTenant': 'Get-AzureRmTenant' - }, - 'Az.PolicyInsights': { - 'Get-AzPolicyStateSummary': 'Get-AzureRmPolicyStateSummary', - 'Get-AzPolicyEvent': 'Get-AzureRmPolicyEvent', - 'Get-AzPolicyState': 'Get-AzureRmPolicyState' - }, - 'Az.ContainerRegistry': { - 'Get-AzContainerRegistryReplication': 'Get-AzureRmContainerRegistryReplication', - 'Get-AzContainerRegistryCredential': 'Get-AzureRmContainerRegistryCredential', - 'Update-AzContainerRegistry': 'Update-AzureRmContainerRegistry', - 'Get-AzContainerRegistryWebhook': 'Get-AzureRmContainerRegistryWebhook', - 'New-AzContainerRegistry': 'New-AzureRmContainerRegistry', - 'Remove-AzContainerRegistry': 'Remove-AzureRmContainerRegistry', - 'Test-AzContainerRegistryNameAvailability': 'Test-AzureRmContainerRegistryNameAvailability', - 'New-AzContainerRegistryReplication': 'New-AzureRmContainerRegistryReplication', - 'Remove-AzContainerRegistryWebhook': 'Remove-AzureRmContainerRegistryWebhook', - 'New-AzContainerRegistryWebhook': 'New-AzureRmContainerRegistryWebhook', - 'Update-AzContainerRegistryCredential': 'Update-AzureRmContainerRegistryCredential', - 'Get-AzContainerRegistry': 'Get-AzureRmContainerRegistry', - 'Get-AzContainerRegistryWebhookEvent': 'Get-AzureRmContainerRegistryWebhookEvent', - 'Test-AzContainerRegistryWebhook': 'Test-AzureRmContainerRegistryWebhook', - 'Update-AzContainerRegistryWebhook': 'Update-AzureRmContainerRegistryWebhook', - 'Remove-AzContainerRegistryReplication': 'Remove-AzureRmContainerRegistryReplication' - }, - 'Az.ContainerInstance': { - 'New-AzContainerGroup': 'New-AzureRmContainerGroup', - 'Get-AzContainerGroup': 'Get-AzureRmContainerGroup', - 'Remove-AzContainerGroup': 'Remove-AzureRmContainerGroup', - 'Get-AzContainerInstanceLog': 'Get-AzureRmContainerInstanceLog' - }, - 'Az.Scheduler': { - 'Disable-AzSchedulerJobCollection': 'Disable-AzureRmSchedulerJobCollection', - 'New-AzSchedulerStorageQueueJob': 'New-AzureRmSchedulerStorageQueueJob', - 'Enable-AzSchedulerJobCollection': 'Enable-AzureRmSchedulerJobCollection', - 'Set-AzSchedulerStorageQueueJob': 'Set-AzureRmSchedulerStorageQueueJob', - 'Set-AzSchedulerServiceBusQueueJob': 'Set-AzureRmSchedulerServiceBusQueueJob', - 'New-AzSchedulerHttpJob': 'New-AzureRmSchedulerHttpJob', - 'Get-AzSchedulerJobHistory': 'Get-AzureRmSchedulerJobHistory', - 'Get-AzSchedulerJobCollection': 'Get-AzureRmSchedulerJobCollection', - 'Remove-AzSchedulerJobCollection': 'Remove-AzureRmSchedulerJobCollection', - 'New-AzSchedulerServiceBusTopicJob': 'New-AzureRmSchedulerServiceBusTopicJob', - 'Get-AzSchedulerJob': 'Get-AzureRmSchedulerJob', - 'Set-AzSchedulerHttpJob': 'Set-AzureRmSchedulerHttpJob', - 'New-AzSchedulerServiceBusQueueJob': 'New-AzureRmSchedulerServiceBusQueueJob', - 'New-AzSchedulerJobCollection': 'New-AzureRmSchedulerJobCollection', - 'Set-AzSchedulerServiceBusTopicJob': 'Set-AzureRmSchedulerServiceBusTopicJob', - 'Set-AzSchedulerJobCollection': 'Set-AzureRmSchedulerJobCollection', - 'Remove-AzSchedulerJob': 'Remove-AzureRmSchedulerJob' - }, - 'Az.RecoveryServices.Backup': { - 'Unregister-AzRecoveryServicesBackupContainer': 'Unregister-AzureRmRecoveryServicesBackupContainer', - 'Get-AzRecoveryServicesBackupRecoveryPoint': 'Get-AzureRmRecoveryServicesBackupRecoveryPoint', - 'Get-AzRecoveryServicesBackupManagementServer': 'Get-AzureRmRecoveryServicesBackupManagementServer', - 'Get-AzRecoveryServicesBackupStatus': 'Get-AzureRmRecoveryServicesBackupStatus', - 'Unregister-AzRecoveryServicesBackupManagementServer': 'Unregister-AzureRmRecoveryServicesBackupManagementServer', - 'Get-AzRecoveryServicesBackupSchedulePolicyObject': 'Get-AzureRmRecoveryServicesBackupSchedulePolicyObject', - 'Get-AzRecoveryServicesBackupJobDetails': 'Get-AzureRmRecoveryServicesBackupJobDetails', - 'Enable-AzRecoveryServicesBackupProtection': 'Enable-AzureRmRecoveryServicesBackupProtection', - 'Wait-AzRecoveryServicesBackupJob': 'Wait-AzureRmRecoveryServicesBackupJob', - 'Get-AzRecoveryServicesBackupRPMountScript': 'Get-AzureRmRecoveryServicesBackupRPMountScript', - 'Get-AzRecoveryServicesBackupContainer': 'Get-AzureRmRecoveryServicesBackupContainer', - 'Set-AzRecoveryServicesBackupProtectionPolicy': 'Set-AzureRmRecoveryServicesBackupProtectionPolicy', - 'Disable-AzRecoveryServicesBackupRPMountScript': 'Disable-AzureRmRecoveryServicesBackupRPMountScript', - 'Get-AzRecoveryServicesBackupRetentionPolicyObject': 'Get-AzureRmRecoveryServicesBackupRetentionPolicyObject', - 'Get-AzRecoveryServicesBackupProtectionPolicy': 'Get-AzureRmRecoveryServicesBackupProtectionPolicy', - 'Get-AzRecoveryServicesBackupJob': 'Get-AzureRmRecoveryServicesBackupJob', - 'Disable-AzRecoveryServicesBackupProtection': 'Disable-AzureRmRecoveryServicesBackupProtection', - 'New-AzRecoveryServicesBackupProtectionPolicy': 'New-AzureRmRecoveryServicesBackupProtectionPolicy', - 'Remove-AzRecoveryServicesBackupProtectionPolicy': 'Remove-AzureRmRecoveryServicesBackupProtectionPolicy', - 'Get-AzRecoveryServicesBackupItem': 'Get-AzureRmRecoveryServicesBackupItem', - 'Stop-AzRecoveryServicesBackupJob': 'Stop-AzureRmRecoveryServicesBackupJob', - 'Restore-AzRecoveryServicesBackupItem': 'Restore-AzureRmRecoveryServicesBackupItem', - 'Backup-AzRecoveryServicesBackupItem': 'Backup-AzureRmRecoveryServicesBackupItem' - }, - 'Az.ServiceFabric': { - 'Add-AzServiceFabricNodeType': 'Add-AzureRmServiceFabricNodeType', - 'Update-AzServiceFabricReliability': 'Update-AzureRmServiceFabricReliability', - 'Remove-AzServiceFabricNodeType': 'Remove-AzureRmServiceFabricNodeType', - 'Update-AzServiceFabricDurability': 'Update-AzureRmServiceFabricDurability', - 'Add-AzServiceFabricClusterCertificate': 'Add-AzureRmServiceFabricClusterCertificate', - 'Add-AzServiceFabricNode': 'Add-AzureRmServiceFabricNode', - 'New-AzServiceFabricCluster': 'New-AzureRmServiceFabricCluster', - 'Set-AzServiceFabricUpgradeType': 'Set-AzureRmServiceFabricUpgradeType', - 'Remove-AzServiceFabricNode': 'Remove-AzureRmServiceFabricNode', - 'Add-AzServiceFabricApplicationCertificate': 'Add-AzureRmServiceFabricApplicationCertificate', - 'Remove-AzServiceFabricSetting': 'Remove-AzureRmServiceFabricSetting', - 'Remove-AzServiceFabricClusterCertificate': 'Remove-AzureRmServiceFabricClusterCertificate', - 'Remove-AzServiceFabricClientCertificate': 'Remove-AzureRmServiceFabricClientCertificate', - 'Add-AzServiceFabricClientCertificate': 'Add-AzureRmServiceFabricClientCertificate', - 'Set-AzServiceFabricSetting': 'Set-AzureRmServiceFabricSetting', - 'Get-AzServiceFabricCluster': 'Get-AzureRmServiceFabricCluster' - }, - 'Az.Relay': { - 'Set-AzRelayAuthorizationRule': 'Set-AzureRmRelayAuthorizationRule', - 'Get-AzRelayNamespace': 'Get-AzureRmRelayNamespace', - 'Remove-AzWcfRelay': 'Remove-AzureRmWcfRelay', - 'New-AzRelayKey': 'New-AzureRmRelayKey', - 'Set-AzRelayNamespace': 'Set-AzureRmRelayNamespace', - 'Remove-AzRelayHybridConnection': 'Remove-AzureRmRelayHybridConnection', - 'Get-AzRelayOperation': 'Get-AzureRmRelayOperation', - 'Get-AzRelayAuthorizationRule': 'Get-AzureRmRelayAuthorizationRule', - 'New-AzRelayNamespace': 'New-AzureRmRelayNamespace', - 'Remove-AzRelayNamespace': 'Remove-AzureRmRelayNamespace', - 'Get-AzRelayKey': 'Get-AzureRmRelayKey', - 'New-AzWcfRelay': 'New-AzureRmWcfRelay', - 'Get-AzWcfRelay': 'Get-AzureRmWcfRelay', - 'Set-AzWcfRelay': 'Set-AzureRmWcfRelay', - 'Set-AzRelayHybridConnection': 'Set-AzureRmRelayHybridConnection', - 'Get-AzRelayHybridConnection': 'Get-AzureRmRelayHybridConnection', - 'New-AzRelayHybridConnection': 'New-AzureRmRelayHybridConnection', - 'Remove-AzRelayAuthorizationRule': 'Remove-AzureRmRelayAuthorizationRule', - 'Test-AzRelayName': 'Test-AzureRmRelayName', - 'New-AzRelayAuthorizationRule': 'New-AzureRmRelayAuthorizationRule' - }, - 'Az.ManagedServiceIdentity': { - 'Get-AzUserAssignedIdentity': 'Get-AzureRmUserAssignedIdentity', - 'Remove-AzUserAssignedIdentity': 'Remove-AzureRmUserAssignedIdentity', - 'New-AzUserAssignedIdentity': 'New-AzureRmUserAssignedIdentity' - }, - 'Az.Maps': { - 'New-AzMapsAccountKey': 'New-AzureRmMapsAccountKey', - 'Remove-AzMapsAccount': 'Remove-AzureRmMapsAccount', - 'Get-AzMapsAccountKey': 'Get-AzureRmMapsAccountKey', - 'New-AzMapsAccount': 'New-AzureRmMapsAccount', - 'Get-AzMapsAccount': 'Get-AzureRmMapsAccount' - }, - 'Az.TrafficManager': { - 'Remove-AzTrafficManagerExpectedStatusCodeRange': 'Remove-AzureRmTrafficManagerExpectedStatusCodeRange', - 'Disable-AzTrafficManagerProfile': 'Disable-AzureRmTrafficManagerProfile', - 'Remove-AzTrafficManagerEndpoint': 'Remove-AzureRmTrafficManagerEndpoint', - 'Get-AzTrafficManagerProfile': 'Get-AzureRmTrafficManagerProfile', - 'Add-AzTrafficManagerEndpointConfig': 'Add-AzureRmTrafficManagerEndpointConfig', - 'Remove-AzTrafficManagerEndpointConfig': 'Remove-AzureRmTrafficManagerEndpointConfig', - 'New-AzTrafficManagerProfile': 'New-AzureRmTrafficManagerProfile', - 'Enable-AzTrafficManagerEndpoint': 'Enable-AzureRmTrafficManagerEndpoint', - 'Set-AzTrafficManagerEndpoint': 'Set-AzureRmTrafficManagerEndpoint', - 'Enable-AzTrafficManagerProfile': 'Enable-AzureRmTrafficManagerProfile', - 'Set-AzTrafficManagerProfile': 'Set-AzureRmTrafficManagerProfile', - 'New-AzTrafficManagerEndpoint': 'New-AzureRmTrafficManagerEndpoint', - 'Remove-AzTrafficManagerIpAddressRange': 'Remove-AzureRmTrafficManagerIpAddressRange', - 'Get-AzTrafficManagerEndpoint': 'Get-AzureRmTrafficManagerEndpoint', - 'Add-AzTrafficManagerIpAddressRange': 'Add-AzureRmTrafficManagerIpAddressRange', - 'Remove-AzTrafficManagerProfile': 'Remove-AzureRmTrafficManagerProfile', - 'Remove-AzTrafficManagerCustomHeaderFromProfile': 'Remove-AzureRmTrafficManagerCustomHeaderFromProfile', - 'Remove-AzTrafficManagerCustomHeaderFromEndpoint': 'Remove-AzureRmTrafficManagerCustomHeaderFromEndpoint', - 'Add-AzTrafficManagerExpectedStatusCodeRange': 'Add-AzureRmTrafficManagerExpectedStatusCodeRange', - 'Add-AzTrafficManagerCustomHeaderToEndpoint': 'Add-AzureRmTrafficManagerCustomHeaderToEndpoint', - 'Add-AzTrafficManagerCustomHeaderToProfile': 'Add-AzureRmTrafficManagerCustomHeaderToProfile', - 'Disable-AzTrafficManagerEndpoint': 'Disable-AzureRmTrafficManagerEndpoint' - }, - 'Az.Automation': { - 'New-AzAutomationSchedule': 'New-AzureRmAutomationSchedule', - 'Suspend-AzAutomationJob': 'Suspend-AzureRmAutomationJob', - 'Set-AzAutomationModule': 'Set-AzureRmAutomationModule', - 'Import-AzAutomationRunbook': 'Import-AzureRmAutomationRunbook', - 'Remove-AzAutomationRunbook': 'Remove-AzureRmAutomationRunbook', - 'Remove-AzAutomationConnectionType': 'Remove-AzureRmAutomationConnectionType', - 'Get-AzAutomationJobOutputRecord': 'Get-AzureRmAutomationJobOutputRecord', - 'Start-AzAutomationRunbook': 'Start-AzureRmAutomationRunbook', - 'Get-AzAutomationDscNodeConfigurationDeploymentSchedule': 'Get-AzureRmAutomationDscNodeConfigurationDeploymentSchedule', - 'Set-AzAutomationConnectionFieldValue': 'Set-AzureRmAutomationConnectionFieldValue', - 'New-AzAutomationVariable': 'New-AzureRmAutomationVariable', - 'Set-AzAutomationDscNode': 'Set-AzureRmAutomationDscNode', - 'Register-AzAutomationDscNode': 'Register-AzureRmAutomationDscNode', - 'Remove-AzAutomationVariable': 'Remove-AzureRmAutomationVariable', - 'Start-AzAutomationDscNodeConfigurationDeployment': 'Start-AzureRmAutomationDscNodeConfigurationDeployment', - 'New-AzAutomationModule': 'New-AzureRmAutomationModule', - 'Publish-AzAutomationRunbook': 'Publish-AzureRmAutomationRunbook', - 'Set-AzAutomationRunbook': 'Set-AzureRmAutomationRunbook', - 'New-AzAutomationCertificate': 'New-AzureRmAutomationCertificate', - 'Set-AzAutomationVariable': 'Set-AzureRmAutomationVariable', - 'Get-AzAutomationDscOnboardingMetaconfig': 'Get-AzureRmAutomationDscOnboardingMetaconfig', - 'Stop-AzAutomationJob': 'Stop-AzureRmAutomationJob', - 'Get-AzAutomationHybridWorkerGroup': 'Get-AzureRMAutomationHybridWorkerGroup', - 'Get-AzAutomationAccount': 'Get-AzureRmAutomationAccount', - 'Get-AzAutomationCertificate': 'Get-AzureRmAutomationCertificate', - 'Set-AzAutomationWebhook': 'Set-AzureRmAutomationWebhook', - 'Get-AzAutomationConnection': 'Get-AzureRmAutomationConnection', - 'Start-AzAutomationDscCompilationJob': 'Start-AzureRmAutomationDscCompilationJob', - 'Get-AzAutomationDscCompilationJobOutput': 'Get-AzureRmAutomationDscCompilationJobOutput', - 'New-AzAutomationKey': 'New-AzureRmAutomationKey', - 'New-AzAutomationAccount': 'New-AzureRmAutomationAccount', - 'Get-AzAutomationDscNode': 'Get-AzureRmAutomationDscNode', - 'New-AzAutomationRunbook': 'New-AzureRmAutomationRunbook', - 'Unregister-AzAutomationDscNode': 'Unregister-AzureRmAutomationDscNode', - 'Get-AzAutomationDscNodeConfigurationDeployment': 'Get-AzureRmAutomationDscNodeConfigurationDeployment', - 'Import-AzAutomationDscConfiguration': 'Import-AzureRmAutomationDscConfiguration', - 'Get-AzAutomationModule': 'Get-AzureRmAutomationModule', - 'Register-AzAutomationScheduledRunbook': 'Register-AzureRmAutomationScheduledRunbook', - 'New-AzAutomationWebhook': 'New-AzureRmAutomationWebhook', - 'Resume-AzAutomationJob': 'Resume-AzureRmAutomationJob', - 'Get-AzAutomationDscConfiguration': 'Get-AzureRmAutomationDscConfiguration', - 'Get-AzAutomationWebhook': 'Get-AzureRmAutomationWebhook', - 'Remove-AzAutomationWebhook': 'Remove-AzureRmAutomationWebhook', - 'Import-AzAutomationModule': 'Import-AzureRmAutomationModule', - 'Import-AzAutomationDscNodeConfiguration': 'Import-AzureRmAutomationDscNodeConfiguration', - 'Remove-AzAutomationCertificate': 'Remove-AzureRmAutomationCertificate', - 'Get-AzAutomationVariable': 'Get-AzureRmAutomationVariable', - 'Remove-AzAutomationModule': 'Remove-AzureRmAutomationModule', - 'Export-AzAutomationRunbook': 'Export-AzureRmAutomationRunbook', - 'Remove-AzAutomationAccount': 'Remove-AzureRmAutomationAccount', - 'Unregister-AzAutomationScheduledRunbook': 'Unregister-AzureRmAutomationScheduledRunbook', - 'Remove-AzAutomationCredential': 'Remove-AzureRmAutomationCredential', - 'New-AzAutomationConnection': 'New-AzureRmAutomationConnection', - 'Get-AzAutomationDscNodeReport': 'Get-AzureRmAutomationDscNodeReport', - 'Set-AzAutomationCertificate': 'Set-AzureRmAutomationCertificate', - 'Set-AzAutomationCredential': 'Set-AzureRmAutomationCredential', - 'Export-AzAutomationDscConfiguration': 'Export-AzureRmAutomationDscConfiguration', - 'Get-AzAutomationJob': 'Get-AzureRmAutomationJob', - 'Remove-AzAutomationDscNodeConfiguration': 'Remove-AzureRmAutomationDscNodeConfiguration', - 'Get-AzAutomationJobOutput': 'Get-AzureRmAutomationJobOutput', - 'New-AzAutomationCredential': 'New-AzureRmAutomationCredential', - 'Set-AzAutomationSchedule': 'Set-AzureRmAutomationSchedule', - 'Get-AzAutomationCredential': 'Get-AzureRmAutomationCredential', - 'Remove-AzAutomationConnection': 'Remove-AzureRmAutomationConnection', - 'Get-AzAutomationSchedule': 'Get-AzureRmAutomationSchedule', - 'Export-AzAutomationDscNodeReportContent': 'Export-AzureRmAutomationDscNodeReportContent', - 'Get-AzAutomationRunbook': 'Get-AzureRmAutomationRunbook', - 'Get-AzAutomationDscCompilationJob': 'Get-AzureRmAutomationDscCompilationJob', - 'Get-AzAutomationRegistrationInfo': 'Get-AzureRmAutomationRegistrationInfo', - 'Get-AzAutomationDscNodeConfiguration': 'Get-AzureRmAutomationDscNodeConfiguration', - 'Remove-AzAutomationSchedule': 'Remove-AzureRmAutomationSchedule', - 'Remove-AzAutomationDscConfiguration': 'Remove-AzureRmAutomationDscConfiguration', - 'Set-AzAutomationAccount': 'Set-AzureRmAutomationAccount', - 'Get-AzAutomationScheduledRunbook': 'Get-AzureRmAutomationScheduledRunbook', - 'Stop-AzAutomationDscNodeConfigurationDeployment': 'Stop-AzureRmAutomationDscNodeConfigurationDeployment' - }, - 'Az.Reservations': { - 'Split-AzReservation': 'Split-AzureRmReservation', - 'Get-AzReservation': 'Get-AzureRmReservation', - 'Get-AzReservationCatalog': 'Get-AzureRmReservationCatalog', - 'Get-AzReservationOrderId': 'Get-AzureRmReservationOrderId', - 'Get-AzReservationHistory': 'Get-AzureRmReservationHistory', - 'Update-AzReservation': 'Update-AzureRmReservation', - 'Merge-AzReservation': 'Merge-AzureRmReservation', - 'Get-AzReservationOrder': 'Get-AzureRmReservationOrder' - }, - 'Az.Billing': { - 'Get-AzBillingPeriod': 'Get-AzureRmBillingPeriod', - 'Get-AzEnrollmentAccount': 'Get-AzureRmEnrollmentAccount', - 'Get-AzBillingInvoice': 'Get-AzureRmBillingInvoice' - }, - 'Az.IotHub': { - 'Get-AzIotHubValidSku': 'Get-AzureRmIotHubValidSku', - 'Test-AzIotHubRoute': 'Test-AzureRmIotHubRoute', - 'Get-AzIotHub': 'Get-AzureRmIotHub', - 'Get-AzIotHubKey': 'Get-AzureRmIotHubKey', - 'Add-AzIotHubRoutingEndpoint': 'Add-AzureRmIotHubRoutingEndpoint', - 'Add-AzIotHubKey': 'Add-AzureRmIotHubKey', - 'Set-AzIotHubVC': 'Set-AzureRmIotHubVC', - 'Remove-AzIotHubCertificate': 'Remove-AzureRmIotHubCertificate', - 'Set-AzIotHub': 'Set-AzureRmIotHub', - 'Get-AzIotHubRoutingEndpoint': 'Get-AzureRmIotHubRoutingEndpoint', - 'Remove-AzIotHubEventHubConsumerGroup': 'Remove-AzureRmIotHubEventHubConsumerGroup', - 'Get-AzIotHubEventHubConsumerGroup': 'Get-AzureRmIotHubEventHubConsumerGroup', - 'Remove-AzIotHubRoutingEndpoint': 'Remove-AzureRmIotHubRoutingEndpoint', - 'Get-AzIotHubCertificate': 'Get-AzureRmIotHubCertificate', - 'Get-AzIotHubQuotaMetric': 'Get-AzureRmIotHubQuotaMetric', - 'Add-AzIotHubCertificate': 'Add-AzureRmIotHubCertificate', - 'Add-AzIotHubEHCG': 'Add-AzureRmIotHubEHCG', - 'Update-AzIotHub': 'Update-AzureRmIotHub', - 'New-AzIotHub': 'New-AzureRmIotHub', - 'Add-AzIotHubEventHubConsumerGroup': 'Add-AzureRmIotHubEventHubConsumerGroup', - 'Get-AzIotHubCertificateVerificationCode': 'Get-AzureRmIotHubCertificateVerificationCode', - 'Get-AzIotHubJob': 'Get-AzureRmIotHubJob', - 'Remove-AzIotHubKey': 'Remove-AzureRmIotHubKey', - 'Set-AzIotHubVerifiedCertificate': 'Set-AzureRmIotHubVerifiedCertificate', - 'New-AzIotHubImportDevices': 'New-AzureRmIotHubImportDevices', - 'New-AzIotHubExportDevices': 'New-AzureRmIotHubExportDevices', - 'Remove-AzIotHubEHCG': 'Remove-AzureRmIotHubEHCG', - 'Remove-AzIotHubRoute': 'Remove-AzureRmIotHubRoute', - 'Add-AzIotHubRoute': 'Add-AzureRmIotHubRoute', - 'Get-AzIotHubRoute': 'Get-AzureRmIotHubRoute', - 'Get-AzIotHubCVC': 'Get-AzureRmIotHubCVC', - 'Get-AzIotHubRegistryStatistic': 'Get-AzureRmIotHubRegistryStatistic', - 'Get-AzIotHubConnectionString': 'Get-AzureRmIotHubConnectionString', - 'Get-AzIotHubEHCG': 'Get-AzureRmIotHubEHCG', - 'Remove-AzIotHub': 'Remove-AzureRmIotHub', - 'Set-AzIotHubRoute': 'Set-AzureRmIotHubRoute' - }, - 'Az.Resources': { - 'Remove-AzPolicySetDefinition': 'Remove-AzureRmPolicySetDefinition', - 'Remove-AzADServicePrincipalCredential': 'Remove-AzureRmADServicePrincipalCredential', - 'New-AzDeployment': 'New-AzureRmDeployment', - 'Remove-AzADAppCredential': 'Remove-AzureRmADAppCredential', - 'Remove-AzPolicyAssignment': 'Remove-AzureRmPolicyAssignment', - 'Stop-AzResourceGroupDeployment': 'Stop-AzureRmResourceGroupDeployment', - 'Get-AzManagementGroup': 'Get-AzureRmManagementGroup', - 'Remove-AzRoleAssignment': 'Remove-AzureRmRoleAssignment', - 'Remove-AzManagedApplicationDefinition': 'Remove-AzureRmManagedApplicationDefinition', - 'Set-AzADUser': 'Set-AzureRmADUser', - 'Get-AzADUser': 'Get-AzureRmADUser', - 'Get-AzADGroup': 'Get-AzureRmADGroup', - 'Remove-AzADGroupMember': 'Remove-AzureRmADGroupMember', - 'Remove-AzADGroup': 'Remove-AzureRmADGroup', - 'Unregister-AzResourceProvider': 'Unregister-AzureRmResourceProvider', - 'Set-AzPolicyDefinition': 'Set-AzureRmPolicyDefinition', - 'Set-AzResourceLock': 'Set-AzureRmResourceLock', - 'Set-AzADServicePrincipal': 'Set-AzureRmADServicePrincipal', - 'New-AzPolicyAssignment': 'New-AzureRmPolicyAssignment', - 'New-AzResource': 'New-AzureRmResource', - 'New-AzManagedApplicationDefinition': 'New-AzureRmManagedApplicationDefinition', - 'New-AzADUser': 'New-AzureRmADUser', - 'New-AzResourceLock': 'New-AzureRmResourceLock', - 'New-AzADGroup': 'New-AzureRmADGroup', - 'Set-AzPolicySetDefinition': 'Set-AzureRmPolicySetDefinition', - 'Remove-AzADUser': 'Remove-AzureRmADUser', - 'Invoke-AzResourceAction': 'Invoke-AzureRmResourceAction', - 'Remove-AzResource': 'Remove-AzureRmResource', - 'New-AzPolicySetDefinition': 'New-AzureRmPolicySetDefinition', - 'Get-AzPolicySetDefinition': 'Get-AzureRmPolicySetDefinition', - 'Get-AzResourceGroupDeploymentOperation': 'Get-AzureRmResourceGroupDeploymentOperation', - 'Remove-AzADApplication': 'Remove-AzureRmADApplication', - 'New-AzResourceGroup': 'New-AzureRmResourceGroup', - 'Get-AzProviderFeature': 'Get-AzureRmProviderFeature', - 'Get-AzDeploymentOperation': 'Get-AzureRmDeploymentOperation', - 'Get-AzResourceLock': 'Get-AzureRmResourceLock', - 'New-AzPolicyDefinition': 'New-AzureRmPolicyDefinition', - 'Get-AzLocation': 'Get-AzureRmLocation', - 'Get-AzResourceGroup': 'Get-AzureRmResourceGroup', - 'Remove-AzDeployment': 'Remove-AzureRmDeployment', - 'Remove-AzManagementGroup': 'Remove-AzureRmManagementGroup', - 'Update-AzADApplication': 'Update-AzureRmADApplication', - 'Update-AzManagementGroup': 'Update-AzureRmManagementGroup', - 'New-AzADApplication': 'New-AzureRmADApplication', - 'Get-AzResourceProvider': 'Get-AzureRmResourceProvider', - 'Get-AzPolicyAssignment': 'Get-AzureRmPolicyAssignment', - 'New-AzManagementGroupSubscription': 'New-AzureRmManagementGroupSubscription', - 'Get-AzADGroupMember': 'Get-AzureRmADGroupMember', - 'Set-AzResource': 'Set-AzureRmResource', - 'Get-AzResource': 'Get-AzureRmResource', - 'Set-AzManagedApplication': 'Set-AzureRmManagedApplication', - 'Test-AzDeployment': 'Test-AzureRmDeployment', - 'Get-AzResourceGroupDeployment': 'Get-AzureRmResourceGroupDeployment', - 'Add-AzADGroupMember': 'Add-AzureRmADGroupMember', - 'New-AzRoleDefinition': 'New-AzureRmRoleDefinition', - 'New-AzManagedApplication': 'New-AzureRmManagedApplication', - 'New-AzADServicePrincipal': 'New-AzureRmADServicePrincipal', - 'New-AzADServicePrincipalCredential': 'New-AzureRmADServicePrincipalCredential', - 'Remove-AzManagementGroupSubscription': 'Remove-AzureRmManagementGroupSubscription', - 'Get-AzPolicyDefinition': 'Get-AzureRmPolicyDefinition', - 'Stop-AzDeployment': 'Stop-AzureRmDeployment', - 'Save-AzDeploymentTemplate': 'Save-AzureRmDeploymentTemplate', - 'Update-AzADServicePrincipal': 'Update-AzureRmADServicePrincipal', - 'Remove-AzResourceLock': 'Remove-AzureRmResourceLock', - 'Remove-AzManagedApplication': 'Remove-AzureRmManagedApplication', - 'Remove-AzRoleDefinition': 'Remove-AzureRmRoleDefinition', - 'Remove-AzADServicePrincipal': 'Remove-AzureRmADServicePrincipal', - 'Set-AzADApplication': 'Set-AzureRmADApplication', - 'New-AzRoleAssignment': 'New-AzureRmRoleAssignment', - 'Get-AzDeployment': 'Get-AzureRmDeployment', - 'Get-AzADServicePrincipal': 'Get-AzureRmADServicePrincipal', - 'New-AzManagementGroup': 'New-AzureRmManagementGroup', - 'Move-AzResource': 'Move-AzureRmResource', - 'Remove-AzResourceGroupDeployment': 'Remove-AzureRmResourceGroupDeployment', - 'Get-AzRoleDefinition': 'Get-AzureRmRoleDefinition', - 'Remove-AzADSpCredential': 'Remove-AzureRmADSpCredential', - 'Get-AzADServicePrincipalCredential': 'Get-AzureRmADServicePrincipalCredential', - 'Remove-AzPolicyDefinition': 'Remove-AzureRmPolicyDefinition', - 'Set-AzManagedApplicationDefinition': 'Set-AzureRmManagedApplicationDefinition', - 'Get-AzADSpCredential': 'Get-AzureRmADSpCredential', - 'Register-AzProviderFeature': 'Register-AzureRmProviderFeature', - 'Register-AzResourceProvider': 'Register-AzureRmResourceProvider', - 'New-AzADSpCredential': 'New-AzureRmADSpCredential', - 'Set-AzRoleDefinition': 'Set-AzureRmRoleDefinition', - 'Export-AzResourceGroup': 'Export-AzureRmResourceGroup', - 'Save-AzResourceGroupDeploymentTemplate': 'Save-AzureRmResourceGroupDeploymentTemplate', - 'Set-AzResourceGroup': 'Set-AzureRmResourceGroup', - 'Get-AzResourceProviderAction': 'Get-AzureRmResourceProviderAction', - 'Get-AzProviderOperation': 'Get-AzureRmProviderOperation', - 'Get-AzADApplication': 'Get-AzureRmADApplication', - 'Get-AzADAppCredential': 'Get-AzureRmADAppCredential', - 'Remove-AzResourceGroup': 'Remove-AzureRmResourceGroup', - 'New-AzADAppCredential': 'New-AzureRmADAppCredential', - 'Update-AzADUser': 'Update-AzureRmADUser', - 'New-AzResourceGroupDeployment': 'New-AzureRmResourceGroupDeployment', - 'Get-AzManagedApplication': 'Get-AzureRmManagedApplication', - 'Get-AzManagedApplicationDefinition': 'Get-AzureRmManagedApplicationDefinition', - 'Test-AzResourceGroupDeployment': 'Test-AzureRmResourceGroupDeployment', - 'Get-AzRoleAssignment': 'Get-AzureRmRoleAssignment', - 'Set-AzPolicyAssignment': 'Set-AzureRmPolicyAssignment' - }, - 'Az.RedisCache': { - 'Set-AzRedisCacheDiagnostics': 'Set-AzureRmRedisCacheDiagnostics', - 'New-AzRedisCache': 'New-AzureRmRedisCache', - 'Remove-AzRedisCacheFirewallRule': 'Remove-AzureRmRedisCacheFirewallRule', - 'Import-AzRedisCache': 'Import-AzureRmRedisCache', - 'New-AzRedisCacheFirewallRule': 'New-AzureRmRedisCacheFirewallRule', - 'Get-AzRedisCachePatchSchedule': 'Get-AzureRmRedisCachePatchSchedule', - 'New-AzRedisCacheLink': 'New-AzureRmRedisCacheLink', - 'Set-AzRedisCache': 'Set-AzureRmRedisCache', - 'Get-AzRedisCacheLink': 'Get-AzureRmRedisCacheLink', - 'Get-AzRedisCacheFirewallRule': 'Get-AzureRmRedisCacheFirewallRule', - 'Get-AzRedisCache': 'Get-AzureRmRedisCache', - 'Reset-AzRedisCache': 'Reset-AzureRmRedisCache', - 'New-AzRedisCacheScheduleEntry': 'New-AzureRmRedisCacheScheduleEntry', - 'Remove-AzRedisCache': 'Remove-AzureRmRedisCache', - 'New-AzRedisCachePatchSchedule': 'New-AzureRmRedisCachePatchSchedule', - 'Remove-AzRedisCacheLink': 'Remove-AzureRmRedisCacheLink', - 'Get-AzRedisCacheKey': 'Get-AzureRmRedisCacheKey', - 'Remove-AzRedisCacheDiagnostics': 'Remove-AzureRmRedisCacheDiagnostics', - 'Export-AzRedisCache': 'Export-AzureRmRedisCache', - 'Remove-AzRedisCachePatchSchedule': 'Remove-AzureRmRedisCachePatchSchedule', - 'New-AzRedisCacheKey': 'New-AzureRmRedisCacheKey' - }, - 'Az.HDInsight': { - 'New-AzHDInsightCluster': 'New-AzureRmHDInsightCluster', - 'New-AzHDInsightPigJobDefinition': 'New-AzureRmHDInsightPigJobDefinition', - 'New-AzHDInsightSqoopJobDefinition': 'New-AzureRmHDInsightSqoopJobDefinition', - 'New-AzHDInsightHiveJobDefinition': 'New-AzureRmHDInsightHiveJobDefinition', - 'Add-AzHDInsightScriptAction': 'Add-AzureRmHDInsightScriptAction', - 'Grant-AzHDInsightRdpServicesAccess': 'Grant-AzureRmHDInsightRdpServicesAccess', - 'Grant-AzHDInsightHttpServicesAccess': 'Grant-AzureRmHDInsightHttpServicesAccess', - 'Get-AzHDInsightScriptActionHistory': 'Get-AzureRmHDInsightScriptActionHistory', - 'New-AzHDInsightStreamingMapReduceJobDefinition': 'New-AzureRmHDInsightStreamingMapReduceJobDefinition', - 'Set-AzHDInsightDefaultStorage': 'Set-AzureRmHDInsightDefaultStorage', - 'Set-AzHDInsightClusterSize': 'Set-AzureRmHDInsightClusterSize', - 'Get-AzHDInsightJob': 'Get-AzureRmHDInsightJob', - 'Revoke-AzHDInsightHttpServicesAccess': 'Revoke-AzureRmHDInsightHttpServicesAccess', - 'Add-AzHDInsightClusterIdentity': 'Add-AzureRmHDInsightClusterIdentity', - 'Enable-AzHDInsightOperationsManagementSuite': 'Enable-AzureRmHDInsightOperationsManagementSuite', - 'Add-AzHDInsightComponentVersion': 'Add-AzureRmHDInsightComponentVersion', - 'Add-AzHDInsightStorage': 'Add-AzureRmHDInsightStorage', - 'Stop-AzHDInsightJob': 'Stop-AzureRmHDInsightJob', - 'Invoke-AzHDInsightHiveJob': 'Invoke-AzureRmHDInsightHiveJob', - 'Get-AzHDInsightOperationsManagementSuite': 'Get-AzureRmHDInsightOperationsManagementSuite', - 'Get-AzHDInsightJobOutput': 'Get-AzureRmHDInsightJobOutput', - 'Wait-AzHDInsightJob': 'Wait-AzureRmHDInsightJob', - 'Remove-AzHDInsightCluster': 'Remove-AzureRmHDInsightCluster', - 'Revoke-AzHDInsightRdpServicesAccess': 'Revoke-AzureRmHDInsightRdpServicesAccess', - 'Enable-AzHDInsightOMS': 'Enable-AzureRmHDInsightOMS', - 'Add-AzHDInsightSecurityProfile': 'Add-AzureRmHDInsightSecurityProfile', - 'Get-AzHDInsightCluster': 'Get-AzureRmHDInsightCluster', - 'Submit-AzHDInsightScriptAction': 'Submit-AzureRmHDInsightScriptAction', - 'Get-AzHDInsightProperties': 'Get-AzureRmHDInsightProperties', - 'Add-AzHDInsightConfigValues': 'Add-AzureRmHDInsightConfigValues', - 'Start-AzHDInsightJob': 'Start-AzureRmHDInsightJob', - 'Disable-AzHDInsightOperationsManagementSuite': 'Disable-AzureRmHDInsightOperationsManagementSuite', - 'New-AzHDInsightMapReduceJobDefinition': 'New-AzureRmHDInsightMapReduceJobDefinition', - 'New-AzHDInsightClusterConfig': 'New-AzureRmHDInsightClusterConfig', - 'Get-AzHDInsightPersistedScriptAction': 'Get-AzureRmHDInsightPersistedScriptAction', - 'Add-AzHDInsightMetastore': 'Add-AzureRmHDInsightMetastore', - 'Use-AzHDInsightCluster': 'Use-AzureRmHDInsightCluster', - 'Disable-AzHDInsightOMS': 'Disable-AzureRmHDInsightOMS', - 'Set-AzHDInsightPersistedScriptAction': 'Set-AzureRmHDInsightPersistedScriptAction', - 'Remove-AzHDInsightPersistedScriptAction': 'Remove-AzureRmHDInsightPersistedScriptAction', - 'Get-AzHDInsightOMS': 'Get-AzureRmHDInsightOMS' - }, - 'Az.ServiceBus': { - 'Set-AzServiceBusGeoDRConfigurationFailOver': 'Set-AzureRmServiceBusGeoDRConfigurationFailOver', - 'Set-AzServiceBusQueue': 'Set-AzureRmServiceBusQueue', - 'New-AzServiceBusQueue': 'New-AzureRmServiceBusQueue', - 'Remove-AzServiceBusRule': 'Remove-AzureRmServiceBusRule', - 'Get-AzServiceBusNamespace': 'Get-AzureRmServiceBusNamespace', - 'Remove-AzServiceBusGeoDRConfiguration': 'Remove-AzureRmServiceBusGeoDRConfiguration', - 'Set-AzServiceBusNamespace': 'Set-AzureRmServiceBusNamespace', - 'New-AzServiceBusNamespace': 'New-AzureRmServiceBusNamespace', - 'Remove-AzServiceBusSubscription': 'Remove-AzureRmServiceBusSubscription', - 'New-AzServiceBusKey': 'New-AzureRmServiceBusKey', - 'Get-AzServiceBusTopic': 'Get-AzureRmServiceBusTopic', - 'Get-AzServiceBusKey': 'Get-AzureRmServiceBusKey', - 'Remove-AzServiceBusQueue': 'Remove-AzureRmServiceBusQueue', - 'Complete-AzServiceBusMigration': 'Complete-AzureRmServiceBusMigration', - 'Remove-AzServiceBusAuthorizationRule': 'Remove-AzureRmServiceBusAuthorizationRule', - 'Get-AzServiceBusGeoDRConfiguration': 'Get-AzureRmServiceBusGeoDRConfiguration', - 'Get-AzServiceBusAuthorizationRule': 'Get-AzureRmServiceBusAuthorizationRule', - 'Stop-AzServiceBusMigration': 'Stop-AzureRmServiceBusMigration', - 'Remove-AzServiceBusNamespace': 'Remove-AzureRmServiceBusNamespace', - 'Get-AzServiceBusRule': 'Get-AzureRmServiceBusRule', - 'New-AzServiceBusGeoDRConfiguration': 'New-AzureRmServiceBusGeoDRConfiguration', - 'New-AzServiceBusRule': 'New-AzureRmServiceBusRule', - 'Set-AzServiceBusSubscription': 'Set-AzureRmServiceBusSubscription', - 'Get-AzServiceBusOperation': 'Get-AzureRmServiceBusOperation', - 'Set-AzServiceBusRule': 'Set-AzureRmServiceBusRule', - 'New-AzServiceBusSubscription': 'New-AzureRmServiceBusSubscription', - 'New-AzServiceBusAuthorizationRule': 'New-AzureRmServiceBusAuthorizationRule', - 'Start-AzServiceBusMigration': 'Start-AzureRmServiceBusMigration', - 'Get-AzServiceBusMigration': 'Get-AzureRmServiceBusMigration', - 'Get-AzServiceBusSubscription': 'Get-AzureRmServiceBusSubscription', - 'Set-AzServiceBusGeoDRConfigurationBreakPair': 'Set-AzureRmServiceBusGeoDRConfigurationBreakPair', - 'New-AzServiceBusTopic': 'New-AzureRmServiceBusTopic', - 'Set-AzServiceBusTopic': 'Set-AzureRmServiceBusTopic', - 'Remove-AzServiceBusTopic': 'Remove-AzureRmServiceBusTopic', - 'Remove-AzServiceBusMigration': 'Remove-AzureRmServiceBusMigration', - 'Set-AzServiceBusAuthorizationRule': 'Set-AzureRmServiceBusAuthorizationRule', - 'Test-AzServiceBusName': 'Test-AzureRmServiceBusName', - 'Get-AzServiceBusQueue': 'Get-AzureRmServiceBusQueue' - }, - 'Az.StreamAnalytics': { - 'Remove-AzStreamAnalyticsOutput': 'Remove-AzureRmStreamAnalyticsOutput', - 'Remove-AzStreamAnalyticsInput': 'Remove-AzureRmStreamAnalyticsInput', - 'Start-AzStreamAnalyticsJob': 'Start-AzureRmStreamAnalyticsJob', - 'New-AzStreamAnalyticsOutput': 'New-AzureRmStreamAnalyticsOutput', - 'Remove-AzStreamAnalyticsJob': 'Remove-AzureRmStreamAnalyticsJob', - 'Test-AzStreamAnalyticsOutput': 'Test-AzureRmStreamAnalyticsOutput', - 'Get-AzStreamAnalyticsDefaultFunctionDefinition': 'Get-AzureRmStreamAnalyticsDefaultFunctionDefinition', - 'Test-AzStreamAnalyticsInput': 'Test-AzureRmStreamAnalyticsInput', - 'Remove-AzStreamAnalyticsFunction': 'Remove-AzureRmStreamAnalyticsFunction', - 'Get-AzStreamAnalyticsOutput': 'Get-AzureRmStreamAnalyticsOutput', - 'Get-AzStreamAnalyticsInput': 'Get-AzureRmStreamAnalyticsInput', - 'New-AzStreamAnalyticsTransformation': 'New-AzureRmStreamAnalyticsTransformation', - 'Test-AzStreamAnalyticsFunction': 'Test-AzureRmStreamAnalyticsFunction', - 'Stop-AzStreamAnalyticsJob': 'Stop-AzureRmStreamAnalyticsJob', - 'New-AzStreamAnalyticsInput': 'New-AzureRmStreamAnalyticsInput', - 'Get-AzStreamAnalyticsTransformation': 'Get-AzureRmStreamAnalyticsTransformation', - 'Get-AzStreamAnalyticsFunction': 'Get-AzureRmStreamAnalyticsFunction', - 'Get-AzStreamAnalyticsQuota': 'Get-AzureRmStreamAnalyticsQuota', - 'New-AzStreamAnalyticsFunction': 'New-AzureRmStreamAnalyticsFunction', - 'New-AzStreamAnalyticsJob': 'New-AzureRmStreamAnalyticsJob', - 'Get-AzStreamAnalyticsJob': 'Get-AzureRmStreamAnalyticsJob' - }, - 'Az.Subscription': { - 'New-AzSubscription': 'New-AzureRmSubscription' - }, - 'Az.Search': { - 'New-AzSearchAdminKey': 'New-AzureRmSearchAdminKey', - 'Remove-AzSearchService': 'Remove-AzureRmSearchService', - 'Remove-AzSearchQueryKey': 'Remove-AzureRmSearchQueryKey', - 'Get-AzSearchQueryKey': 'Get-AzureRmSearchQueryKey', - 'Set-AzSearchService': 'Set-AzureRmSearchService', - 'Get-AzSearchAdminKeyPair': 'Get-AzureRmSearchAdminKeyPair', - 'New-AzSearchQueryKey': 'New-AzureRmSearchQueryKey', - 'Get-AzSearchService': 'Get-AzureRmSearchService', - 'New-AzSearchService': 'New-AzureRmSearchService' - }, - 'Az.Batch': { - 'Stop-AzBatchTask': 'Stop-AzureBatchTask', - 'Remove-AzBatchAccount': 'Remove-AzureRmBatchAccount', - 'Remove-AzBatchPool': 'Remove-AzureBatchPool', - 'Set-AzBatchAccount': 'Set-AzureRmBatchAccount', - 'Remove-AzBatchTask': 'Remove-AzureBatchTask', - 'Get-AzBatchAccount': 'Get-AzureRmBatchAccount', - 'Set-AzBatchPool': 'Set-AzureBatchPool', - 'New-AzBatchApplicationPackage': 'New-AzureRmBatchApplicationPackage', - 'Get-AzBatchNodeFile': 'Get-AzureBatchNodeFile', - 'Get-AzBatchPoolStatistics': 'Get-AzureBatchPoolStatistics', - 'Get-AzBatchNodeAgentSku': 'Get-AzureBatchNodeAgentSku', - 'Get-AzBatchPoolUsageMetrics': 'Get-AzureBatchPoolUsageMetrics', - 'New-AzBatchTask': 'New-AzureBatchTask', - 'Remove-AzBatchApplicationPackage': 'Remove-AzureRmBatchApplicationPackage', - 'Get-AzBatchRemoteLoginSettings': 'Get-AzureBatchRemoteLoginSettings', - 'Set-AzBatchComputeNodeUser': 'Set-AzureBatchComputeNodeUser', - 'New-AzBatchComputeNodeUser': 'New-AzureBatchComputeNodeUser', - 'Remove-AzBatchComputeNode': 'Remove-AzureBatchComputeNode', - 'Get-AzBatchJobSchedule': 'Get-AzureBatchJobSchedule', - 'Restart-AzBatchComputeNode': 'Restart-AzureBatchComputeNode', - 'Get-AzBatchLocationQuotas': 'Get-AzureRmBatchLocationQuotas', - 'Start-AzBatchPoolResize': 'Start-AzureBatchPoolResize', - 'Remove-AzBatchApplication': 'Remove-AzureRmBatchApplication', - 'New-AzBatchJob': 'New-AzureBatchJob', - 'Get-AzBatchComputeNode': 'Get-AzureBatchComputeNode', - 'Disable-AzBatchComputeNodeScheduling': 'Disable-AzureBatchComputeNodeScheduling', - 'Enable-AzBatchTask': 'Enable-AzureBatchTask', - 'Get-AzBatchTaskCounts': 'Get-AzureBatchTaskCounts', - 'Enable-AzBatchAutoScale': 'Enable-AzureBatchAutoScale', - 'Set-AzBatchApplication': 'Set-AzureRmBatchApplication', - 'Stop-AzBatchPoolResize': 'Stop-AzureBatchPoolResize', - 'Disable-AzBatchAutoScale': 'Disable-AzureBatchAutoScale', - 'Enable-AzBatchJobSchedule': 'Enable-AzureBatchJobSchedule', - 'Set-AzBatchJobSchedule': 'Set-AzureBatchJobSchedule', - 'Get-AzBatchApplication': 'Get-AzureRmBatchApplication', - 'Reactivate-AzBatchTask': 'Reactivate-AzureBatchTask', - 'Get-AzBatchApplicationPackage': 'Get-AzureRmBatchApplicationPackage', - 'Set-AzBatchPoolOSVersion': 'Set-AzureBatchPoolOSVersion', - 'Stop-AzBatchJob': 'Stop-AzureBatchJob', - 'Stop-AzBatchJobSchedule': 'Stop-AzureBatchJobSchedule', - 'Set-AzBatchJob': 'Set-AzureBatchJob', - 'Disable-AzBatchJob': 'Disable-AzureBatchJob', - 'Get-AzBatchJob': 'Get-AzureBatchJob', - 'New-AzBatchJobSchedule': 'New-AzureBatchJobSchedule', - 'Get-AzBatchSubscriptionQuotas': 'Get-AzureRmBatchSubscriptionQuotas', - 'Remove-AzBatchNodeFile': 'Remove-AzureBatchNodeFile', - 'New-AzBatchAccountKey': 'New-AzureRmBatchAccountKey', - 'Get-AzBatchJobPreparationAndReleaseTaskStatus': 'Get-AzureBatchJobPreparationAndReleaseTaskStatus', - 'Get-AzBatchSubtask': 'Get-AzureBatchSubtask', - 'New-AzBatchApplication': 'New-AzureRmBatchApplication', - 'Remove-AzBatchJob': 'Remove-AzureBatchJob', - 'New-AzBatchPool': 'New-AzureBatchPool', - 'Remove-AzBatchCertificate': 'Remove-AzureBatchCertificate', - 'Enable-AzBatchComputeNodeScheduling': 'Enable-AzureBatchComputeNodeScheduling', - 'Get-AzBatchPoolNodeCounts': 'Get-AzureBatchPoolNodeCounts', - 'Get-AzBatchPool': 'Get-AzureBatchPool', - 'Set-AzBatchTask': 'Set-AzureBatchTask', - 'New-AzBatchAccount': 'New-AzureRmBatchAccount', - 'Get-AzBatchRemoteDesktopProtocolFile': 'Get-AzureBatchRemoteDesktopProtocolFile', - 'Get-AzBatchNodeFileContent': 'Get-AzureBatchNodeFileContent', - 'Stop-AzBatchCertificateDeletion': 'Stop-AzureBatchCertificateDeletion', - 'Remove-AzBatchJobSchedule': 'Remove-AzureBatchJobSchedule', - 'Get-AzBatchTask': 'Get-AzureBatchTask', - 'Enable-AzBatchJob': 'Enable-AzureBatchJob', - 'Get-AzBatchAccountKeys': 'Get-AzureRmBatchAccountKeys', - 'Start-AzBatchComputeNodeServiceLogUpload': 'Start-AzureBatchComputeNodeServiceLogUpload', - 'Disable-AzBatchJobSchedule': 'Disable-AzureBatchJobSchedule', - 'Remove-AzBatchComputeNodeUser': 'Remove-AzureBatchComputeNodeUser', - 'Reset-AzBatchComputeNode': 'Reset-AzureBatchComputeNode', - 'Test-AzBatchAutoScale': 'Test-AzureBatchAutoScale', - 'New-AzBatchCertificate': 'New-AzureBatchCertificate', - 'Get-AzBatchJobStatistics': 'Get-AzureBatchJobStatistics', - 'Get-AzBatchCertificate': 'Get-AzureBatchCertificate' - }, - 'Az.Aks': { - 'Start-AzAksDashboard': 'Start-AzureRmAksDashboard', - 'Remove-AzAks': 'Remove-AzureRmAks', - 'Stop-AzAksDashboard': 'Stop-AzureRmAksDashboard', - 'Set-AzAks': 'Set-AzureRmAks', - 'New-AzAks': 'New-AzureRmAks', - 'Get-AzAks': 'Get-AzureRmAks', - 'Import-AzAksCredential': 'Import-AzureRmAksCredential' - }, - 'Az.Security': { - 'Get-AzSecurityWorkspaceSetting': 'Get-AzureRmSecurityWorkspaceSetting', - 'Set-AzSecurityPricing': 'Set-AzureRmSecurityPricing', - 'Get-AzSecurityContact': 'Get-AzureRmSecurityContact', - 'Remove-AzSecurityWorkspaceSetting': 'Remove-AzureRmSecurityWorkspaceSetting', - 'Get-AzSecurityPricing': 'Get-AzureRmSecurityPricing', - 'Get-AzSecurityAlert': 'Get-AzureRmSecurityAlert', - 'Get-AzSecurityCompliance': 'Get-AzureRmSecurityCompliance', - 'Set-AzSecurityContact': 'Set-AzureRmSecurityContact', - 'Get-AzJitNetworkAccessPolicy': 'Get-AzureRmJitNetworkAccessPolicy', - 'Set-AzSecurityAutoProvisioningSetting': 'Set-AzureRmSecurityAutoProvisioningSetting', - 'Get-AzSecurityLocation': 'Get-AzureRmSecurityLocation', - 'Remove-AzSecurityContact': 'Remove-AzureRmSecurityContact', - 'Get-AzSecurityTask': 'Get-AzureRmSecurityTask', - 'Set-AzSecurityAlert': 'Set-AzureRmSecurityAlert', - 'Get-AzExternalSecuritySolution': 'Get-AzureRmExternalSecuritySolution', - 'Get-AzDiscoveredSecuritySolution': 'Get-AzureRmDiscoveredSecuritySolution', - 'Set-AzJitNetworkAccessPolicy': 'Set-AzureRmJitNetworkAccessPolicy', - 'Set-AzSecurityWorkspaceSetting': 'Set-AzureRmSecurityWorkspaceSetting', - 'Remove-AzJitNetworkAccessPolicy': 'Remove-AzureRmJitNetworkAccessPolicy', - 'Start-AzJitNetworkAccessPolicy': 'Start-AzureRmJitNetworkAccessPolicy', - 'Get-AzSecurityAutoProvisioningSetting': 'Get-AzureRmSecurityAutoProvisioningSetting' - }, - 'Az.Dns': { - 'Set-AzDnsZone': 'Set-AzureRmDnsZone', - 'Remove-AzDnsRecordConfig': 'Remove-AzureRmDnsRecordConfig', - 'New-AzDnsRecordConfig': 'New-AzureRmDnsRecordConfig', - 'New-AzDnsRecordSet': 'New-AzureRmDnsRecordSet', - 'Remove-AzDnsRecordSet': 'Remove-AzureRmDnsRecordSet', - 'Get-AzDnsZone': 'Get-AzureRmDnsZone', - 'New-AzDnsZone': 'New-AzureRmDnsZone', - 'Remove-AzDnsZone': 'Remove-AzureRmDnsZone', - 'Set-AzDnsRecordSet': 'Set-AzureRmDnsRecordSet', - 'Get-AzDnsRecordSet': 'Get-AzureRmDnsRecordSet', - 'Add-AzDnsRecordConfig': 'Add-AzureRmDnsRecordConfig' - }, - 'Az.DevSpaces': { - 'Update-AzDevSpacesController': 'Update-AzureRmDevSpacesController', - 'New-AzDevSpacesController': 'New-AzureRmDevSpacesController', - 'Remove-AzDevSpacesController': 'Remove-AzureRmDevSpacesController', - 'Get-AzDevSpacesController': 'Get-AzureRmDevSpacesController' - }, - 'Az.ManagementPartner': { - 'New-AzManagementPartner': 'New-AzureRmManagementPartner', - 'Get-AzManagementPartner': 'Get-AzureRmManagementPartner', - 'Update-AzManagementPartner': 'Update-AzureRmManagementPartner', - 'Remove-AzManagementPartner': 'Remove-AzureRmManagementPartner' - }, - 'Az.Compute.ManagedService': { - 'ConvertTo-AzVhd': 'ConvertTo-AzureRmVhd' - }, - 'Az.RecoveryServices': { - 'Get-AzRecoveryServicesVault': 'Get-AzureRmRecoveryServicesVault', - 'Set-AzRecoveryServicesBackupProperties': 'Set-AzureRmRecoveryServicesBackupProperties', - 'Remove-AzRecoveryServicesVault': 'Remove-AzureRmRecoveryServicesVault', - 'New-AzRecoveryServicesVault': 'New-AzureRmRecoveryServicesVault', - 'Get-AzRecoveryServicesBackupProperty': 'Get-AzureRmRecoveryServicesBackupProperty', - 'Set-AzRecoveryServicesVaultContext': 'Set-AzureRmRecoveryServicesVaultContext', - 'Get-AzRecoveryServicesBackupProperties': 'Get-AzureRmRecoveryServicesBackupProperties', - 'Get-AzRecoveryServicesVaultSettingsFile': 'Get-AzureRmRecoveryServicesVaultSettingsFile' - }, - 'Az.EventHub': { - 'Set-AzEventHubGeoDRConfigurationBreakPair': 'Set-AzureRmEventHubGeoDRConfigurationBreakPair', - 'Remove-AzEventHubConsumerGroup': 'Remove-AzureRmEventHubConsumerGroup', - 'Remove-AzEventHubNamespace': 'Remove-AzureRmEventHubNamespace', - 'New-AzEventHubGeoDRConfiguration': 'New-AzureRmEventHubGeoDRConfiguration', - 'Get-AzEventHubConsumerGroup': 'Get-AzureRmEventHubConsumerGroup', - 'Get-AzEventHubKey': 'Get-AzureRmEventHubKey', - 'Set-AzEventHubNamespace': 'Set-AzureRmEventHubNamespace', - 'Get-AzEventHubGeoDRConfiguration': 'Get-AzureRmEventHubGeoDRConfiguration', - 'Set-AzEventHubAuthorizationRule': 'Set-AzureRmEventHubAuthorizationRule', - 'Test-AzEventHubName': 'Test-AzureRmEventHubName', - 'Get-AzEventHubNamespace': 'Get-AzureRmEventHubNamespace', - 'Remove-AzEventHub': 'Remove-AzureRmEventHub', - 'New-AzEventHubNamespace': 'New-AzureRmEventHubNamespace', - 'New-AzEventHub': 'New-AzureRmEventHub', - 'Set-AzEventHubGeoDRConfigurationFailOver': 'Set-AzureRmEventHubGeoDRConfigurationFailOver', - 'New-AzEventHubKey': 'New-AzureRmEventHubKey', - 'Get-AzEventHub': 'Get-AzureRmEventHub', - 'Set-AzEventHub': 'Set-AzureRmEventHub', - 'Set-AzEventHubConsumerGroup': 'Set-AzureRmEventHubConsumerGroup', - 'Get-AzEventHubAuthorizationRule': 'Get-AzureRmEventHubAuthorizationRule', - 'Remove-AzEventHubGeoDRConfiguration': 'Remove-AzureRmEventHubGeoDRConfiguration', - 'Remove-AzEventHubAuthorizationRule': 'Remove-AzureRmEventHubAuthorizationRule', - 'New-AzEventHubAuthorizationRule': 'New-AzureRmEventHubAuthorizationRule', - 'New-AzEventHubConsumerGroup': 'New-AzureRmEventHubConsumerGroup' - }, - 'Az.MachineLearningCompute': { - 'New-AzMlOpCluster': 'New-AzureRmMlOpCluster', - 'Get-AzMlOpCluster': 'Get-AzureRmMlOpCluster', - 'Get-AzMlOpClusterKey': 'Get-AzureRmMlOpClusterKey', - 'Test-AzMlOpClusterSystemServicesUpdateAvailability': 'Test-AzureRmMlOpClusterSystemServicesUpdateAvailability', - 'Remove-AzMlOpCluster': 'Remove-AzureRmMlOpCluster', - 'Update-AzMlOpClusterSystemService': 'Update-AzureRmMlOpClusterSystemService', - 'Set-AzMlOpCluster': 'Set-AzureRmMlOpCluster' - }, - 'Az.LogicApp': { - 'Set-AzIntegrationAccountGeneratedIcn': 'Set-AzureRmIntegrationAccountGeneratedIcn', - 'Get-AzLogicAppTriggerHistory': 'Get-AzureRmLogicAppTriggerHistory', - 'Get-AzIntegrationAccountCallbackUrl': 'Get-AzureRmIntegrationAccountCallbackUrl', - 'Set-AzIntegrationAccount': 'Set-AzureRmIntegrationAccount', - 'Get-AzIntegrationAccountSchema': 'Get-AzureRmIntegrationAccountSchema', - 'New-AzIntegrationAccountSchema': 'New-AzureRmIntegrationAccountSchema', - 'Set-AzIntegrationAccountPartner': 'Set-AzureRmIntegrationAccountPartner', - 'Remove-AzLogicApp': 'Remove-AzureRmLogicApp', - 'Get-AzLogicAppRunHistory': 'Get-AzureRmLogicAppRunHistory', - 'New-AzIntegrationAccountMap': 'New-AzureRmIntegrationAccountMap', - 'Start-AzLogicApp': 'Start-AzureRmLogicApp', - 'Get-AzLogicAppRunAction': 'Get-AzureRmLogicAppRunAction', - 'Get-AzIntegrationAccountGeneratedIcn': 'Get-AzureRmIntegrationAccountGeneratedIcn', - 'Get-AzIntegrationAccountMap': 'Get-AzureRmIntegrationAccountMap', - 'Remove-AzIntegrationAccountAgreement': 'Remove-AzureRmIntegrationAccountAgreement', - 'New-AzLogicApp': 'New-AzureRmLogicApp', - 'New-AzIntegrationAccountAgreement': 'New-AzureRmIntegrationAccountAgreement', - 'Get-AzLogicApp': 'Get-AzureRmLogicApp', - 'Get-AzIntegrationAccountPartner': 'Get-AzureRmIntegrationAccountPartner', - 'Set-AzIntegrationAccountAgreement': 'Set-AzureRmIntegrationAccountAgreement', - 'Set-AzIntegrationAccountMap': 'Set-AzureRmIntegrationAccountMap', - 'New-AzIntegrationAccount': 'New-AzureRmIntegrationAccount', - 'Get-AzLogicAppTriggerCallbackUrl': 'Get-AzureRmLogicAppTriggerCallbackUrl', - 'Get-AzIntegrationAccount': 'Get-AzureRmIntegrationAccount', - 'New-AzIntegrationAccountPartner': 'New-AzureRmIntegrationAccountPartner', - 'Stop-AzLogicAppRun': 'Stop-AzureRmLogicAppRun', - 'Get-AzIntegrationAccountCertificate': 'Get-AzureRmIntegrationAccountCertificate', - 'Set-AzIntegrationAccountReceivedIcn': 'Set-AzureRmIntegrationAccountReceivedIcn', - 'Remove-AzIntegrationAccountSchema': 'Remove-AzureRmIntegrationAccountSchema', - 'Set-AzIntegrationAccountCertificate': 'Set-AzureRmIntegrationAccountCertificate', - 'Remove-AzIntegrationAccountReceivedIcn': 'Remove-AzureRmIntegrationAccountReceivedIcn', - 'Remove-AzIntegrationAccount': 'Remove-AzureRmIntegrationAccount', - 'Set-AzLogicApp': 'Set-AzureRmLogicApp', - 'Test-AzLogicApp': 'Test-AzureRmLogicApp', - 'Get-AzIntegrationAccountReceivedIcn': 'Get-AzureRmIntegrationAccountReceivedIcn', - 'Get-AzLogicAppUpgradedDefinition': 'Get-AzureRmLogicAppUpgradedDefinition', - 'Set-AzIntegrationAccountSchema': 'Set-AzureRmIntegrationAccountSchema', - 'Remove-AzIntegrationAccountMap': 'Remove-AzureRmIntegrationAccountMap', - 'Remove-AzIntegrationAccountPartner': 'Remove-AzureRmIntegrationAccountPartner', - 'Get-AzIntegrationAccountAgreement': 'Get-AzureRmIntegrationAccountAgreement', - 'New-AzIntegrationAccountCertificate': 'New-AzureRmIntegrationAccountCertificate', - 'Get-AzLogicAppTrigger': 'Get-AzureRmLogicAppTrigger', - 'Remove-AzIntegrationAccountCertificate': 'Remove-AzureRmIntegrationAccountCertificate' - }, - 'Az.SignalR': { - 'Remove-AzSignalR': 'Remove-AzureRmSignalR', - 'Get-AzSignalRKey': 'Get-AzureRmSignalRKey', - 'Get-AzSignalR': 'Get-AzureRmSignalR', - 'New-AzSignalR': 'New-AzureRmSignalR', - 'New-AzSignalRKey': 'New-AzureRmSignalRKey' - }, - 'Az.ApplicationInsights': { - 'New-AzApplicationInsightsApiKey': 'New-AzureRmApplicationInsightsApiKey', - 'Remove-AzApplicationInsights': 'Remove-AzureRmApplicationInsights', - 'Set-AzApplicationInsightsContinuousExport': 'Set-AzureRmApplicationInsightsContinuousExport', - 'New-AzApplicationInsights': 'New-AzureRmApplicationInsights', - 'Get-AzApplicationInsights': 'Get-AzureRmApplicationInsights', - 'Get-AzApplicationInsightsApiKey': 'Get-AzureRmApplicationInsightsApiKey', - 'Remove-AzApplicationInsightsApiKey': 'Remove-AzureRmApplicationInsightsApiKey', - 'Get-AzApplicationInsightsContinuousExport': 'Get-AzureRmApplicationInsightsContinuousExport', - 'Set-AzApplicationInsightsPricingPlan': 'Set-AzureRmApplicationInsightsPricingPlan', - 'New-AzApplicationInsightsContinuousExport': 'New-AzureRmApplicationInsightsContinuousExport', - 'Set-AzApplicationInsightsDailyCap': 'Set-AzureRmApplicationInsightsDailyCap', - 'Remove-AzApplicationInsightsContinuousExport': 'Remove-AzureRmApplicationInsightsContinuousExport' - } -} "; } } From c70aad47a320a4a205c09498fbf8fcb632befa3f Mon Sep 17 00:00:00 2001 From: Maddie Clayton Date: Fri, 14 Sep 2018 09:23:35 -0700 Subject: [PATCH 10/11] Update SignatureIssues.csv --- .../Exceptions/Az.Network/SignatureIssues.csv | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv index c5aed2934ae7..ff42ccb535ab 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv @@ -248,9 +248,9 @@ "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkSubnetConfigCommand","Set-AzureRmVirtualNetworkSubnetConfig","1","8100","Set-AzureRmVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkSubnetConfigCommand","Add-AzureRmVirtualNetworkSubnetConfig","1","8100","Add-AzureRmVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkSubnetConfigCommand","New-AzureRmVirtualNetworkSubnetConfig","1","8100","New-AzureRmVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.NewAzureDelegationCommand","New-AzureRmDelegation","1","8100","New-AzureRmDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureDelegationCommand","Remove-AzureRmDelegation","1","8100","Remove-AzureRmDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.AddAzureDelegationCommand","Add-AzureRmDelegation","1","8100","Add-AzureRmDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"c:\workspace\powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.AddAzureSubnetDelegation","Add-AzureRmDelegation","1","8100","Add-AzureRmDelegation Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"c:\workspace\powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.RemoveAzureSubnetDelegation","Remove-AzureRmDelegation","1","8100","Remove-AzureRmDelegation Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"c:\workspace\powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.NewAzureDelegationCommand","New-AzureRmDelegation","1","8100","New-AzureRmDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkCommand","Get-AzureRmVirtualNetwork","1","8510","Cmdlet 'Get-AzureRmVirtualNetwork' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.NetworkWatcher.NewAzureNetworkWatcherProtocolConfiguration","New-AzureRmNetworkWatcherProtocolConfiguration","1","8100","New-AzureRmNetworkWatcherProtocolConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.Automation.GetAzureRmDdosProtectionPlan","Get-AzureRmDdosProtectionPlan","1","8510","Cmdlet 'Get-AzureRmDdosProtectionPlan' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." @@ -265,4 +265,4 @@ "c:\workspace\powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand","Set-AzureRmExpressRouteCrossConnection","1","8510","Cmdlet 'Set-AzureRmExpressRouteCrossConnection' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "c:\workspace\powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionArpTableCommand","Get-AzureRmExpressRouteCrossConnectionArpTable","1","8510","Cmdlet 'Get-AzureRmExpressRouteCrossConnectionArpTable' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "c:\workspace\powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableCommand","Get-AzureRmExpressRouteCrossConnectionRouteTable","1","8510","Cmdlet 'Get-AzureRmExpressRouteCrossConnectionRouteTable' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." -"c:\workspace\powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableSummaryCommand","Get-AzureRmExpressRouteCrossConnectionRouteTableSummary","1","8510","Cmdlet 'Get-AzureRmExpressRouteCrossConnectionRouteTableSummary' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." \ No newline at end of file +"c:\workspace\powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableSummaryCommand","Get-AzureRmExpressRouteCrossConnectionRouteTableSummary","1","8510","Cmdlet 'Get-AzureRmExpressRouteCrossConnectionRouteTableSummary' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." From 284ef5391d040b8ff27249e4c578280f39a08d5a Mon Sep 17 00:00:00 2001 From: Maddie Clayton Date: Fri, 14 Sep 2018 09:24:51 -0700 Subject: [PATCH 11/11] Update SignatureIssues.csv --- .../Exceptions/AzureRM.Network/SignatureIssues.csv | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/StaticAnalysis/Exceptions/AzureRM.Network/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/AzureRM.Network/SignatureIssues.csv index 7e18d8161b80..7a98097823c8 100644 --- a/tools/StaticAnalysis/Exceptions/AzureRM.Network/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/AzureRM.Network/SignatureIssues.csv @@ -249,9 +249,9 @@ "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.SetAzureVirtualNetworkSubnetConfigCommand","Set-AzureRmVirtualNetworkSubnetConfig","1","8100","Set-AzureRmVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Set indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.AddAzureVirtualNetworkSubnetConfigCommand","Add-AzureRmVirtualNetworkSubnetConfig","1","8100","Add-AzureRmVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkSubnetConfigCommand","New-AzureRmVirtualNetworkSubnetConfig","1","8100","New-AzureRmVirtualNetworkSubnetConfig Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.NewAzureDelegationCommand","New-AzureRmDelegation","1","8100","New-AzureRmDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.RemoveAzureDelegationCommand","Remove-AzureRmDelegation","1","8100","Remove-AzureRmDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.AddAzureDelegationCommand","Add-AzureRmDelegation","1","8100","Add-AzureRmDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"c:\workspace\powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.AddAzureSubnetDelegation","Add-AzureRmDelegation","1","8100","Add-AzureRmDelegation Does not support ShouldProcess but the cmdlet verb Add indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"c:\workspace\powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.RemoveAzureSubnetDelegation","Remove-AzureRmDelegation","1","8100","Remove-AzureRmDelegation Does not support ShouldProcess but the cmdlet verb Remove indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"c:\workspace\powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.NewAzureDelegationCommand","New-AzureRmDelegation","1","8100","New-AzureRmDelegation Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkCommand","Get-AzureRmVirtualNetwork","1","8510","Cmdlet 'Get-AzureRmVirtualNetwork' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.NetworkWatcher.NewAzureNetworkWatcherProtocolConfiguration","New-AzureRmNetworkWatcherProtocolConfiguration","1","8100","New-AzureRmNetworkWatcherProtocolConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "C:\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.Automation.GetAzureRmDdosProtectionPlan","Get-AzureRmDdosProtectionPlan","1","8510","Cmdlet 'Get-AzureRmDdosProtectionPlan' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." @@ -268,4 +268,4 @@ "c:\workspace\powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableCommand","Get-AzureRmExpressRouteCrossConnectionRouteTable","1","8510","Cmdlet 'Get-AzureRmExpressRouteCrossConnectionRouteTable' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "c:\workspace\powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRMExpressRouteCrossConnectionRouteTableSummaryCommand","Get-AzureRmExpressRouteCrossConnectionRouteTableSummary","1","8510","Cmdlet 'Get-AzureRmExpressRouteCrossConnectionRouteTableSummary' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "c:\workspace\powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteCommand","New-AzureRmVirtualHubRoute","1","8100","New-AzureRmVirtualHubRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" -"c:\workspace\powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteTableCommand","New-AzureRmVirtualHubRouteTable","1","8100","New-AzureRmVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" \ No newline at end of file +"c:\workspace\powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Network\Microsoft.Azure.Commands.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteTableCommand","New-AzureRmVirtualHubRouteTable","1","8100","New-AzureRmVirtualHubRouteTable Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue"