diff --git a/build.proj b/build.proj index 42efa2caf63a..297a96ce987f 100644 --- a/build.proj +++ b/build.proj @@ -183,7 +183,7 @@ Microsoft.Powershell.*.dll,System*.dll,Microsoft.VisualBasic.dll,Microsoft.CSharp.dll,Microsoft.CodeAnalysis.dll,Microsoft.CodeAnalysis.CSharp.dll System.Security.Cryptography.ProtectedData.dll,System.Configuration.ConfigurationManager.dll,System.Runtime.CompilerServices.Unsafe.dll,System.IO.FileSystem.AccessControl.dll,System.Buffers.dll,System.Text.Encodings.Web.dll,System.CodeDom.dll,System.Management.dll,System.Text.Json.dll,System.Threading.Tasks.Extensions.dll - + diff --git a/src/Accounts/Accounts/help/Add-AzEnvironment.md b/src/Accounts/Accounts/help/Add-AzEnvironment.md index 9052c69e9b1f..c2e380711ddf 100644 --- a/src/Accounts/Accounts/help/Add-AzEnvironment.md +++ b/src/Accounts/Accounts/help/Add-AzEnvironment.md @@ -46,7 +46,7 @@ Add-AzEnvironment [-Name] [[-StorageEndpoint] ] [-ARMEndpoint] ### Discovery ``` -Add-AzEnvironment [-AutoDiscover] [-Uri ] [-Scope ] +Add-AzEnvironment -AutoDiscover [-Uri ] [-Scope {Process | CurrentUser}] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` diff --git a/src/Aks/Aks/Az.Aks.psd1 b/src/Aks/Aks/Az.Aks.psd1 index b08a9417ae0f..5a3512e84ff9 100644 --- a/src/Aks/Aks/Az.Aks.psd1 +++ b/src/Aks/Aks/Az.Aks.psd1 @@ -75,8 +75,8 @@ NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Aks.dll') FunctionsToExport = @() # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. -CmdletsToExport = 'Get-AzAks', 'New-AzAks', 'Remove-AzAks', 'Import-AzAksCredential', - 'Start-AzAksDashboard', 'Stop-AzAksDashboard', 'Set-AzAks', +CmdletsToExport = 'Get-AzAksCluster', 'New-AzAksCluster', 'Remove-AzAksCluster', 'Import-AzAksCredential', + 'Start-AzAksDashboard', 'Stop-AzAksDashboard', 'Set-AzAksCluster', 'New-AzAksNodePool', 'Update-AzAksNodePool', 'Remove-AzAksNodePool', 'Get-AzAksNodePool', 'Install-AzAksKubectl', 'Get-AzAksVersion' @@ -84,7 +84,7 @@ CmdletsToExport = 'Get-AzAks', 'New-AzAks', 'Remove-AzAks', 'Import-AzAksCredent # VariablesToExport = @() # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. -AliasesToExport = @() +AliasesToExport = @('Get-AzAks', 'New-AzAks', 'Remove-AzAks', 'Set-AzAks') # DSC resources to export from this module # DscResourcesToExport = @() diff --git a/src/Aks/Aks/ChangeLog.md b/src/Aks/Aks/ChangeLog.md index bff7acd00551..d12911444f19 100644 --- a/src/Aks/Aks/ChangeLog.md +++ b/src/Aks/Aks/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release +* Removed `ClientIdAndSecret` to `ServicePrincipalIdAndSecret` and set `ClientIdAndSecret` as an alias [#12381]. +* Removed `Get-AzAks`/`New-AzAks`/`Remove-AzAks`/`Set-AzAks` to `Get-AzAksCluster`/`New-AzAksCluster`/`Remove-AzAksCluster`/`Set-AzAksCluster` and set the original ones as alias [#12373]. ## Version 1.1.3 * Fixed bug `Get-AzAks` doesn't get all clusters [#12296] diff --git a/src/Aks/Aks/Commands/CreateOrUpdateKubeBase.cs b/src/Aks/Aks/Commands/CreateOrUpdateKubeBase.cs index 5cc16e7b2db4..3e1790a4f93e 100644 --- a/src/Aks/Aks/Commands/CreateOrUpdateKubeBase.cs +++ b/src/Aks/Aks/Commands/CreateOrUpdateKubeBase.cs @@ -37,6 +37,7 @@ using Microsoft.WindowsAzure.Commands.Utilities.Common; using Microsoft.Rest.Azure.OData; using Microsoft.Azure.Management.Internal.Resources.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Aks { @@ -69,7 +70,9 @@ public abstract class CreateOrUpdateKubeBase : KubeCmdletBase Mandatory = false, ParameterSetName = DefaultParamSet, HelpMessage = "The client id and client secret associated with the AAD application / service principal.")] - public PSCredential ClientIdAndSecret { get; set; } + [Alias("ClientIdAndSecret")] + [CmdletParameterBreakingChange("ClientIdAndSecret", ReplaceMentCmdletParameterName = "ServicePrincipalIdAndSecret")] + public PSCredential ServicePrincipalIdAndSecret { get; set; } [Parameter(Mandatory = false, HelpMessage = "Azure location for the cluster. Defaults to the location of the resource group.")] @@ -149,7 +152,7 @@ protected virtual ManagedCluster BuildNewCluster() new ContainerServiceLinuxProfile(LinuxProfileAdminUserName, new ContainerServiceSshConfiguration(pubKey)); - var acsServicePrincipal = EnsureServicePrincipal(ClientIdAndSecret?.UserName, ClientIdAndSecret?.Password?.ToString()); + var acsServicePrincipal = EnsureServicePrincipal(ServicePrincipalIdAndSecret?.UserName, ServicePrincipalIdAndSecret?.Password?.ToString()); var spProfile = new ManagedClusterServicePrincipalProfile( acsServicePrincipal.SpId, diff --git a/src/Aks/Aks/Commands/GetAzureRmAks.cs b/src/Aks/Aks/Commands/GetAzureRmAks.cs index 30124831f373..e66dcc82bb26 100644 --- a/src/Aks/Aks/Commands/GetAzureRmAks.cs +++ b/src/Aks/Aks/Commands/GetAzureRmAks.cs @@ -21,10 +21,13 @@ using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Management.ContainerService; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Aks { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Aks", DefaultParameterSetName = ResourceGroupParameterSet)] + [CmdletDeprecation(ReplacementCmdletName = "Get-AzAksCluster")] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AksCluster", DefaultParameterSetName = ResourceGroupParameterSet)] + [Alias("Get-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Aks")] [OutputType(typeof(PSKubernetesCluster))] public class GetAzureRmAks : KubeCmdletBase { diff --git a/src/Aks/Aks/Commands/NewAzureRmAks.cs b/src/Aks/Aks/Commands/NewAzureRmAks.cs index 1a04f0889114..9066d99aec6f 100644 --- a/src/Aks/Aks/Commands/NewAzureRmAks.cs +++ b/src/Aks/Aks/Commands/NewAzureRmAks.cs @@ -17,11 +17,14 @@ using Microsoft.Azure.Commands.Aks.Models; using Microsoft.Azure.Commands.Aks.Properties; using Microsoft.Azure.Management.ContainerService; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using Microsoft.WindowsAzure.Commands.Utilities.Common; namespace Microsoft.Azure.Commands.Aks { - [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Aks", DefaultParameterSetName = DefaultParamSet, SupportsShouldProcess = true)] + [CmdletDeprecation(ReplacementCmdletName = "New-AzAksCluster")] + [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AksCluster", DefaultParameterSetName = DefaultParamSet, SupportsShouldProcess = true)] + [Alias("New-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Aks")] [OutputType(typeof(PSKubernetesCluster))] public class NewAzureRmAks : NewKubeBase { diff --git a/src/Aks/Aks/Commands/NewKubeBase.cs b/src/Aks/Aks/Commands/NewKubeBase.cs index a8f0d8e550d4..044ff23fcc12 100644 --- a/src/Aks/Aks/Commands/NewKubeBase.cs +++ b/src/Aks/Aks/Commands/NewKubeBase.cs @@ -111,7 +111,7 @@ protected override ManagedCluster BuildNewCluster() new ContainerServiceLinuxProfile(LinuxProfileAdminUserName, new ContainerServiceSshConfiguration(pubKey)); - var acsServicePrincipal = EnsureServicePrincipal(ClientIdAndSecret?.UserName, ClientIdAndSecret?.Password?.ToString()); + var acsServicePrincipal = EnsureServicePrincipal(ServicePrincipalIdAndSecret?.UserName, ServicePrincipalIdAndSecret?.Password?.ToString()); var spProfile = new ManagedClusterServicePrincipalProfile( acsServicePrincipal.SpId, diff --git a/src/Aks/Aks/Commands/RemoveAzureRmAks.cs b/src/Aks/Aks/Commands/RemoveAzureRmAks.cs index 1a6c12d96cf5..316d771be851 100644 --- a/src/Aks/Aks/Commands/RemoveAzureRmAks.cs +++ b/src/Aks/Aks/Commands/RemoveAzureRmAks.cs @@ -18,10 +18,13 @@ using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Management.ContainerService; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Aks { - [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Aks", SupportsShouldProcess = true, DefaultParameterSetName = GroupNameParameterSet)] + [CmdletDeprecation(ReplacementCmdletName = "Remove-AzAksCluster")] + [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AksCluster", SupportsShouldProcess = true, DefaultParameterSetName = GroupNameParameterSet)] + [Alias("Remove-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Aks")] [OutputType(typeof(bool))] public class RemoveAzureRmAks : KubeCmdletBase { diff --git a/src/Aks/Aks/Commands/SetAzureRmAks.cs b/src/Aks/Aks/Commands/SetAzureRmAks.cs index ce6f54ddcba0..fb1a4681c44e 100644 --- a/src/Aks/Aks/Commands/SetAzureRmAks.cs +++ b/src/Aks/Aks/Commands/SetAzureRmAks.cs @@ -21,11 +21,14 @@ using Microsoft.Azure.Management.ContainerService; using Microsoft.Azure.Management.ContainerService.Models; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using Microsoft.WindowsAzure.Commands.Utilities.Common; namespace Microsoft.Azure.Commands.Aks { - [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Aks", DefaultParameterSetName = DefaultParamSet, SupportsShouldProcess = true)] + [CmdletDeprecation(ReplacementCmdletName = "Set-AzAksCluster")] + [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "AksCluster", DefaultParameterSetName = DefaultParamSet, SupportsShouldProcess = true)] + [Alias("Set-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Aks")] [OutputType(typeof(PSKubernetesCluster))] public class SetAzureRmAks : CreateOrUpdateKubeBase { @@ -108,10 +111,10 @@ public override void ExecuteCmdlet() new ContainerServiceSshPublicKey(GetSshKey(SshKeyValue)) }; } - if (this.IsParameterBound(c => c.ClientIdAndSecret)) + if (this.IsParameterBound(c => c.ServicePrincipalIdAndSecret)) { WriteVerbose(Resources.UpdatingServicePrincipal); - var acsServicePrincipal = EnsureServicePrincipal(ClientIdAndSecret.UserName, ClientIdAndSecret.Password.ToString()); + var acsServicePrincipal = EnsureServicePrincipal(ServicePrincipalIdAndSecret.UserName, ServicePrincipalIdAndSecret.Password.ToString()); var spProfile = new ManagedClusterServicePrincipalProfile( acsServicePrincipal.SpId, diff --git a/src/Aks/Aks/help/Az.Aks.md b/src/Aks/Aks/help/Az.Aks.md index c02c19b613c5..7d6121602855 100644 --- a/src/Aks/Aks/help/Az.Aks.md +++ b/src/Aks/Aks/help/Az.Aks.md @@ -11,7 +11,7 @@ Locale: en-US Commands to interact with Azure managed Kubernetes clusters. ## Az.Aks Cmdlets -### [Get-AzAks](Get-AzAks.md) +### [Get-AzAksCluster](Get-AzAksCluster.md) List Kubernetes managed clusters. ### [Get-AzAksNodePool](Get-AzAksNodePool.md) @@ -26,19 +26,19 @@ Import and merge Kubectl config for a managed Kubernetes Cluster. ### [Install-AzAksKubectl](Install-AzAksKubectl.md) Download and install kubectl, the Kubernetes command-line tool. -### [New-AzAks](New-AzAks.md) +### [New-AzAksCluster](New-AzAksCluster.md) Create a new managed Kubernetes cluster. ### [New-AzAksNodePool](New-AzAksNodePool.md) Create a new node pool in specified cluster. -### [Remove-AzAks](Remove-AzAks.md) +### [Remove-AzAksCluster](Remove-AzAksCluster.md) Delete a managed Kubernetes cluster. ### [Remove-AzAksNodePool](Remove-AzAksNodePool.md) Delete node pool from managed cluster. -### [Set-AzAks](Set-AzAks.md) +### [Set-AzAksCluster](Set-AzAksCluster.md) Update or create a managed Kubernetes cluster. ### [Start-AzAksDashboard](Start-AzAksDashboard.md) @@ -49,4 +49,3 @@ Stop the Kubectl SSH tunnel created in Start-AzKubernetesDashboard. ### [Update-AzAksNodePool](Update-AzAksNodePool.md) Update node pool in a managed cluster. - diff --git a/src/Aks/Aks/help/Get-AzAks.md b/src/Aks/Aks/help/Get-AzAksCluster.md similarity index 84% rename from src/Aks/Aks/help/Get-AzAks.md rename to src/Aks/Aks/help/Get-AzAksCluster.md index 8fb7a85d8483..3b0c22c9f6ba 100644 --- a/src/Aks/Aks/help/Get-AzAks.md +++ b/src/Aks/Aks/help/Get-AzAksCluster.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Aks.dll-Help.xml Module Name: Az.Aks -online version: https://docs.microsoft.com/en-us/powershell/module/az.aks/get-azaks +online version: https://docs.microsoft.com/en-us/powershell/module/az.aks/get-azakscluster schema: 2.0.0 --- -# Get-AzAks +# Get-AzAksCluster ## SYNOPSIS List Kubernetes managed clusters. @@ -14,17 +14,18 @@ List Kubernetes managed clusters. ### ResourceGroupParameterSet (Default) ``` -Get-AzAks [[-ResourceGroupName] ] [-DefaultProfile ] [] +Get-AzAksCluster [[-ResourceGroupName] ] [-DefaultProfile ] + [] ``` ### IdParameterSet ``` -Get-AzAks [-Id] [-DefaultProfile ] [] +Get-AzAksCluster [-Id] [-DefaultProfile ] [] ``` ### NameParameterSet ``` -Get-AzAks [-ResourceGroupName] [-Name] [-DefaultProfile ] +Get-AzAksCluster [-ResourceGroupName] [-Name] [-DefaultProfile ] [] ``` @@ -34,8 +35,8 @@ List Kubernetes managed clusters. ## EXAMPLES ### List all Kubernetes clusters -``` -PS C:\> Get-AzAks +```powershell +PS C:\> Get-AzAksCluster ``` ## PARAMETERS diff --git a/src/Aks/Aks/help/New-AzAks.md b/src/Aks/Aks/help/New-AzAksCluster.md similarity index 93% rename from src/Aks/Aks/help/New-AzAks.md rename to src/Aks/Aks/help/New-AzAksCluster.md index 4472e8b09677..a7b273726ac8 100644 --- a/src/Aks/Aks/help/New-AzAks.md +++ b/src/Aks/Aks/help/New-AzAksCluster.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Aks.dll-Help.xml Module Name: Az.Aks -online version: https://docs.microsoft.com/en-us/powershell/module/az.aks/new-azaks +online version: https://docs.microsoft.com/en-us/powershell/module/az.aks/new-azakscluster schema: 2.0.0 --- -# New-AzAks +# New-AzAksCluster ## SYNOPSIS Create a new managed Kubernetes cluster. @@ -13,15 +13,16 @@ Create a new managed Kubernetes cluster. ## SYNTAX ``` -New-AzAks [-Force] [-NodeVmSetType ] [-NodeVnetSubnetID ] [-NodeMaxPodCount ] +New-AzAksCluster [-Force] [-NodeVmSetType ] [-NodeVnetSubnetID ] [-NodeMaxPodCount ] [-NodeOsType ] [-NodeSetPriority ] [-NodeScaleSetEvictionPolicy ] [-AcrNameToAttach ] [-EnableRbac] [-WindowsProfileAdminUserName ] [-WindowsProfileAdminUserPassword ] [-NetworkPlugin ] [-LoadBalancerSku ] - [-ResourceGroupName] [-Name] [[-ClientIdAndSecret] ] [-Location ] - [-LinuxProfileAdminUserName ] [-DnsNamePrefix ] [-KubernetesVersion ] - [-NodeName ] [-NodeMinCount ] [-NodeMaxCount ] [-EnableNodeAutoScaling] - [-NodeCount ] [-NodeOsDiskSize ] [-NodeVmSize ] [-SshKeyValue ] [-AsJob] - [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-ResourceGroupName] [-Name] [[-ServicePrincipalIdAndSecret] ] + [-Location ] [-LinuxProfileAdminUserName ] [-DnsNamePrefix ] + [-KubernetesVersion ] [-NodeName ] [-NodeMinCount ] [-NodeMaxCount ] + [-EnableNodeAutoScaling] [-NodeCount ] [-NodeOsDiskSize ] [-NodeVmSize ] + [-SshKeyValue ] [-AsJob] [-Tag ] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION @@ -32,7 +33,7 @@ Create a new Azure Kubernetes Service(AKS) cluster. ### New an AKS with default params. -``` +```powershell PS C:\> New-AzAks -ResourceGroupName myResourceGroup -Name myCluster ``` @@ -40,7 +41,7 @@ PS C:\> New-AzAks -ResourceGroupName myResourceGroup -Name myCluster To create Windows Server container on an AKS, you must specify at least four following parameters when creating the AKS, and the value for `NetworkPlugin` and `NodeVmSetType` must be `azure` and `VirtualMachineScaleSets` respectively. `-WindowsProfileAdminUserName *** -WindowsProfileAdminUserPassword *** -NetworkPlugin azure -NodeVmSetType VirtualMachineScaleSets` -``` +```powershell PS C:\> $cred = ConvertTo-SecureString -AsPlainText "Password!!123" -Force PS C:\> New-AzAks -ResourceGroupName myResourceGroup -Name myCluster -WindowsProfileAdminUserName azureuser -WindowsProfileAdminUserPassword $cred -NetworkPlugin azure -NodeVmSetType VirtualMachineScaleSets PS C:\> New-AzAksNodePool -ResourceGroupName myResourceGroup -ClusterName myCluster -Name win1 -OsType Windows -VmSetType VirtualMachineScaleSets @@ -78,21 +79,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ClientIdAndSecret -The client id and client secret associated with the AAD application / service principal. - -```yaml -Type: System.Management.Automation.PSCredential -Parameter Sets: (All) -Aliases: - -Required: False -Position: 2 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -454,6 +440,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ServicePrincipalIdAndSecret +The client id and client secret associated with the AAD application / service principal. + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: (All) +Aliases: ClientIdAndSecret + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -SshKeyValue SSH key file value or key file path. Defaults to {HOME}/.ssh/id_rsa.pub. diff --git a/src/Aks/Aks/help/Remove-AzAks.md b/src/Aks/Aks/help/Remove-AzAksCluster.md similarity index 91% rename from src/Aks/Aks/help/Remove-AzAks.md rename to src/Aks/Aks/help/Remove-AzAksCluster.md index 19ec047f8058..1f927964e582 100644 --- a/src/Aks/Aks/help/Remove-AzAks.md +++ b/src/Aks/Aks/help/Remove-AzAksCluster.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Aks.dll-Help.xml Module Name: Az.Aks -online version: https://docs.microsoft.com/en-us/powershell/module/az.aks/remove-azaks +online version: https://docs.microsoft.com/en-us/powershell/module/az.aks/remove-azakscluster schema: 2.0.0 --- -# Remove-AzAks +# Remove-AzAksCluster ## SYNOPSIS Delete a managed Kubernetes cluster. @@ -14,20 +14,20 @@ Delete a managed Kubernetes cluster. ### GroupNameParameterSet (Default) ``` -Remove-AzAks [-ResourceGroupName] [-Name] [-PassThru] [-AsJob] [-Force] +Remove-AzAksCluster [-ResourceGroupName] [-Name] [-PassThru] [-AsJob] [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### InputObjectParameterSet ``` -Remove-AzAks -InputObject [-PassThru] [-AsJob] [-Force] +Remove-AzAksCluster -InputObject [-PassThru] [-AsJob] [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### IdParameterSet ``` -Remove-AzAks [-Id] [-PassThru] [-AsJob] [-Force] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] +Remove-AzAksCluster [-Id] [-PassThru] [-AsJob] [-Force] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -36,7 +36,7 @@ Delete a managed Kubernetes cluster. ## EXAMPLES ### Delete an existing managed Kubernetes cluster -``` +```powershell PS C:\> Remove-AzAks -ResourceGroupName group -Name myCluster ``` diff --git a/src/Aks/Aks/help/Set-AzAks.md b/src/Aks/Aks/help/Set-AzAksCluster.md similarity index 90% rename from src/Aks/Aks/help/Set-AzAks.md rename to src/Aks/Aks/help/Set-AzAksCluster.md index bc8793f046d7..3c1a0d211338 100644 --- a/src/Aks/Aks/help/Set-AzAks.md +++ b/src/Aks/Aks/help/Set-AzAksCluster.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Aks.dll-Help.xml Module Name: Az.Aks -online version: https://docs.microsoft.com/en-us/powershell/module/az.aks/set-azaks +online version: https://docs.microsoft.com/en-us/powershell/module/az.aks/set-azakscluster schema: 2.0.0 --- -# Set-AzAks +# Set-AzAksCluster ## SYNOPSIS Update or create a managed Kubernetes cluster. @@ -13,8 +13,8 @@ Update or create a managed Kubernetes cluster. ## SYNTAX ### defaultParameterSet (Default) -``` -Set-AzAks [-ResourceGroupName] [-Name] [[-ClientIdAndSecret] ] +```powershell +Set-AzAksCluster [-ResourceGroupName] [-Name] [[-ServicePrincipalIdAndSecret] ] [-Location ] [-LinuxProfileAdminUserName ] [-DnsNamePrefix ] [-KubernetesVersion ] [-NodeName ] [-NodeMinCount ] [-NodeMaxCount ] [-EnableNodeAutoScaling] [-NodeCount ] [-NodeOsDiskSize ] [-NodeVmSize ] @@ -23,8 +23,8 @@ Set-AzAks [-ResourceGroupName] [-Name] [[-ClientIdAndSecret] < ``` ### InputObjectParameterSet -``` -Set-AzAks -InputObject [-Location ] [-LinuxProfileAdminUserName ] +```powershell +Set-AzAksCluster -InputObject [-Location ] [-LinuxProfileAdminUserName ] [-DnsNamePrefix ] [-KubernetesVersion ] [-NodeName ] [-NodeMinCount ] [-NodeMaxCount ] [-EnableNodeAutoScaling] [-NodeCount ] [-NodeOsDiskSize ] [-NodeVmSize ] [-SshKeyValue ] [-AsJob] [-Tag ] @@ -32,12 +32,12 @@ Set-AzAks -InputObject [-Location ] [-LinuxProfile ``` ### IdParameterSet -``` -Set-AzAks [-Id] [-Location ] [-LinuxProfileAdminUserName ] [-DnsNamePrefix ] - [-KubernetesVersion ] [-NodeName ] [-NodeMinCount ] [-NodeMaxCount ] - [-EnableNodeAutoScaling] [-NodeCount ] [-NodeOsDiskSize ] [-NodeVmSize ] - [-SshKeyValue ] [-AsJob] [-Tag ] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] +```powershell +Set-AzAksCluster [-Id] [-Location ] [-LinuxProfileAdminUserName ] + [-DnsNamePrefix ] [-KubernetesVersion ] [-NodeName ] [-NodeMinCount ] + [-NodeMaxCount ] [-EnableNodeAutoScaling] [-NodeCount ] [-NodeOsDiskSize ] + [-NodeVmSize ] [-SshKeyValue ] [-AsJob] [-Tag ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -46,7 +46,7 @@ Update or create a managed Kubernetes cluster. ## EXAMPLES ### Example 1 -``` +```powershell PS C:\> Get-AzAks -ResourceGroupName group -Name myCluster | Set-AzAks -NodeCount 5 ``` @@ -69,21 +69,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ClientIdAndSecret -The client id and client secret associated with the AAD application / service principal. - -```yaml -Type: System.Management.Automation.PSCredential -Parameter Sets: defaultParameterSet -Aliases: - -Required: False -Position: 2 -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -325,6 +310,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ServicePrincipalIdAndSecret +The client id and client secret associated with the AAD application / service principal. + +```yaml +Type: System.Management.Automation.PSCredential +Parameter Sets: defaultParameterSet +Aliases: ClientIdAndSecret + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -SshKeyValue SSH key file value or key file path. Defaults to {HOME}/.ssh/id_rsa.pub. diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ApiManagement.ServiceManagement.Test.csproj b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ApiManagement.ServiceManagement.Test.csproj index b274388aede9..565e1efb3050 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ApiManagement.ServiceManagement.Test.csproj +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ApiManagement.ServiceManagement.Test.csproj @@ -11,7 +11,7 @@ - + diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.cs b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.cs index bbda5fc5c75b..3685c52c30c9 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.cs +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.cs @@ -193,6 +193,13 @@ public void LoggerCrudTest() RunPowerShellTest("Logger-CrudTest"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void GatewayCrudTest() + { + RunPowerShellTest("Gateway-CrudTest"); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void PropertiesCrudTest() diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.ps1 b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.ps1 index 45a6621b09f9..1a75503e93d0 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.ps1 +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.ps1 @@ -3618,4 +3618,167 @@ function ApiDiagnostic-CrudTest { Remove-AzApiManagementNamedValue -Context $context -NamedValueId $properties[$i].NamedValueId } } +} + +<# +.SYNOPSIS +Tests CRUD operations on Gateway. +#> +function Gateway-CrudTest { + Param($resourceGroupName, $serviceName) + + $context = New-AzApiManagementContext -ResourceGroupName $resourceGroupName -ServiceName $serviceName + + # create non-Secret Property + $gatewayId = getAssetName + $hostnameConfigId = getAssetName + $certId = getAssetName + + + $gateways = Get-AzApiManagementGateway -Context $context + + # Assert-AreEqual 0 $gateways.Count + + #for ($i = 0; $i -lt $gateways.Count; $i++) { + # Remove-AzApiManagementGateway -Context $context -GatewayId $gateways[$i].GatewayId -PassThru + #} + #Remove-AzApiManagementCertificate -Context $context -CertificateId 'ps9906' -PassThru + + + try { + $description = getAssetName + $locationCity = getAssetName + $locationName = getAssetName + $locationRegion = getAssetName + $locationDistrict = getAssetName + + $hostname = 'contoso.com' + + #create + $location = New-AzApiManagementResourceLocationObject -Name $locationName -City $locationCity -District $locationDistrict -CountryOrRegion $locationRegion + $gateway = New-AzApiManagementGateway -Context $context -GatewayId $gatewayId -Description $description -LocationData $location + + Assert-NotNull $gateway + Assert-AreEqual $description $gateway.Description + Assert-AreEqual $locationCity $gateway.LocationData.City + Assert-AreEqual $locationName $gateway.LocationData.Name + Assert-AreEqual $locationDistrict $gateway.LocationData.District + Assert-AreEqual $locationRegion $gateway.LocationData.CountryOrRegion + + #get list + $gateways = Get-AzApiManagementGateway -Context $context + Assert-AreEqual 1 $gateways.Count + $gateway = $gateways[0] + Assert-NotNull $gateway + Assert-AreEqual $description $gateway.Description + Assert-AreEqual $locationCity $gateway.LocationData.City + Assert-AreEqual $locationName $gateway.LocationData.Name + Assert-AreEqual $locationDistrict $gateway.LocationData.District + Assert-AreEqual $locationRegion $gateway.LocationData.CountryOrRegion + + #get + $gateway = Get-AzApiManagementGateway -Context $context -GatewayId $gatewayId + Assert-NotNull $gateway + Assert-AreEqual $description $gateway.Description + Assert-AreEqual $locationCity $gateway.LocationData.City + Assert-AreEqual $locationName $gateway.LocationData.Name + Assert-AreEqual $locationDistrict $gateway.LocationData.District + Assert-AreEqual $locationRegion $gateway.LocationData.CountryOrRegion + + #update pipeline + $newDescription = getAssetName + $gateway = Get-AzApiManagementGateway -Context $context -GatewayId $gatewayId | Update-AzApiManagementGateway -Description $newDescription -PassThru + Assert-NotNull $gateway + Assert-AreEqual $newDescription $gateway.Description + Assert-AreEqual $locationCity $gateway.LocationData.City + + #update + $newDescription = getAssetName + $gateway = Update-AzApiManagementGateway -Context $context -GatewayId $gatewayId -Description $newDescription -PassThru + Assert-NotNull $gateway + Assert-AreEqual $newDescription $gateway.Description + Assert-AreEqual $locationCity $gateway.LocationData.City + Assert-AreEqual $locationName $gateway.LocationData.Name + Assert-AreEqual $locationDistrict $gateway.LocationData.District + Assert-AreEqual $locationRegion $gateway.LocationData.CountryOrRegion + + #update location + $newLocationCity = getAssetName + $location = New-AzApiManagementResourceLocationObject -Name $locationName -City $newLocationCity + $gateway = Update-AzApiManagementGateway -Context $context -GatewayId $gatewayId -LocationData @location -PassThru + Assert-NotNull $gateway + Assert-AreEqual $newDescription $gateway.Description + Assert-AreEqual $newLocationCity $gateway.LocationData.City + Assert-AreEqual $locationName $gateway.LocationData.Name + Assert-Null $gateway.LocationData.District + Assert-Null $gateway.LocationData.CountryOrRegion + + #get keys + $key = Get-AzApiManagementGatewayKey -Context $context -GatewayId $gatewayId + Assert-NotNull $key + Assert-NotNull $key.PrimaryKey + Assert-NotNull $key.SecondaryKey + + #attach to api + $apis = Get-AzApiManagementApi -Context $context + $apiId = $apis[0].ApiId + + Add-AzApiManagementApiToGateway -Context $context -GatewayId $gatewayId -ApiId $apiId + + $apis = Get-AzApiManagementApi -Context $context -GatewayId $gatewayId + Assert-AreEqual 1 $apis.Count + + #detach from api + Remove-AzApiManagementApiFromGateway -Context $context -GatewayId $gatewayId -ApiId $apiId -PassThru + + $apis = Get-AzApiManagementApi -Context $context -GatewayId $gatewayId + Assert-AreEqual 0 $apis.Count + + $certPath = Join-Path (Join-Path "$TestOutputRoot" "Resources") "powershelltest.pfx" + #[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + $certPassword = 'Password' + $certSubject = "CN=*.msitesting.net" + # upload certificate + $cert = New-AzApiManagementCertificate -Context $context -CertificateId $certId -PfxFilePath $certPath -PfxPassword $certPassword + + #create hostname config + $hostnameConfig = New-AzApiManagementGatewayHostnameConfiguration -Context $context -GatewayId $gatewayId -CertificateResourceId $cert.Id -GatewayHostnameConfigurationId $hostnameConfigId -Hostname $hostname + Assert-NotNull $hostnameConfig + Assert-AreEqual $hostname $hostnameConfig.Hostname + Assert-AreEqual $cert.Id $hostnameConfig.CertificateResourceId + Assert-AreEqual $false $hostnameConfig.NegotiateClientCertificate + + #get config + $hostnameConfig = Get-AzApiManagementGatewayHostnameConfiguration -Context $context -GatewayId $gatewayId -GatewayHostnameConfigurationId $hostnameConfigId + Assert-NotNull $hostnameConfig + Assert-AreEqual $hostname $hostnameConfig.Hostname + Assert-AreEqual $cert.Id $hostnameConfig.CertificateResourceId + Assert-AreEqual $false $hostnameConfig.NegotiateClientCertificate + + #list config + $hostnameConfigs = Get-AzApiManagementGatewayHostnameConfiguration -Context $context -GatewayId $gatewayId + Assert-AreEqual 1 $hostnameConfigs.Count + $hostnameConfig = $hostnameConfigs[0] + Assert-AreEqual $hostname $hostnameConfig.Hostname + Assert-AreEqual $cert.Id $hostnameConfig.CertificateResourceId + Assert-AreEqual $false $hostnameConfig.NegotiateClientCertificate + } + finally { + Remove-AzApiManagementGatewayHostnameConfiguration -Context $context -GatewayId $gatewayId -GatewayHostnameConfigurationId $hostnameConfigId -PassThru + + Remove-AzApiManagementCertificate -Context $context -CertificateId $certId -PassThru + + $removed = Remove-AzApiManagementGateway -Context $context -GatewayId $gatewayId -PassThru + Assert-True { $removed } + + $gateway = $null + try { + # check it was removed + $gateway = Get-AzApiManagementGateway -Context $context -GatewayId $gatewayId + } + catch { + } + + Assert-Null $gateway + } } \ No newline at end of file diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCloneCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCloneCrudTest.json index ae1cd0446e55..695911a9fb55 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCloneCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCloneCrudTest.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c6fa840-b918-467e-8371-8f7cde176ddd" + "0522dfc0-1141-41be-9cdc-8547dbf5b643" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -30,7 +30,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6af6a104-15dd-4d08-bc34-241afa760e7b" + "0ded8c98-a16b-409b-ba0f-9125c2e74900" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -39,16 +39,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "38bf3960-326c-4c89-8332-a0a099a2c873" + "5373a7c1-3cb7-4f4d-839d-6853080aec32" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193711Z:38bf3960-326c-4c89-8332-a0a099a2c873" + "WESTUS:20200721T164423Z:5373a7c1-3cb7-4f4d-839d-6853080aec32" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:11 GMT" + "Tue, 21 Jul 2020 16:44:23 GMT" ], "Content-Length": [ "729" @@ -70,7 +70,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bdb64acd-1039-4bcc-8214-bcaf01c3e9b6" + "3f6e8abb-9c9e-4223-bf90-547f7cc80b87" ], "Accept-Language": [ "en-US" @@ -79,7 +79,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -90,13 +90,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACm8=\"" + "\"AAAAAAAAPIk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "537dcea7-3aa1-468a-9210-4b9328f1222c" + "e6b983a6-2249-42ae-9eec-794aadd6ad25" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -105,16 +105,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "2fbc4cda-c0a3-45b0-b542-ac530e93edec" + "8c695e8e-8b21-412d-9013-6190b3c8fd5c" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193711Z:2fbc4cda-c0a3-45b0-b542-ac530e93edec" + "WESTUS:20200721T164423Z:8c695e8e-8b21-412d-9013-6190b3c8fd5c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:11 GMT" + "Tue, 21 Jul 2020 16:44:23 GMT" ], "Content-Length": [ "747" @@ -136,7 +136,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b2fe8e6-e8a4-40d1-8244-df238fde32e7" + "02fe42a1-9aa2-429f-8b06-0de121ed7888" ], "Accept-Language": [ "en-US" @@ -145,7 +145,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -159,7 +159,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d8c13f1e-ea5b-4cda-9b23-cff164ae1101" + "f8645a3c-932a-47b4-bb14-4470484c8981" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -168,16 +168,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "45ae0f5c-c660-4552-af33-17cf4f21c715" + "cefc68e2-3454-4c4e-ac50-c919f2676948" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193712Z:45ae0f5c-c660-4552-af33-17cf4f21c715" + "WESTUS:20200721T164424Z:cefc68e2-3454-4c4e-ac50-c919f2676948" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:11 GMT" + "Tue, 21 Jul 2020 16:44:23 GMT" ], "Content-Length": [ "7423" @@ -193,13 +193,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps6883?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjg4Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4142?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNDE0Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9008\",\r\n \"versionQueryName\": \"ps1548\",\r\n \"displayName\": \"ps46\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6415\",\r\n \"versionQueryName\": \"ps2138\",\r\n \"displayName\": \"ps2032\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c5ffa5de-6a4b-4bdd-ba4e-c1f3ef597c0d" + "7e60b0d7-9fa5-4336-8160-320120d5d8bd" ], "Accept-Language": [ "en-US" @@ -208,13 +208,13 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "154" + "156" ] }, "ResponseHeaders": { @@ -225,13 +225,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC4g=\"" + "\"AAAAAAAAPc4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "69faf8a1-8f83-46cf-863f-40bdbd7d694d" + "f23c74ac-257e-420b-be00-3faebd5e3b12" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -240,19 +240,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "63af5e42-58fc-4f40-bdff-862e7f0af28c" + "8b91178b-19ff-4511-b335-e7cc6001a545" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193712Z:63af5e42-58fc-4f40-bdff-862e7f0af28c" + "WESTUS:20200721T164424Z:8b91178b-19ff-4511-b335-e7cc6001a545" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:12 GMT" + "Tue, 21 Jul 2020 16:44:24 GMT" ], "Content-Length": [ - "447" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,17 +261,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps6883\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps6883\",\r\n \"properties\": {\r\n \"displayName\": \"ps46\",\r\n \"description\": \"ps9008\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps1548\",\r\n \"versionHeaderName\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4142\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps4142\",\r\n \"properties\": {\r\n \"displayName\": \"ps2032\",\r\n \"description\": \"ps6415\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps2138\",\r\n \"versionHeaderName\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0OTEwP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6225\",\r\n \"sourceApiId\": \"/apis/echo-api\",\r\n \"displayName\": \"ps5700\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps3384\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8138\",\r\n \"sourceApiId\": \"/apis/echo-api\",\r\n \"displayName\": \"ps3982\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps1879\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7702ae8d-c3da-470e-a102-a82df6b2faa0" + "0129fbc0-23d5-4bbf-a7a2-bcd4d92540a9" ], "Accept-Language": [ "en-US" @@ -280,7 +280,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -297,13 +297,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC4s=\"" + "\"AAAAAAAAPdE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3deacc60-8b19-4919-98ce-ada39ce2b291" + "73f7dd39-fbb6-4ea5-9e46-385a6882536c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -312,16 +312,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "505af6be-3584-4230-8d46-a40d82c890ad" + "b599c4a9-6be2-4151-b5d0-fffcc52115e1" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193713Z:505af6be-3584-4230-8d46-a40d82c890ad" + "WESTUS:20200721T164425Z:b599c4a9-6be2-4151-b5d0-fffcc52115e1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:13 GMT" + "Tue, 21 Jul 2020 16:44:25 GMT" ], "Content-Length": [ "768" @@ -333,12 +333,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4910\",\r\n \"properties\": {\r\n \"displayName\": \"ps5700\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps6225\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps3384\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1067\",\r\n \"properties\": {\r\n \"displayName\": \"ps3982\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps8138\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps1879\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0OTEwP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -346,7 +346,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -357,13 +357,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC4s=\"" + "\"AAAAAAAAPdE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "827af160-b6ed-4484-8d2f-a49808518278" + "c426f36f-9dfa-4eed-911a-ec9a56bcb95e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -372,16 +372,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "8fcfa32e-502f-49df-b21a-798db4d8a8ac" + "05d4e716-35d9-43a4-a2d4-19e020784195" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193743Z:8fcfa32e-502f-49df-b21a-798db4d8a8ac" + "WESTUS:20200721T164456Z:05d4e716-35d9-43a4-a2d4-19e020784195" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:43 GMT" + "Tue, 21 Jul 2020 16:44:55 GMT" ], "Content-Length": [ "768" @@ -393,17 +393,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4910\",\r\n \"properties\": {\r\n \"displayName\": \"ps5700\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps6225\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps3384\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1067\",\r\n \"properties\": {\r\n \"displayName\": \"ps3982\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps8138\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps1879\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0OTEwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a19f28a4-0c40-4dc9-84b2-6f3826db6bf8" + "491b8dfd-5d8b-4180-8cb4-0f0bf2535e09" ], "Accept-Language": [ "en-US" @@ -412,7 +412,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -426,7 +426,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9030e58c-19ab-44b2-ad52-1daad9f0c294" + "6078bf67-ec03-4581-9fa6-536c4a047e8f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,16 +435,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "d569983d-1122-445e-9384-9249fbe6250a" + "56125a0f-8659-4c14-b059-0740c53a7203" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193744Z:d569983d-1122-445e-9384-9249fbe6250a" + "WESTUS:20200721T164456Z:56125a0f-8659-4c14-b059-0740c53a7203" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:43 GMT" + "Tue, 21 Jul 2020 16:44:55 GMT" ], "Content-Length": [ "7411" @@ -456,17 +456,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 6\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 6\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/create-resource?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0OTEwL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/create-resource?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3L29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a318ad0-4ee5-45dc-b8de-86a86f6ea42e" + "7e2b9959-2b8c-4957-a92b-a66c83b4d6fa" ], "Accept-Language": [ "en-US" @@ -475,7 +475,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -486,13 +486,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC5s=\"" + "\"AAAAAAAAPeE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0c75417f-19ed-4ac6-8b3e-09e216f6342a" + "291b519f-4b6d-41c4-961d-954d14818f97" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -501,16 +501,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "a7ba6a54-d228-4abd-89fd-670c1bc0e616" + "eaa4a9dc-11ac-4561-aa5d-1835c5b5004c" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193744Z:a7ba6a54-d228-4abd-89fd-670c1bc0e616" + "WESTUS:20200721T164456Z:eaa4a9dc-11ac-4561-aa5d-1835c5b5004c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:43 GMT" + "Tue, 21 Jul 2020 16:44:56 GMT" ], "Content-Length": [ "1267" @@ -522,17 +522,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/create-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"create-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a POST call based on the echo backend above. The request body is expected to contain JSON-formatted data (see example below). A policy is used to automatically transform any request sent in JSON directly to XML. In a real-world scenario this could be used to enable modern clients to speak to a legacy backend.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n\\t\\\"vehicleType\\\": \\\"train\\\",\\r\\n\\t\\\"maxSpeed\\\": 125,\\r\\n\\t\\\"avgSpeed\\\": 90,\\r\\n\\t\\\"speedUnit\\\": \\\"mph\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/modify-resource?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0OTEwL29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/modify-resource?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3L29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4546e0f4-7a2d-4882-a2d7-9c4f8e75d0bd" + "426a2086-2ef5-490f-9874-e488e4601338" ], "Accept-Language": [ "en-US" @@ -541,7 +541,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -552,13 +552,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC5o=\"" + "\"AAAAAAAAPeA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "85398736-a0e5-42f6-8d6a-9f18d9871358" + "c6dcc46c-b05b-4d0c-8d23-954a60aa0221" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -567,16 +567,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "e6be34fa-e08b-429e-ae10-9fb6ebfedba2" + "769b5552-8311-4ff6-a6fc-fe0295ce5b3f" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193744Z:e6be34fa-e08b-429e-ae10-9fb6ebfedba2" + "WESTUS:20200721T164457Z:769b5552-8311-4ff6-a6fc-fe0295ce5b3f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:44 GMT" + "Tue, 21 Jul 2020 16:44:56 GMT" ], "Content-Length": [ "890" @@ -588,17 +588,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/modify-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"modify-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Modify Resource\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a PUT call handled by the same \\\"echo\\\" backend as above. You can now specify a request body in addition to headers and it will be returned as well.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/remove-resource?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0OTEwL29wZXJhdGlvbnMvcmVtb3ZlLXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/remove-resource?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3L29wZXJhdGlvbnMvcmVtb3ZlLXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e673e838-debe-4686-8ead-450888fdee21" + "51c3a2cf-c6c2-41b6-bb0c-e3a2b0e3a949" ], "Accept-Language": [ "en-US" @@ -607,7 +607,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -618,13 +618,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC5w=\"" + "\"AAAAAAAAPeI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "45161ba1-348e-4a74-8ca9-abbd6a2c5ed7" + "6e8d6a48-37c3-4ed3-bc8e-28f8df1412ba" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -633,16 +633,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "2d73cd0e-a171-43f8-92a3-2ee167a27eb8" + "cbe77767-9ac9-46bf-80e7-fe09a144b443" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193744Z:2d73cd0e-a171-43f8-92a3-2ee167a27eb8" + "WESTUS:20200721T164457Z:cbe77767-9ac9-46bf-80e7-fe09a144b443" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:44 GMT" + "Tue, 21 Jul 2020 16:44:56 GMT" ], "Content-Length": [ "900" @@ -654,17 +654,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/remove-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"remove-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Remove resource\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a DELETE call which traditionally deletes the resource. It is based on the same \\\"echo\\\" backend as in all other operations so nothing is actually deleted.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/retrieve-header-only?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0OTEwL29wZXJhdGlvbnMvcmV0cmlldmUtaGVhZGVyLW9ubHk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/retrieve-header-only?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3L29wZXJhdGlvbnMvcmV0cmlldmUtaGVhZGVyLW9ubHk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d544cad-648f-41d7-814c-ac1be768cec5" + "535b8e34-6295-4c40-a916-4e69d5c1b1be" ], "Accept-Language": [ "en-US" @@ -673,7 +673,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -684,13 +684,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC50=\"" + "\"AAAAAAAAPeM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d3877889-1b3a-4930-9c2a-0172081e54a4" + "45b95832-58f1-423e-b5a8-b60c6e8d9bef" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -699,16 +699,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "9cf9211b-9070-498f-8c09-c3f99cbd6942" + "7682b01f-d783-41e0-9d55-95be0f51f900" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193744Z:9cf9211b-9070-498f-8c09-c3f99cbd6942" + "WESTUS:20200721T164457Z:7682b01f-d783-41e0-9d55-95be0f51f900" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:44 GMT" + "Tue, 21 Jul 2020 16:44:56 GMT" ], "Content-Length": [ "895" @@ -720,17 +720,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/retrieve-resource?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0OTEwL29wZXJhdGlvbnMvcmV0cmlldmUtcmVzb3VyY2U/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/retrieve-resource?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3L29wZXJhdGlvbnMvcmV0cmlldmUtcmVzb3VyY2U/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05b94571-abd9-4009-a8b4-c26f660f6042" + "a37de18f-c1d4-4595-946d-a8bf48fdac14" ], "Accept-Language": [ "en-US" @@ -739,7 +739,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -750,13 +750,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC5g=\"" + "\"AAAAAAAAPd4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b4716568-65b6-438c-8545-d8dad83ae0e2" + "f2dcb570-003c-4e3e-9a4d-4958eacf530b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -765,16 +765,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "f9178809-8b9f-4ca0-aabd-0fbc1b48f26a" + "5aaad265-4f14-423b-8b3f-36047ed606e4" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193744Z:f9178809-8b9f-4ca0-aabd-0fbc1b48f26a" + "WESTUS:20200721T164457Z:5aaad265-4f14-423b-8b3f-36047ed606e4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:44 GMT" + "Tue, 21 Jul 2020 16:44:57 GMT" ], "Content-Length": [ "1474" @@ -786,17 +786,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/retrieve-resource\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call on a sample resource. It is handled by an \\\"echo\\\" backend which returns a response equal to the request (the supplied headers and body are being returned as received).\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"number\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"Returned in all cases.\",\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/retrieve-resource-cached?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0OTEwL29wZXJhdGlvbnMvcmV0cmlldmUtcmVzb3VyY2UtY2FjaGVkP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/retrieve-resource-cached?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3L29wZXJhdGlvbnMvcmV0cmlldmUtcmVzb3VyY2UtY2FjaGVkP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2f5cd5e-27d2-4761-9264-57c2cc9fa1ff" + "589239b3-84b8-4e71-bc67-4fd483bee799" ], "Accept-Language": [ "en-US" @@ -805,7 +805,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -816,13 +816,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC5k=\"" + "\"AAAAAAAAPd8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b4bde3e-2980-44f2-98bc-6612aef9805d" + "b235e951-a3fc-48b1-91dc-020a9bf38de3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -831,16 +831,16 @@ "11989" ], "x-ms-correlation-request-id": [ - "de922c61-808a-469a-aeca-1b38fabacb54" + "67a17b47-7431-418b-929f-2e9b5f7d4b8d" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193744Z:de922c61-808a-469a-aeca-1b38fabacb54" + "WESTUS:20200721T164457Z:67a17b47-7431-418b-929f-2e9b5f7d4b8d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:44 GMT" + "Tue, 21 Jul 2020 16:44:57 GMT" ], "Content-Length": [ "1551" @@ -852,17 +852,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/retrieve-resource-cached\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-resource-cached\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve resource (cached)\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/resource-cached\",\r\n \"templateParameters\": [],\r\n \"description\": \"A demonstration of a GET call with caching enabled on the same \\\"echo\\\" backend as above. Cache TTL is set to 1 hour. When you make the first request the headers you supplied will be cached. Subsequent calls will return the same headers as the first time even if you change them in your request.\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"param1\",\r\n \"description\": \"A sample parameter that is required and has a default value of \\\"sample\\\".\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"sample\",\r\n \"required\": true,\r\n \"values\": [\r\n \"sample\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param2\",\r\n \"description\": \"Another sample parameter, set to not required.\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2754?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyNzU0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7862?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3ODYyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1370\",\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/apiVersionSets/ps6883\",\r\n \"subscriptionRequired\": true,\r\n \"sourceApiId\": \"/apis/echo-api\",\r\n \"displayName\": \"ps3460\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps7933\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9516\",\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/apiVersionSets/ps4142\",\r\n \"subscriptionRequired\": true,\r\n \"sourceApiId\": \"/apis/echo-api\",\r\n \"displayName\": \"ps9691\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps6901\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "142f3433-2b0a-47bd-b36d-43a32a230e3d" + "b3d3c584-ae32-4fed-aede-c896f922bca7" ], "Accept-Language": [ "en-US" @@ -871,7 +871,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -888,13 +888,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC6c=\"" + "\"AAAAAAAAPe8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "28b31063-b4c1-439a-83e8-bd225678f462" + "c6c7d9f9-7beb-4151-9878-57f7d5fa9517" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -903,19 +903,19 @@ "1197" ], "x-ms-correlation-request-id": [ - "03cb02d0-37c3-4f79-9f37-11019b8cb6d6" + "ea0b5ffe-e28d-4e00-a4af-824db165248a" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193746Z:03cb02d0-37c3-4f79-9f37-11019b8cb6d6" + "WESTUS:20200721T164501Z:ea0b5ffe-e28d-4e00-a4af-824db165248a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:45 GMT" + "Tue, 21 Jul 2020 16:45:01 GMT" ], "Content-Length": [ - "1364" + "1366" ], "Content-Type": [ "application/json; charset=utf-8" @@ -924,12 +924,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2754\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2754\",\r\n \"properties\": {\r\n \"displayName\": \"ps3460\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1370\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps7933\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps6883\",\r\n \"apiVersionSet\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps6883\",\r\n \"name\": \"ps46\",\r\n \"description\": \"ps9008\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps1548\",\r\n \"versionHeaderName\": null\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7862\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7862\",\r\n \"properties\": {\r\n \"displayName\": \"ps9691\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps9516\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps6901\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4142\",\r\n \"apiVersionSet\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4142\",\r\n \"name\": \"ps2032\",\r\n \"description\": \"ps6415\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps2138\",\r\n \"versionHeaderName\": null\r\n }\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2754?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyNzU0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7862?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3ODYyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -937,7 +937,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -948,31 +948,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC6c=\"" + "\"AAAAAAAAPe8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a3d4bca8-bf8f-4736-86c1-4f497c1643ff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "b179c5f7-4acf-4ff9-91cd-7a0566407e98" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], "x-ms-correlation-request-id": [ - "be8d8da3-bdc0-4851-baef-5870b4f05729" + "dcd27038-6817-460f-b971-ae63ec3094fe" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193816Z:be8d8da3-bdc0-4851-baef-5870b4f05729" + "WESTUS:20200721T164531Z:dcd27038-6817-460f-b971-ae63ec3094fe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:38:15 GMT" + "Tue, 21 Jul 2020 16:45:31 GMT" ], "Content-Length": [ "988" @@ -984,17 +984,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2754\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2754\",\r\n \"properties\": {\r\n \"displayName\": \"ps3460\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1370\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps7933\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps6883\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7862\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7862\",\r\n \"properties\": {\r\n \"displayName\": \"ps9691\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps9516\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps6901\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4142\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4910?deleteRevisions=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0OTEwP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067?deleteRevisions=true&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75c8c86f-3979-4ae8-9f6d-18d189941527" + "96152717-14e6-4f85-839d-eff5d94757cc" ], "If-Match": [ "*" @@ -1006,7 +1006,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1020,7 +1020,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f81551d5-6235-40b6-9540-5a44851f2e62" + "e34b9f05-dd3a-486f-902e-1563f79952fd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1029,16 +1029,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "b187bae5-966b-442f-9503-c4742d1942e5" + "ec841790-67d8-4bc2-aade-9ea34aeda456" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193816Z:b187bae5-966b-442f-9503-c4742d1942e5" + "WESTUS:20200721T164533Z:ec841790-67d8-4bc2-aade-9ea34aeda456" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:38:16 GMT" + "Tue, 21 Jul 2020 16:45:32 GMT" ], "Expires": [ "-1" @@ -1051,13 +1051,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2754?deleteRevisions=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyNzU0P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7862?deleteRevisions=true&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3ODYyP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "262f8393-49ac-47b7-aed5-e6667b169716" + "e5c2dca3-c7e1-4f35-a003-6e072b9ceb82" ], "If-Match": [ "*" @@ -1069,7 +1069,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1083,7 +1083,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "985adfa5-9f78-44ad-8692-6388d599fa2e" + "e78bf280-c782-40bf-b0fd-0f6bea123296" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1092,16 +1092,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "cabc3ee1-8fe3-471a-b87e-e0dc9261aa77" + "3ceeb70f-d9bb-4b5c-aa5f-28a4b2e00308" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193817Z:cabc3ee1-8fe3-471a-b87e-e0dc9261aa77" + "WESTUS:20200721T164534Z:3ceeb70f-d9bb-4b5c-aa5f-28a4b2e00308" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:38:16 GMT" + "Tue, 21 Jul 2020 16:45:33 GMT" ], "Expires": [ "-1" @@ -1114,13 +1114,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps6883?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjg4Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4142?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNDE0Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "485842b2-703d-4344-8a57-4d13db3d9231" + "bb3cf3d7-6a25-42c2-8dd0-cbb27737419c" ], "If-Match": [ "*" @@ -1132,7 +1132,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1146,7 +1146,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3d21d4c6-43ae-4160-8999-3a2e7a2addd2" + "c0f2e360-02be-441c-bb21-706a5797f39c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1155,16 +1155,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "9652d794-5b21-4d71-a66b-92582ffe500a" + "0c6e105c-4bd5-4c2b-bd18-6a5930a10488" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193817Z:9652d794-5b21-4d71-a66b-92582ffe500a" + "WESTUS:20200721T164534Z:0c6e105c-4bd5-4c2b-bd18-6a5930a10488" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:38:16 GMT" + "Tue, 21 Jul 2020 16:45:33 GMT" ], "Expires": [ "-1" @@ -1176,18 +1176,18 @@ ], "Names": { "": [ - "ps4910", - "ps6883", - "ps2754", - "ps46", - "ps1548", - "ps9008", - "ps5700", - "ps6225", - "ps3384", - "ps3460", - "ps1370", - "ps7933" + "ps1067", + "ps4142", + "ps7862", + "ps2032", + "ps2138", + "ps6415", + "ps3982", + "ps8138", + "ps1879", + "ps9691", + "ps9516", + "ps6901" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCrudTest.json index acec183552cb..d8cd6b8116d0 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiCrudTest.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "86c35db3-cc62-44bb-a391-caf26483c342" + "f89855fd-3eb1-4327-83f2-b326b25d7820" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -30,25 +30,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d505c2fe-bad4-4050-a43a-1ab41e07c581" + "724c9112-5d98-47fa-8414-9b42e8d92aee" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "fdb6bc33-0e98-443d-8022-54bdfea8d23e" + "8582d53b-1c74-466a-bf6d-eea192defffd" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193612Z:fdb6bc33-0e98-443d-8022-54bdfea8d23e" + "WESTUS:20200721T164328Z:8582d53b-1c74-466a-bf6d-eea192defffd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:12 GMT" + "Tue, 21 Jul 2020 16:43:28 GMT" ], "Content-Length": [ "729" @@ -70,7 +70,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0d2cddc-cd90-4359-8a2e-2ce8a3cbdc00" + "26475e3c-40e4-49a4-bd94-3f32d1dcb308" ], "Accept-Language": [ "en-US" @@ -79,7 +79,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -90,31 +90,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACm8=\"" + "\"AAAAAAAAPIk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5e35f1f7-f652-416d-8315-4ea7823baf47" + "57c979b1-25d6-42ed-8f1d-ad05b845310b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "4054491a-839f-4bfb-9c01-3572c4fe23a4" + "7b8a32cb-9fca-42bc-b001-43885fe76f97" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193613Z:4054491a-839f-4bfb-9c01-3572c4fe23a4" + "WESTUS:20200721T164329Z:7b8a32cb-9fca-42bc-b001-43885fe76f97" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:13 GMT" + "Tue, 21 Jul 2020 16:43:28 GMT" ], "Content-Length": [ "747" @@ -136,7 +136,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22457ca2-23ac-4210-9944-5633b30c5606" + "56c13013-3d08-416f-ad65-26aaad095918" ], "Accept-Language": [ "en-US" @@ -145,7 +145,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -159,25 +159,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "309b50e7-15b2-4d30-927d-4afdc17d97b7" + "0564d318-9006-4519-84f1-07c0bae45f84" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "b7e92a20-310f-4157-9f05-efa250c535ef" + "02ab704c-6a6a-4684-bc47-33f1df886c31" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193613Z:b7e92a20-310f-4157-9f05-efa250c535ef" + "WESTUS:20200721T164329Z:02ab704c-6a6a-4684-bc47-33f1df886c31" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:13 GMT" + "Tue, 21 Jul 2020 16:43:28 GMT" ], "Content-Length": [ "729" @@ -193,13 +193,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTc4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps2775\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9343\",\r\n \"query\": \"ps1901\"\r\n },\r\n \"displayName\": \"ps5600\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps7791\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1666\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps636\",\r\n \"query\": \"ps5648\"\r\n },\r\n \"displayName\": \"ps9238\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps5503\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c3eb746c-ea99-4f84-9ee5-4e4bfda6622e" + "6107f342-abd0-459d-bf49-854820347fa5" ], "Accept-Language": [ "en-US" @@ -208,13 +208,13 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "328" + "327" ] }, "ResponseHeaders": { @@ -225,34 +225,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC14=\"" + "\"AAAAAAAAPaQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "77a1a5c5-95fe-41c1-adeb-67d9c1f40b93" + "c515efde-1b18-4643-a22b-4aef30b6a750" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "c0260fbb-f08b-433a-a746-d463f54e723b" + "09ef41b6-fe97-4c67-b7df-de20a6edd4f5" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193613Z:c0260fbb-f08b-433a-a746-d463f54e723b" + "WESTUS:20200721T164329Z:09ef41b6-fe97-4c67-b7df-de20a6edd4f5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:13 GMT" + "Tue, 21 Jul 2020 16:43:28 GMT" ], "Content-Length": [ - "739" + "738" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,17 +261,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7578\",\r\n \"properties\": {\r\n \"displayName\": \"ps5600\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps2775\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps7791\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9343\",\r\n \"query\": \"ps1901\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps9238\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1666\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps5503\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps636\",\r\n \"query\": \"ps5648\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTc4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1707\",\r\n \"authenticationSettings\": {},\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9189\",\r\n \"query\": \"ps9899\"\r\n },\r\n \"apiRevision\": \"1\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"ps6201\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps9934\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3289\",\r\n \"authenticationSettings\": {},\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps3951\",\r\n \"query\": \"ps6386\"\r\n },\r\n \"apiRevision\": \"1\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"ps3818\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps6336\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e57f565f-c876-4676-9c41-0b425572fd9d" + "7fff3264-2d46-44f6-a594-dc4645fbea68" ], "If-Match": [ "*" @@ -283,7 +283,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -300,31 +300,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC2I=\"" + "\"AAAAAAAAPag=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "866303f8-6b24-4004-b8ef-a26ff2370276" + "6e9363e0-542d-4ac7-b18b-2f5a2cdc85f6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "38c129ba-b3c7-4b73-99f8-d5333dba659a" + "06f54a25-6415-485f-8f95-3c6f2ac8ee38" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193648Z:38c129ba-b3c7-4b73-99f8-d5333dba659a" + "WESTUS:20200721T164404Z:06f54a25-6415-485f-8f95-3c6f2ac8ee38" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:47 GMT" + "Tue, 21 Jul 2020 16:44:04 GMT" ], "Content-Length": [ "727" @@ -336,17 +336,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7578\",\r\n \"properties\": {\r\n \"displayName\": \"ps6201\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1707\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps9934\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9189\",\r\n \"query\": \"ps9899\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps3818\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps3289\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps6336\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps3951\",\r\n \"query\": \"ps6386\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTc4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1707\",\r\n \"authenticationSettings\": {},\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9189\",\r\n \"query\": \"ps9899\"\r\n },\r\n \"apiRevision\": \"1\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"ps6201\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps9934\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3289\",\r\n \"authenticationSettings\": {},\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps3951\",\r\n \"query\": \"ps6386\"\r\n },\r\n \"apiRevision\": \"1\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"ps3818\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps6336\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1115b41b-88c2-47f8-a00e-7f364092486b" + "28cd7cdd-cc32-479f-9e8d-10be8169e8ea" ], "If-Match": [ "*" @@ -358,7 +358,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,31 +375,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC2Y=\"" + "\"AAAAAAAAPaw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4fcb7c30-5cd5-4562-b266-5983f55c2172" + "bd541e2b-68aa-4491-bba0-0492a38351c1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "d77954f8-2680-4451-8082-296db1a80ade" + "c254f7dc-5c32-442d-93a5-7c2eb1750f94" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193648Z:d77954f8-2680-4451-8082-296db1a80ade" + "WESTUS:20200721T164405Z:c254f7dc-5c32-442d-93a5-7c2eb1750f94" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:48 GMT" + "Tue, 21 Jul 2020 16:44:05 GMT" ], "Content-Length": [ "727" @@ -411,12 +411,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7578\",\r\n \"properties\": {\r\n \"displayName\": \"ps6201\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1707\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps9934\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9189\",\r\n \"query\": \"ps9899\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps3818\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps3289\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps6336\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps3951\",\r\n \"query\": \"ps6386\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTc4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -424,7 +424,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -435,34 +435,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC14=\"" + "\"AAAAAAAAPaQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "86b57594-25a3-4c0c-be05-2630dc022658" + "0848a60d-fd19-454d-a38e-9c94629045bd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "ac12ef30-e4b7-4baa-808e-732e96a2c99f" + "67763728-507a-4a52-a0ad-2fa21c3d5648" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193643Z:ac12ef30-e4b7-4baa-808e-732e96a2c99f" + "WESTUS:20200721T164400Z:67763728-507a-4a52-a0ad-2fa21c3d5648" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:43 GMT" + "Tue, 21 Jul 2020 16:43:59 GMT" ], "Content-Length": [ - "739" + "738" ], "Content-Type": [ "application/json; charset=utf-8" @@ -471,17 +471,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7578\",\r\n \"properties\": {\r\n \"displayName\": \"ps5600\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps2775\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps7791\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9343\",\r\n \"query\": \"ps1901\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps9238\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1666\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps5503\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps636\",\r\n \"query\": \"ps5648\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTc4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cec3ae86-4b94-4ffd-ab29-74d3921eb6af" + "5ecb91ff-38df-454f-9901-34ff59931a45" ], "Accept-Language": [ "en-US" @@ -490,7 +490,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -501,34 +501,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC14=\"" + "\"AAAAAAAAPaQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "125e5aaa-381a-406b-8f28-15395a82a7a6" + "1465cf79-24c3-439b-ac68-05bc2258aad8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "11290002-1565-4ec6-9bf2-ea8779124e94" + "a9d92b61-4414-4cf0-b2ca-c5c7199b6cf5" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193643Z:11290002-1565-4ec6-9bf2-ea8779124e94" + "WESTUS:20200721T164400Z:a9d92b61-4414-4cf0-b2ca-c5c7199b6cf5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:43 GMT" + "Tue, 21 Jul 2020 16:44:00 GMT" ], "Content-Length": [ - "739" + "738" ], "Content-Type": [ "application/json; charset=utf-8" @@ -537,17 +537,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7578\",\r\n \"properties\": {\r\n \"displayName\": \"ps5600\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps2775\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps7791\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9343\",\r\n \"query\": \"ps1901\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps9238\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1666\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps5503\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps636\",\r\n \"query\": \"ps5648\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTc4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f1677ce-28a6-4b7c-9c02-acade576b461" + "da40373c-9e30-4b9a-bf90-730a3a7c4c75" ], "Accept-Language": [ "en-US" @@ -556,7 +556,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -567,31 +567,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC2I=\"" + "\"AAAAAAAAPag=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3f5d8b92-6cc1-487f-82fc-8a5d40575747" + "638134c2-11b0-488a-bf6d-8b298b674684" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "d023c9ff-1d27-4afc-b606-beb4c0453014" + "cf534705-3930-4404-b0d5-aa5afe06849c" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193648Z:d023c9ff-1d27-4afc-b606-beb4c0453014" + "WESTUS:20200721T164404Z:cf534705-3930-4404-b0d5-aa5afe06849c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:47 GMT" + "Tue, 21 Jul 2020 16:44:04 GMT" ], "Content-Length": [ "727" @@ -603,7 +603,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7578\",\r\n \"properties\": {\r\n \"displayName\": \"ps6201\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1707\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps9934\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps9189\",\r\n \"query\": \"ps9899\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps3818\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps3289\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps6336\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps3951\",\r\n \"query\": \"ps6386\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { @@ -613,7 +613,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7f5ac00-39f9-4f66-bdd6-b2e5d6d7c59c" + "699f7946-15e6-4665-b464-fdd71680a5c9" ], "Accept-Language": [ "en-US" @@ -622,7 +622,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -636,25 +636,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "07f1ad7d-35c9-45a1-99b2-e2637771b460" + "4014b5f9-00fc-48c6-bf59-ae86dd6833e0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "44edfef8-f885-45a5-bec1-0d016c42c417" + "b108afab-f359-4dcd-81a2-ee60d12a2bd5" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193649Z:44edfef8-f885-45a5-bec1-0d016c42c417" + "WESTUS:20200721T164405Z:b108afab-f359-4dcd-81a2-ee60d12a2bd5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:48 GMT" + "Tue, 21 Jul 2020 16:44:05 GMT" ], "Content-Length": [ "1287" @@ -670,13 +670,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps7578?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9wczc1Nzg/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps1884?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9wczE4ODQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48989835-6fc0-4d34-853a-ced37ad1f16c" + "ec77fdfd-ad5d-47ba-ab6a-354653b168bd" ], "Accept-Language": [ "en-US" @@ -685,7 +685,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -696,31 +696,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC2Y=\"" + "\"AAAAAAAAPaw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f1920edb-4636-4dad-898a-33b9e9fab720" + "ed6ebad1-9d9b-426b-94b8-7088d285bd75" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-correlation-request-id": [ - "c33cf1bd-946a-4314-b7c5-8cb7ceaa770a" + "361a4bfc-71e1-40ed-9fd5-92dad8001b10" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193649Z:c33cf1bd-946a-4314-b7c5-8cb7ceaa770a" + "WESTUS:20200721T164405Z:361a4bfc-71e1-40ed-9fd5-92dad8001b10" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:48 GMT" + "Tue, 21 Jul 2020 16:44:05 GMT" ], "Content-Length": [ "629" @@ -732,7 +732,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps7578\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps7578\",\r\n \"properties\": {\r\n \"displayName\": \"ps6201\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1707\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps9934\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps3818\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps3289\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps6336\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { @@ -742,7 +742,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "86348b6c-dcb5-4a38-9726-717472e6a53b" + "439c3cae-bbfc-4644-a00d-e0f6b9936572" ], "Accept-Language": [ "en-US" @@ -751,7 +751,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -765,25 +765,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "706eff14-bc1b-4b63-8bfc-704fda2d6579" + "6022f909-e0bc-4854-8ef3-827e8bac6429" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "33fbbf0e-3683-4fad-95b9-4d583edc93e2" + "2b17e278-8fd2-4415-a273-f9f1c4b62b5d" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193649Z:33fbbf0e-3683-4fad-95b9-4d583edc93e2" + "WESTUS:20200721T164405Z:2b17e278-8fd2-4415-a273-f9f1c4b62b5d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:48 GMT" + "Tue, 21 Jul 2020 16:44:05 GMT" ], "Content-Length": [ "1482" @@ -795,7 +795,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps7578\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps7578\",\r\n \"properties\": {\r\n \"displayName\": \"ps6201\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1707\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps9934\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps3818\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps3289\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps6336\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { @@ -805,7 +805,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ef7d6c3-53f5-4faa-904c-77c7488822c7" + "effba4dd-f02f-4db4-98dd-d8c51f77912f" ], "Accept-Language": [ "en-US" @@ -814,7 +814,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -828,25 +828,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cfe739e2-60b3-413b-9a15-d7aac42ae338" + "088a9b60-569f-4ab4-9ade-295d959f49e1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "046e8485-6d29-445e-9926-0c3a20cdc250" + "d3cff6ca-066c-4978-9218-da8d56ced932" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193649Z:046e8485-6d29-445e-9926-0c3a20cdc250" + "WESTUS:20200721T164406Z:d3cff6ca-066c-4978-9218-da8d56ced932" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:49 GMT" + "Tue, 21 Jul 2020 16:44:05 GMT" ], "Content-Length": [ "755" @@ -862,13 +862,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps7578?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9wczc1Nzg/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps1884?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9wczE4ODQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6097cbb0-0fb8-4b85-83c5-cdb221b4e72b" + "62aaaf08-f22f-4316-8d99-dfd4ee06627b" ], "Accept-Language": [ "en-US" @@ -877,7 +877,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -891,7 +891,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d2fefa38-246b-4310-a227-86032a872390" + "bbffec42-b004-47ed-a04e-8721b1f1e72a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -900,16 +900,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "30fd0dba-cfb4-47b1-972d-a8ee3327d178" + "7c2091fa-c360-42e8-8ad9-c6bc7ad1600d" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193649Z:30fd0dba-cfb4-47b1-972d-a8ee3327d178" + "WESTUS:20200721T164406Z:7c2091fa-c360-42e8-8ad9-c6bc7ad1600d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:49 GMT" + "Tue, 21 Jul 2020 16:44:05 GMT" ], "Expires": [ "-1" @@ -922,13 +922,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7578?deleteRevisions=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTc4P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884?deleteRevisions=true&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODg0P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6867cf55-96ae-49fd-bf94-83289522b76d" + "109fdf21-7be9-42d0-89ec-f0967cd32869" ], "If-Match": [ "*" @@ -940,7 +940,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -954,7 +954,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "02eb5230-ebdf-42f9-a60b-5d0d13c888a2" + "2450f9a1-c8cd-4b75-8645-3df4ea82f598" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -963,16 +963,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "c952d239-5b7b-4da2-a11f-3e4158186305" + "2f699a5e-5a30-47f1-afe2-ba16de9a8251" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193649Z:c952d239-5b7b-4da2-a11f-3e4158186305" + "WESTUS:20200721T164407Z:2f699a5e-5a30-47f1-afe2-ba16de9a8251" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:49 GMT" + "Tue, 21 Jul 2020 16:44:06 GMT" ], "Expires": [ "-1" @@ -987,17 +987,17 @@ ], "Names": { "": [ - "ps7578", - "ps5600", - "ps2775", - "ps7791", - "ps9343", - "ps1901", - "ps6201", - "ps1707", - "ps9934", - "ps9189", - "ps9899" + "ps1884", + "ps9238", + "ps1666", + "ps5503", + "ps636", + "ps5648", + "ps3818", + "ps3289", + "ps6336", + "ps3951", + "ps6386" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiDiagnosticCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiDiagnosticCrudTest.json index dcdec40b26cc..8a1c31a9d5ec 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiDiagnosticCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiDiagnosticCrudTest.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "189eb648-28c7-439b-a3c1-f18fe4bd411d" + "1503920e-db09-4e22-aed7-01c926f3a96e" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -30,7 +30,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6d3dc293-6090-4280-9fdf-5756adf0a77d" + "99da0789-af78-49e8-a7e4-8f648e38dff7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -39,16 +39,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "63689557-71e6-497f-99df-27a717865304" + "1c66535e-4c9e-4bea-8f7c-b72fa2c2ac24" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193436Z:63689557-71e6-497f-99df-27a717865304" + "WESTUS:20200721T164154Z:1c66535e-4c9e-4bea-8f7c-b72fa2c2ac24" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:36 GMT" + "Tue, 21 Jul 2020 16:41:53 GMT" ], "Content-Length": [ "729" @@ -70,7 +70,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53e53dbd-5717-4d76-9d80-2af67df3e62b" + "ad037c5c-e0d9-49af-9c02-32c8e1b7d747" ], "Accept-Language": [ "en-US" @@ -79,7 +79,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -93,7 +93,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6db5c9ca-e65b-41b4-b0b3-0447fa89251c" + "34d9798c-6427-4cf8-8a75-172f84ab4e1c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -102,16 +102,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "477ce206-d2e8-4d37-8952-8dfac29917bd" + "7d45ef80-9c84-4a6b-b139-315d98e7a38e" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193437Z:477ce206-d2e8-4d37-8952-8dfac29917bd" + "WESTUS:20200721T164154Z:7d45ef80-9c84-4a6b-b139-315d98e7a38e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:36 GMT" + "Tue, 21 Jul 2020 16:41:54 GMT" ], "Content-Length": [ "34" @@ -133,7 +133,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "485160f8-1b7e-4040-8111-6a8696b34673" + "b2fc8fec-fe81-4ccb-8297-1bcc96768f8e" ], "Accept-Language": [ "en-US" @@ -142,7 +142,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -156,7 +156,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8735d7f1-99da-4577-a677-ad3c12eafd29" + "4dada461-2636-46ec-912b-5b6477a219fb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -165,16 +165,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "29214364-44a1-4f66-82ff-ea5e066cd307" + "fdb503b5-5399-46d7-b54d-7092f62937c7" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193442Z:29214364-44a1-4f66-82ff-ea5e066cd307" + "WESTUS:20200721T164159Z:fdb503b5-5399-46d7-b54d-7092f62937c7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:41 GMT" + "Tue, 21 Jul 2020 16:41:58 GMT" ], "Content-Length": [ "34" @@ -190,13 +190,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4655?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM0NjU1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps9145?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM5MTQ1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps8235\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"5295f6ca-23b6-450c-8e22-586d04091ab7\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps213\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"e542043e-271b-4229-a821-33f9332d33fe\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7aeb2215-4231-4666-b709-e870cf7ec022" + "f4410aef-3e08-419e-a2a7-f40119d628be" ], "Accept-Language": [ "en-US" @@ -205,13 +205,13 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "222" + "221" ] }, "ResponseHeaders": { @@ -222,13 +222,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACw0=\"" + "\"AAAAAAAAPVM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5d49fdf2-1863-4e93-b399-ee8324e81412" + "27199e1b-dfca-4be0-aa99-069c7420b053" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -237,19 +237,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "fc248036-c2de-449e-9a45-b824371d4047" + "fdc262df-0178-4e9a-88bc-9f428cc4b6f2" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193439Z:fc248036-c2de-449e-9a45-b824371d4047" + "WESTUS:20200721T164157Z:fdc262df-0178-4e9a-88bc-9f428cc4b6f2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:39 GMT" + "Tue, 21 Jul 2020 16:41:56 GMT" ], "Content-Length": [ - "505" + "504" ], "Content-Type": [ "application/json; charset=utf-8" @@ -258,17 +258,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4655\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps4655\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps8235\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5eab284fa2ca601230023193}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps9145\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps9145\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps213\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5f171ad5a2ca600fe4c29707}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", "StatusCode": 201 }, { "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights?api-version=2019-12-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps4655\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps9145\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0a607afa-fb1f-4484-9063-0ed7a890825d" + "c3bbf645-b4da-4879-a197-2cefb94eabb2" ], "Accept-Language": [ "en-US" @@ -277,7 +277,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -294,13 +294,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACw8=\"" + "\"AAAAAAAAPVU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b6cbe3b0-3919-42f4-86b4-61af1d3d74d6" + "eca9a789-94ee-4872-abcf-a9fa485dbc85" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -309,16 +309,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "943ff2d2-7d96-4748-b3d0-ac896b1badb3" + "847b5c81-0c56-4007-9de2-0ad8582a5b27" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193440Z:943ff2d2-7d96-4748-b3d0-ac896b1badb3" + "WESTUS:20200721T164158Z:847b5c81-0c56-4007-9de2-0ad8582a5b27" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:39 GMT" + "Tue, 21 Jul 2020 16:41:57 GMT" ], "Content-Length": [ "1417" @@ -330,17 +330,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4655\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps9145\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}", "StatusCode": 201 }, { "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights?api-version=2019-12-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps4655\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps9145\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "52c9cdae-d56b-467a-84e6-5be2d99b6089" + "9bdaf88e-fc78-4777-ad33-e5932ebef382" ], "If-Match": [ "*" @@ -352,7 +352,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -369,13 +369,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACxI=\"" + "\"AAAAAAAAPVg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "26593e88-ca61-4a8a-9ebf-2156ac35df24" + "dcf3b52e-1248-46b7-8bb5-77d9226e1759" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -384,16 +384,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "84b275be-3a32-4166-a6e9-9dde96f2c555" + "2c8ee5a5-7313-486e-8a00-226aeff34a35" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193440Z:84b275be-3a32-4166-a6e9-9dde96f2c555" + "WESTUS:20200721T164158Z:2c8ee5a5-7313-486e-8a00-226aeff34a35" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:40 GMT" + "Tue, 21 Jul 2020 16:41:57 GMT" ], "Content-Length": [ "1076" @@ -405,7 +405,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4655\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps9145\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}", "StatusCode": 200 }, { @@ -415,7 +415,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1b75a47-5cfb-4c1d-bbbd-785e36e841d2" + "5d8e8854-f4bd-4f8e-8375-f05f4ef54529" ], "Accept-Language": [ "en-US" @@ -424,7 +424,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -435,13 +435,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACxI=\"" + "\"AAAAAAAAPVg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "40f16e6c-dcec-4a10-a152-95814b484af8" + "0a5e4dc9-d549-4869-a5f7-fe80fad2a675" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -450,16 +450,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "48d6fc92-555f-4afc-b29d-d10257c8a0b7" + "eab164a6-9d72-40c0-88dd-fc6d13169fab" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193440Z:48d6fc92-555f-4afc-b29d-d10257c8a0b7" + "WESTUS:20200721T164158Z:eab164a6-9d72-40c0-88dd-fc6d13169fab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:40 GMT" + "Tue, 21 Jul 2020 16:41:58 GMT" ], "Content-Length": [ "1076" @@ -471,7 +471,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4655\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps9145\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}", "StatusCode": 200 }, { @@ -481,7 +481,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc3b68c2-d349-40de-8cee-dfb7b144c969" + "f15d7538-ebed-49fb-870a-5dd9b34bab2b" ], "Accept-Language": [ "en-US" @@ -490,7 +490,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -501,13 +501,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACxI=\"" + "\"AAAAAAAAPVg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0f5cd9e1-a302-4c49-a8d8-73ad45c14a36" + "704fce42-8f47-4f16-bc48-78f709cf5d6b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -516,16 +516,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "b1c1e952-c9c7-4217-97fc-93eb63101761" + "6ac168bc-47bc-4016-bbf3-9bff6f56dffb" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193441Z:b1c1e952-c9c7-4217-97fc-93eb63101761" + "WESTUS:20200721T164158Z:6ac168bc-47bc-4016-bbf3-9bff6f56dffb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:41 GMT" + "Tue, 21 Jul 2020 16:41:58 GMT" ], "Content-Length": [ "1076" @@ -537,7 +537,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4655\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps9145\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}", "StatusCode": 200 }, { @@ -547,7 +547,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12d510b8-1a2e-4d30-82fb-33789afd2d94" + "a41fe85b-d5b2-4ce4-b498-cfaafbe12365" ], "If-Match": [ "*" @@ -559,7 +559,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -573,7 +573,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "792526bc-ff88-4393-83b3-94b386accf2a" + "205a8886-ee98-4999-8958-04a1fbd73792" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -582,16 +582,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "79409654-ba28-49c8-a072-7c08b8f157be" + "e2e8a532-1b65-4f86-8095-0d7a1625a285" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193441Z:79409654-ba28-49c8-a072-7c08b8f157be" + "WESTUS:20200721T164159Z:e2e8a532-1b65-4f86-8095-0d7a1625a285" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:41 GMT" + "Tue, 21 Jul 2020 16:41:58 GMT" ], "Expires": [ "-1" @@ -610,7 +610,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30dcdaf6-cb8a-4112-b2a0-19cc0a370822" + "1d398d95-749c-4ba0-a927-e396ff1447e0" ], "If-Match": [ "*" @@ -622,7 +622,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -636,7 +636,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b6f0d02f-a795-42e7-a9aa-e8e32aa78de4" + "40e72632-34eb-4ca4-8a58-0d0b6e111767" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -645,16 +645,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "f059df8f-e509-486a-9ed7-4dcc10a0ab20" + "947e4499-92f5-4536-8d7f-1b96d56fa64f" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193442Z:f059df8f-e509-486a-9ed7-4dcc10a0ab20" + "WESTUS:20200721T164159Z:947e4499-92f5-4536-8d7f-1b96d56fa64f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:41 GMT" + "Tue, 21 Jul 2020 16:41:58 GMT" ], "Expires": [ "-1" @@ -664,13 +664,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4655?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM0NjU1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps9145?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM5MTQ1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "209257b9-ad1c-4e51-a7b2-28c909793c93" + "5849e202-6e22-45b2-baac-c3f9420a8010" ], "If-Match": [ "*" @@ -682,7 +682,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -696,7 +696,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bdca8066-89fa-4a76-8496-21425bab3e14" + "02c332d0-7c27-43f2-a493-1dd15d646e49" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -705,16 +705,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "cb56155f-d6f3-4070-900b-39807bdb78f0" + "04fe11a4-9925-4d85-b459-504a6fd93ce9" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193442Z:cb56155f-d6f3-4070-900b-39807bdb78f0" + "WESTUS:20200721T164159Z:04fe11a4-9925-4d85-b459-504a6fd93ce9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:41 GMT" + "Tue, 21 Jul 2020 16:41:59 GMT" ], "Expires": [ "-1" @@ -733,7 +733,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed62df50-7fca-4119-9228-fcf8fec92a7f" + "1c040cef-6b8d-49cb-9e42-a51dd320f140" ], "Accept-Language": [ "en-US" @@ -742,7 +742,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -756,7 +756,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "285cfc1d-3902-43a1-85ec-7e334e60026c" + "1ddb45c6-80d4-44b8-a1df-b59ef582c281" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -765,16 +765,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "090617ad-8e30-4544-a003-6712f9d9faea" + "d354d078-8463-49de-97e4-ea741688662e" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193442Z:090617ad-8e30-4544-a003-6712f9d9faea" + "WESTUS:20200721T164159Z:d354d078-8463-49de-97e4-ea741688662e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:41 GMT" + "Tue, 21 Jul 2020 16:41:59 GMT" ], "Content-Length": [ "505" @@ -786,17 +786,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5eab284fa2ca601230023192\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5eab284fa2ca601230023192\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5eab284fa2ca601230023193\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171ad5a2ca600fe4c29706\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5f171ad5a2ca600fe4c29706\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5f171ad5a2ca600fe4c29707\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5eab284fa2ca601230023192?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVlYWIyODRmYTJjYTYwMTIzMDAyMzE5Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171ad5a2ca600fe4c29706?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVmMTcxYWQ1YTJjYTYwMGZlNGMyOTcwNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da29d94e-f29f-4f20-8cd3-ab00946c21ba" + "a01c1ceb-4004-4946-8f96-d3718c2cd762" ], "If-Match": [ "*" @@ -808,7 +808,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -822,7 +822,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0ccfedd5-3fd2-42f9-a64e-14891ef163e5" + "83abec57-4a3b-47e0-a523-7e65e8ba4a48" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -831,16 +831,16 @@ "14996" ], "x-ms-correlation-request-id": [ - "838a0350-46b8-4574-b0fd-5aa59a46582f" + "8f938687-35f3-4652-bd80-3d79f24f9532" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193442Z:838a0350-46b8-4574-b0fd-5aa59a46582f" + "WESTUS:20200721T164200Z:8f938687-35f3-4652-bd80-3d79f24f9532" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:42 GMT" + "Tue, 21 Jul 2020 16:41:59 GMT" ], "Expires": [ "-1" @@ -855,8 +855,8 @@ ], "Names": { "": [ - "ps4655", - "ps8235" + "ps9145", + "ps213" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiJsonTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiJsonTest.json index 291800c2b9a4..08328bacc25d 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiJsonTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiJsonTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5833?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODMzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NDk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"openapifromFile\",\r\n \"value\": \"{\\r\\n \\\"openapi\\\": \\\"3.0.0\\\",\\r\\n \\\"servers\\\": [\\r\\n {\\r\\n \\\"url\\\": \\\"http://petstore.swagger.io/v2\\\"\\r\\n }\\r\\n ],\\r\\n \\\"info\\\": {\\r\\n \\\"description\\\": \\\":dog: :cat: :rabbit: This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\\\",\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore\\\",\\r\\n \\\"termsOfService\\\": \\\"http://swagger.io/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"email\\\": \\\"apiteam@swagger.io\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"Apache 2.0\\\",\\r\\n \\\"url\\\": \\\"http://www.apache.org/licenses/LICENSE-2.0.html\\\"\\r\\n }\\r\\n },\\r\\n \\\"tags\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"description\\\": \\\"Everything about your Pets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"Find out more\\\",\\r\\n \\\"url\\\": \\\"http://swagger.io\\\"\\r\\n }\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"store\\\",\\r\\n \\\"description\\\": \\\"Access to Petstore orders\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"user\\\",\\r\\n \\\"description\\\": \\\"Operations about user\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"Find out more about our store\\\",\\r\\n \\\"url\\\": \\\"http://swagger.io\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/pet\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Add a new pet to the store\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"405\\\": {\\r\\n \\\"description\\\": \\\"Invalid input\\\"\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"petstore_auth\\\": [\\r\\n \\\"write:pets\\\",\\r\\n \\\"read:pets\\\"\\r\\n ]\\r\\n }\\r\\n ],\\r\\n \\\"requestBody\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/requestBodies/Pet\\\"\\r\\n },\\r\\n \\\"parameters\\\": []\\r\\n },\\r\\n \\\"put\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Update an existing pet\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"updatePet\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid ID supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"Pet not found\\\"\\r\\n },\\r\\n \\\"405\\\": {\\r\\n \\\"description\\\": \\\"Validation exception\\\"\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"petstore_auth\\\": [\\r\\n \\\"write:pets\\\",\\r\\n \\\"read:pets\\\"\\r\\n ]\\r\\n }\\r\\n ],\\r\\n \\\"requestBody\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/requestBodies/Pet\\\"\\r\\n },\\r\\n \\\"parameters\\\": []\\r\\n }\\r\\n },\\r\\n \\\"/pet/findByStatus\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Finds Pets by status\\\",\\r\\n \\\"description\\\": \\\"Multiple status values can be provided with comma separated strings\\\",\\r\\n \\\"operationId\\\": \\\"findPetsByStatus\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"status\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"Status values that need to be considered for filter\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"explode\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"enum\\\": [\\r\\n \\\"available\\\",\\r\\n \\\"pending\\\",\\r\\n \\\"sold\\\"\\r\\n ],\\r\\n \\\"default\\\": \\\"available\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid status value\\\"\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"petstore_auth\\\": [\\r\\n \\\"write:pets\\\",\\r\\n \\\"read:pets\\\"\\r\\n ]\\r\\n }\\r\\n ]\\r\\n }\\r\\n },\\r\\n \\\"/pet/findByTags\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Finds Pets by tags\\\",\\r\\n \\\"description\\\": \\\"Muliple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.\\\",\\r\\n \\\"operationId\\\": \\\"findPetsByTags\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"Tags to filter by\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"explode\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid tag value\\\"\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"petstore_auth\\\": [\\r\\n \\\"write:pets\\\",\\r\\n \\\"read:pets\\\"\\r\\n ]\\r\\n }\\r\\n ],\\r\\n \\\"deprecated\\\": true\\r\\n }\\r\\n },\\r\\n \\\"/pet/{petId}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Find pet by ID\\\",\\r\\n \\\"description\\\": \\\"Returns a single pet\\\",\\r\\n \\\"operationId\\\": \\\"getPetById\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"petId\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to return\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid ID supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"Pet not found\\\"\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"api_key\\\": []\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Updates a pet in the store with form data\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"updatePetWithForm\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"petId\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet that needs to be updated\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"405\\\": {\\r\\n \\\"description\\\": \\\"Invalid input\\\"\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"petstore_auth\\\": [\\r\\n \\\"write:pets\\\",\\r\\n \\\"read:pets\\\"\\r\\n ]\\r\\n }\\r\\n ],\\r\\n \\\"requestBody\\\": {\\r\\n \\\"content\\\": {\\r\\n \\\"application/x-www-form-urlencoded\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"name\\\": {\\r\\n \\\"description\\\": \\\"Updated name of the pet\\\",\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"status\\\": {\\r\\n \\\"description\\\": \\\"Updated status of the pet\\\",\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Deletes a pet\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"api_key\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"petId\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"Pet id to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid ID supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"Pet not found\\\"\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"petstore_auth\\\": [\\r\\n \\\"write:pets\\\",\\r\\n \\\"read:pets\\\"\\r\\n ]\\r\\n }\\r\\n ]\\r\\n }\\r\\n },\\r\\n \\\"/pet/{petId}/uploadImage\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"pet\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"uploads an image\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"uploadFile\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"petId\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to update\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/ApiResponse\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"petstore_auth\\\": [\\r\\n \\\"write:pets\\\",\\r\\n \\\"read:pets\\\"\\r\\n ]\\r\\n }\\r\\n ],\\r\\n \\\"requestBody\\\": {\\r\\n \\\"content\\\": {\\r\\n \\\"application/octet-stream\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"binary\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/store/inventory\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"store\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Returns pet inventories by status\\\",\\r\\n \\\"description\\\": \\\"Returns a map of status codes to quantities\\\",\\r\\n \\\"operationId\\\": \\\"getInventory\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"additionalProperties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"security\\\": [\\r\\n {\\r\\n \\\"api_key\\\": []\\r\\n }\\r\\n ],\\r\\n \\\"parameters\\\": []\\r\\n }\\r\\n },\\r\\n \\\"/store/order\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"store\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Place an order for a pet\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"placeOrder\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Order\\\"\\r\\n }\\r\\n },\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Order\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid Order\\\"\\r\\n }\\r\\n },\\r\\n \\\"requestBody\\\": {\\r\\n \\\"content\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Order\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"description\\\": \\\"order placed for purchasing the pet\\\",\\r\\n \\\"required\\\": true\\r\\n },\\r\\n \\\"parameters\\\": []\\r\\n }\\r\\n },\\r\\n \\\"/store/order/{orderId}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"store\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Find purchase order by ID\\\",\\r\\n \\\"description\\\": \\\"For valid response try integer IDs with value >= 1 and <= 10. Other values will generated exceptions\\\",\\r\\n \\\"operationId\\\": \\\"getOrderById\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"orderId\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet that needs to be fetched\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\",\\r\\n \\\"minimum\\\": 1,\\r\\n \\\"maximum\\\": 10\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Order\\\"\\r\\n }\\r\\n },\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Order\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid ID supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"Order not found\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"store\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Delete purchase order by ID\\\",\\r\\n \\\"description\\\": \\\"For valid response try integer IDs with positive integer value. Negative or non-integer values will generate API errors\\\",\\r\\n \\\"operationId\\\": \\\"deleteOrder\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"orderId\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of the order that needs to be deleted\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\",\\r\\n \\\"minimum\\\": 1\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid ID supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"Order not found\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/user\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Create user\\\",\\r\\n \\\"description\\\": \\\"This can only be done by the logged in user.\\\",\\r\\n \\\"operationId\\\": \\\"createUser\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\"\\r\\n }\\r\\n },\\r\\n \\\"requestBody\\\": {\\r\\n \\\"content\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/User\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"description\\\": \\\"Created user object\\\",\\r\\n \\\"required\\\": true\\r\\n },\\r\\n \\\"parameters\\\": []\\r\\n }\\r\\n },\\r\\n \\\"/user/createWithArray\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Creates list of users with given input array\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"createUsersWithArrayInput\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\"\\r\\n }\\r\\n },\\r\\n \\\"requestBody\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/requestBodies/UserArray\\\"\\r\\n },\\r\\n \\\"parameters\\\": []\\r\\n }\\r\\n },\\r\\n \\\"/user/createWithList\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Creates list of users with given input array\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"createUsersWithListInput\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\"\\r\\n }\\r\\n },\\r\\n \\\"requestBody\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/requestBodies/UserArray\\\"\\r\\n },\\r\\n \\\"parameters\\\": []\\r\\n }\\r\\n },\\r\\n \\\"/user/login\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Logs user into the system\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"loginUser\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"username\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"The user name for login\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"password\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"The password for login in clear text\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"password\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"headers\\\": {\\r\\n \\\"X-Rate-Limit\\\": {\\r\\n \\\"description\\\": \\\"calls per hour allowed by the user\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n },\\r\\n \\\"X-Expires-After\\\": {\\r\\n \\\"description\\\": \\\"date in UTC when token expires\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date-time\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"content\\\": {\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n },\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid username/password supplied\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/user/logout\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Logs out current logged in user session\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"logoutUser\\\",\\r\\n \\\"responses\\\": {\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\"\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": []\\r\\n }\\r\\n },\\r\\n \\\"/user/{username}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Get user by user name\\\",\\r\\n \\\"description\\\": \\\"\\\",\\r\\n \\\"operationId\\\": \\\"getUserByName\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"username\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"The name that needs to be fetched. Use user1 for testing. \\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"successful operation\\\",\\r\\n \\\"content\\\": {\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/User\\\"\\r\\n }\\r\\n },\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/User\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid username supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"User not found\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"put\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Updated user\\\",\\r\\n \\\"description\\\": \\\"This can only be done by the logged in user.\\\",\\r\\n \\\"operationId\\\": \\\"updateUser\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"username\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"name that need to be updated\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid user supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"User not found\\\"\\r\\n }\\r\\n },\\r\\n \\\"requestBody\\\": {\\r\\n \\\"content\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/User\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"description\\\": \\\"Updated user object\\\",\\r\\n \\\"required\\\": true\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"tags\\\": [\\r\\n \\\"user\\\"\\r\\n ],\\r\\n \\\"summary\\\": \\\"Delete user\\\",\\r\\n \\\"description\\\": \\\"This can only be done by the logged in user.\\\",\\r\\n \\\"operationId\\\": \\\"deleteUser\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"username\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"The name that needs to be deleted\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"400\\\": {\\r\\n \\\"description\\\": \\\"Invalid username supplied\\\"\\r\\n },\\r\\n \\\"404\\\": {\\r\\n \\\"description\\\": \\\"User not found\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"See AsyncAPI example\\\",\\r\\n \\\"url\\\": \\\"https://mermade.github.io/shins/asyncapi.html\\\"\\r\\n },\\r\\n \\\"components\\\": {\\r\\n \\\"schemas\\\": {\\r\\n \\\"Order\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"petId\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"quantity\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"shipDate\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date-time\\\"\\r\\n },\\r\\n \\\"status\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"description\\\": \\\"Order Status\\\",\\r\\n \\\"enum\\\": [\\r\\n \\\"placed\\\",\\r\\n \\\"approved\\\",\\r\\n \\\"delivered\\\"\\r\\n ]\\r\\n },\\r\\n \\\"complete\\\": {\\r\\n \\\"type\\\": \\\"boolean\\\",\\r\\n \\\"default\\\": false\\r\\n }\\r\\n },\\r\\n \\\"xml\\\": {\\r\\n \\\"name\\\": \\\"Order\\\"\\r\\n }\\r\\n },\\r\\n \\\"Category\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n },\\r\\n \\\"xml\\\": {\\r\\n \\\"name\\\": \\\"Category\\\"\\r\\n }\\r\\n },\\r\\n \\\"User\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"username\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"email\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"password\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"phone\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"userStatus\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\",\\r\\n \\\"description\\\": \\\"User Status\\\"\\r\\n }\\r\\n },\\r\\n \\\"xml\\\": {\\r\\n \\\"name\\\": \\\"User\\\"\\r\\n }\\r\\n },\\r\\n \\\"Tag\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n },\\r\\n \\\"xml\\\": {\\r\\n \\\"name\\\": \\\"Tag\\\"\\r\\n }\\r\\n },\\r\\n \\\"Pet\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\",\\r\\n \\\"photoUrls\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"category\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Category\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"example\\\": \\\"doggie\\\"\\r\\n },\\r\\n \\\"photoUrls\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"xml\\\": {\\r\\n \\\"name\\\": \\\"photoUrl\\\",\\r\\n \\\"wrapped\\\": true\\r\\n },\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n },\\r\\n \\\"tags\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"xml\\\": {\\r\\n \\\"name\\\": \\\"tag\\\",\\r\\n \\\"wrapped\\\": true\\r\\n },\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Tag\\\"\\r\\n }\\r\\n },\\r\\n \\\"status\\\": {\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"description\\\": \\\"pet status in the store\\\",\\r\\n \\\"enum\\\": [\\r\\n \\\"available\\\",\\r\\n \\\"pending\\\",\\r\\n \\\"sold\\\"\\r\\n ]\\r\\n }\\r\\n },\\r\\n \\\"xml\\\": {\\r\\n \\\"name\\\": \\\"Pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"ApiResponse\\\": {\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"type\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"requestBodies\\\": {\\r\\n \\\"Pet\\\": {\\r\\n \\\"content\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"application/xml\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/Pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"description\\\": \\\"Pet object that needs to be added to the store\\\",\\r\\n \\\"required\\\": true\\r\\n },\\r\\n \\\"UserArray\\\": {\\r\\n \\\"content\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/components/schemas/User\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"description\\\": \\\"List of user object\\\",\\r\\n \\\"required\\\": true\\r\\n }\\r\\n },\\r\\n \\\"securitySchemes\\\": {\\r\\n \\\"petstore_auth\\\": {\\r\\n \\\"type\\\": \\\"oauth2\\\",\\r\\n \\\"flows\\\": {\\r\\n \\\"implicit\\\": {\\r\\n \\\"authorizationUrl\\\": \\\"http://petstore.swagger.io/oauth/dialog\\\",\\r\\n \\\"scopes\\\": {\\r\\n \\\"write:pets\\\": \\\"modify pets in your account\\\",\\r\\n \\\"read:pets\\\": \\\"read your pets\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"api_key\\\": {\\r\\n \\\"type\\\": \\\"apiKey\\\",\\r\\n \\\"name\\\": \\\"api_key\\\",\\r\\n \\\"in\\\": \\\"header\\\"\\r\\n }\\r\\n },\\r\\n \\\"links\\\": {},\\r\\n \\\"callbacks\\\": {}\\r\\n },\\r\\n \\\"security\\\": []\\r\\n}\",\r\n \"format\": \"openapi\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b654eedf-9056-4426-afa2-4c2dcafdc886" + "c1e5f380-b3a3-49a0-8551-3df5a4e41c20" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,31 +33,31 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5833?api-version=2019-12-01&asyncId=5eab26c0a2ca601230023128&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749?api-version=2019-12-01&asyncId=5f17190fa2ca600fe4c29689&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "41f7320d-4d55-4e5d-b08b-a0dbb407f1b3" + "53020e42-214d-41cc-8736-0187f4833881" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1194" ], "x-ms-correlation-request-id": [ - "641e2c91-dc4f-4f68-8f10-8e107f1e83e9" + "5bb6bd89-d41a-42bd-b253-e8a6668269b6" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192801Z:641e2c91-dc4f-4f68-8f10-8e107f1e83e9" + "WESTUS:20200721T163423Z:5bb6bd89-d41a-42bd-b253-e8a6668269b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:28:00 GMT" + "Tue, 21 Jul 2020 16:34:22 GMT" ], "Expires": [ "-1" @@ -70,8 +70,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5833?api-version=2019-12-01&asyncId=5eab26c0a2ca601230023128&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODMzP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjZjMGEyY2E2MDEyMzAwMjMxMjgmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749?api-version=2019-12-01&asyncId=5f17190fa2ca600fe4c29689&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NDk/YXBpLXZlcnNpb249MjAxOS0xMi0wMSZhc3luY0lkPTVmMTcxOTBmYTJjYTYwMGZlNGMyOTY4OSZhc3luY0NvZGU9MjAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -79,7 +79,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -90,34 +90,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACco=\"" + "\"AAAAAAAAO+4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "29ac0b05-26af-4d4b-92e4-35d674718461" + "1fbde73e-94bc-409e-8cf6-4a92125eafa2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11986" ], "x-ms-correlation-request-id": [ - "c2689ec6-f1d9-4548-9afb-001a4961d23a" + "9f4aef1e-5329-4cd4-858b-191269cca73e" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192831Z:c2689ec6-f1d9-4548-9afb-001a4961d23a" + "WESTUS:20200721T163453Z:9f4aef1e-5329-4cd4-858b-191269cca73e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:28:30 GMT" + "Tue, 21 Jul 2020 16:34:53 GMT" ], "Content-Length": [ - "1049" + "1047" ], "Content-Type": [ "application/json; charset=utf-8" @@ -126,17 +126,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5833\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5833\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \":dog: :cat: :rabbit: This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps749\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \":dog: :cat: :rabbit: This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5833?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODMzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NDk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0a2bb00-5d9f-46e9-9fed-ebbad65f1b9a" + "39365b65-8bac-4007-9687-be964a566914" ], "Accept-Language": [ "en-US" @@ -145,7 +145,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -156,34 +156,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACco=\"" + "\"AAAAAAAAO+4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ad20ea78-4e69-4ae8-af64-d916956105f8" + "f803200f-f367-4599-9ff1-d5056b7a990c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11985" ], "x-ms-correlation-request-id": [ - "754b506d-71fa-4c26-b13f-4d49c3fd4aa7" + "635fe429-3df2-4312-a6a0-08ddf5f1af42" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192831Z:754b506d-71fa-4c26-b13f-4d49c3fd4aa7" + "WESTUS:20200721T163454Z:635fe429-3df2-4312-a6a0-08ddf5f1af42" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:28:30 GMT" + "Tue, 21 Jul 2020 16:34:53 GMT" ], "Content-Length": [ - "1049" + "1047" ], "Content-Type": [ "application/json; charset=utf-8" @@ -192,17 +192,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5833\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5833\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \":dog: :cat: :rabbit: This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps749\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \":dog: :cat: :rabbit: This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5833/schemas?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODMzL3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749/schemas?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NDkvc2NoZW1hcz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e9d4c65-9588-4608-98c9-752af383b3e1" + "e1fc86ae-e458-41e5-988c-4651f4862679" ], "Accept-Language": [ "en-US" @@ -211,7 +211,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -225,28 +225,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "98fac092-072e-47fe-b2f6-86fc1767c481" + "0b881b28-8079-4bae-b883-11cfaf0d102b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11984" ], "x-ms-correlation-request-id": [ - "ddf1ac8a-8eef-49fd-8c41-be2a677e107f" + "8744a79d-ad6d-41a3-b7b6-c39db810e550" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192831Z:ddf1ac8a-8eef-49fd-8c41-be2a677e107f" + "WESTUS:20200721T163454Z:8744a79d-ad6d-41a3-b7b6-c39db810e550" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:28:31 GMT" + "Tue, 21 Jul 2020 16:34:54 GMT" ], "Content-Length": [ - "10858" + "10857" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,17 +255,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5833/schemas/5eab26c0a2ca601230023127\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"5eab26c0a2ca601230023127\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.oai.openapi.components+json\",\r\n \"document\": {\r\n \"components\": {\r\n \"schemas\": {\r\n \"Order\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"petId\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"quantity\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"shipDate\": {\r\n \"type\": \"string\",\r\n \"format\": \"date-time\"\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"placed\",\r\n \"approved\",\r\n \"delivered\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"Order Status\"\r\n },\r\n \"complete\": {\r\n \"type\": \"boolean\",\r\n \"default\": false\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Order\"\r\n }\r\n },\r\n \"Category\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Category\"\r\n }\r\n },\r\n \"User\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"username\": {\r\n \"type\": \"string\"\r\n },\r\n \"firstName\": {\r\n \"type\": \"string\"\r\n },\r\n \"lastName\": {\r\n \"type\": \"string\"\r\n },\r\n \"email\": {\r\n \"type\": \"string\"\r\n },\r\n \"password\": {\r\n \"type\": \"string\"\r\n },\r\n \"phone\": {\r\n \"type\": \"string\"\r\n },\r\n \"userStatus\": {\r\n \"type\": \"integer\",\r\n \"description\": \"User Status\",\r\n \"format\": \"int32\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"User\"\r\n }\r\n },\r\n \"Tag\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Tag\"\r\n }\r\n },\r\n \"Pet\": {\r\n \"required\": [\r\n \"name\",\r\n \"photoUrls\"\r\n ],\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"category\": {\r\n \"$ref\": \"#/components/schemas/Category\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"example\": \"doggie\"\r\n },\r\n \"photoUrls\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"xml\": {\r\n \"name\": \"photoUrl\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"tags\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Tag\"\r\n },\r\n \"xml\": {\r\n \"name\": \"tag\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"available\",\r\n \"pending\",\r\n \"sold\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"pet status in the store\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Pet\"\r\n }\r\n },\r\n \"ApiResponse\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"type\": {\r\n \"type\": \"string\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"PetFindByStatusGet200ApplicationXmlResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"PetFindByStatusGet200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"PetFindByTagsGet200ApplicationXmlResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"PetFindByTagsGet200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"Pet-petId-UploadImagePostRequest\": {\r\n \"type\": \"string\",\r\n \"format\": \"binary\"\r\n },\r\n \"StoreInventoryGet200ApplicationJsonResponse\": {\r\n \"type\": \"object\",\r\n \"additionalProperties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n }\r\n },\r\n \"UserLoginGet200ApplicationXmlResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"UserLoginGet200ApplicationJsonResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"PetRequest-json\": {\r\n \"required\": [\r\n \"name\",\r\n \"photoUrls\"\r\n ],\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"category\": {\r\n \"$ref\": \"#/components/schemas/Category\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"example\": \"doggie\"\r\n },\r\n \"photoUrls\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"xml\": {\r\n \"name\": \"photoUrl\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"tags\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Tag\"\r\n },\r\n \"xml\": {\r\n \"name\": \"tag\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"available\",\r\n \"pending\",\r\n \"sold\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"pet status in the store\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Pet\"\r\n }\r\n },\r\n \"PetRequest-xml\": {\r\n \"required\": [\r\n \"name\",\r\n \"photoUrls\"\r\n ],\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"category\": {\r\n \"$ref\": \"#/components/schemas/Category\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"example\": \"doggie\"\r\n },\r\n \"photoUrls\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"xml\": {\r\n \"name\": \"photoUrl\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"tags\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Tag\"\r\n },\r\n \"xml\": {\r\n \"name\": \"tag\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"available\",\r\n \"pending\",\r\n \"sold\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"pet status in the store\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Pet\"\r\n }\r\n },\r\n \"UserArrayRequest-json\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/User\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749/schemas/5f17190fa2ca600fe4c29688\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"5f17190fa2ca600fe4c29688\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.oai.openapi.components+json\",\r\n \"document\": {\r\n \"components\": {\r\n \"schemas\": {\r\n \"Order\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"petId\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"quantity\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"shipDate\": {\r\n \"type\": \"string\",\r\n \"format\": \"date-time\"\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"placed\",\r\n \"approved\",\r\n \"delivered\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"Order Status\"\r\n },\r\n \"complete\": {\r\n \"type\": \"boolean\",\r\n \"default\": false\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Order\"\r\n }\r\n },\r\n \"Category\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Category\"\r\n }\r\n },\r\n \"User\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"username\": {\r\n \"type\": \"string\"\r\n },\r\n \"firstName\": {\r\n \"type\": \"string\"\r\n },\r\n \"lastName\": {\r\n \"type\": \"string\"\r\n },\r\n \"email\": {\r\n \"type\": \"string\"\r\n },\r\n \"password\": {\r\n \"type\": \"string\"\r\n },\r\n \"phone\": {\r\n \"type\": \"string\"\r\n },\r\n \"userStatus\": {\r\n \"type\": \"integer\",\r\n \"description\": \"User Status\",\r\n \"format\": \"int32\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"User\"\r\n }\r\n },\r\n \"Tag\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Tag\"\r\n }\r\n },\r\n \"Pet\": {\r\n \"required\": [\r\n \"name\",\r\n \"photoUrls\"\r\n ],\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"category\": {\r\n \"$ref\": \"#/components/schemas/Category\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"example\": \"doggie\"\r\n },\r\n \"photoUrls\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"xml\": {\r\n \"name\": \"photoUrl\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"tags\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Tag\"\r\n },\r\n \"xml\": {\r\n \"name\": \"tag\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"available\",\r\n \"pending\",\r\n \"sold\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"pet status in the store\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Pet\"\r\n }\r\n },\r\n \"ApiResponse\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"type\": {\r\n \"type\": \"string\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"PetFindByStatusGet200ApplicationXmlResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"PetFindByStatusGet200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"PetFindByTagsGet200ApplicationXmlResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"PetFindByTagsGet200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/PetRequest-xml\"\r\n }\r\n },\r\n \"Pet-petId-UploadImagePostRequest\": {\r\n \"type\": \"string\",\r\n \"format\": \"binary\"\r\n },\r\n \"StoreInventoryGet200ApplicationJsonResponse\": {\r\n \"type\": \"object\",\r\n \"additionalProperties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n }\r\n },\r\n \"UserLoginGet200ApplicationXmlResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"UserLoginGet200ApplicationJsonResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"PetRequest-json\": {\r\n \"required\": [\r\n \"name\",\r\n \"photoUrls\"\r\n ],\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"category\": {\r\n \"$ref\": \"#/components/schemas/Category\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"example\": \"doggie\"\r\n },\r\n \"photoUrls\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"xml\": {\r\n \"name\": \"photoUrl\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"tags\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Tag\"\r\n },\r\n \"xml\": {\r\n \"name\": \"tag\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"available\",\r\n \"pending\",\r\n \"sold\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"pet status in the store\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Pet\"\r\n }\r\n },\r\n \"PetRequest-xml\": {\r\n \"required\": [\r\n \"name\",\r\n \"photoUrls\"\r\n ],\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"category\": {\r\n \"$ref\": \"#/components/schemas/Category\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"example\": \"doggie\"\r\n },\r\n \"photoUrls\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"string\"\r\n },\r\n \"xml\": {\r\n \"name\": \"photoUrl\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"tags\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/Tag\"\r\n },\r\n \"xml\": {\r\n \"name\": \"tag\",\r\n \"wrapped\": true\r\n }\r\n },\r\n \"status\": {\r\n \"enum\": [\r\n \"available\",\r\n \"pending\",\r\n \"sold\"\r\n ],\r\n \"type\": \"string\",\r\n \"description\": \"pet status in the store\"\r\n }\r\n },\r\n \"xml\": {\r\n \"name\": \"Pet\"\r\n }\r\n },\r\n \"UserArrayRequest-json\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"$ref\": \"#/components/schemas/User\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5833%3Brev%3D1?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODMzJTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749%3Brev%3D1?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NDklM0JyZXYlM0QxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Open api via Apim\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"apimPetstore\",\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e797aa10-54e8-4396-963f-741d96ee2c02" + "fdec3e3e-2dd0-41a6-a90f-32d6aa91d661" ], "If-Match": [ "*" @@ -277,7 +277,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -294,34 +294,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAChA=\"" + "\"AAAAAAAAPDQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5c2ff12a-d820-4755-bb1c-53c96de54da7" + "a1c4c5de-3a68-46dd-876f-99dc6a6e8634" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1193" ], "x-ms-correlation-request-id": [ - "e3eee686-f391-4bed-978a-0b546e035b22" + "4e97b409-a27b-4d70-a1b8-8e692e73aa97" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192832Z:e3eee686-f391-4bed-978a-0b546e035b22" + "WESTUS:20200721T163458Z:4e97b409-a27b-4d70-a1b8-8e692e73aa97" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:28:31 GMT" + "Tue, 21 Jul 2020 16:34:58 GMT" ], "Content-Length": [ - "794" + "792" ], "Content-Type": [ "application/json; charset=utf-8" @@ -330,17 +330,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5833\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5833\",\r\n \"properties\": {\r\n \"displayName\": \"apimPetstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Open api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps749\",\r\n \"properties\": {\r\n \"displayName\": \"apimPetstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Open api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v2\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5833?deleteRevisions=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODMzP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749?deleteRevisions=true&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NDk/ZGVsZXRlUmV2aXNpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94300004-717f-4ce9-ad92-5901e08dd80e" + "1a27449b-3ab0-4c80-97ef-06bb319b2f7a" ], "If-Match": [ "*" @@ -352,7 +352,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -366,25 +366,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e62333bc-31fb-457b-893e-a243d79cc225" + "0a4641a1-0463-492f-8aef-01f87e3f51ec" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "ba614125-b3bc-4935-a776-17c71905eb2a" + "766b1016-8302-4aaa-912a-7f4255d4667a" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192832Z:ba614125-b3bc-4935-a776-17c71905eb2a" + "WESTUS:20200721T163458Z:766b1016-8302-4aaa-912a-7f4255d4667a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:28:31 GMT" + "Tue, 21 Jul 2020 16:34:58 GMT" ], "Expires": [ "-1" @@ -399,7 +399,7 @@ ], "Names": { "": [ - "ps5833" + "ps749" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiTest.json index 2c01f94f99ef..7d5402b60462 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportOpenApiTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4146?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MTQ2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NjY0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"openapifromFile\",\r\n \"value\": \"openapi: 3.0.1\\r\\nservers:\\r\\n - url: 'https://developer.uspto.gov/ds-api'\\r\\ninfo:\\r\\n description: >-\\r\\n The Data Set API (DSAPI) allows the public users to discover and search\\r\\n USPTO exported data sets. This is a generic API that allows USPTO users to\\r\\n make any CSV based data files searchable through API. With the help of GET\\r\\n call, it returns the list of data fields that are searchable. With the help\\r\\n of POST call, data can be fetched based on the filters on the field names.\\r\\n Please note that POST call is used to search the actual data. The reason for\\r\\n the POST call is that it allows users to specify any complex search criteria\\r\\n without worry about the GET size limitations as well as encoding of the\\r\\n input parameters.\\r\\n version: 1.0.0\\r\\n title: USPTO Data Set API\\r\\n contact:\\r\\n name: Open Data Portal\\r\\n url: 'https://developer.uspto.gov'\\r\\n email: developer@uspto.gov\\r\\ntags:\\r\\n - name: metadata\\r\\n description: Find out about the data sets\\r\\n - name: search\\r\\n description: Search a data set\\r\\npaths:\\r\\n /:\\r\\n get:\\r\\n tags:\\r\\n - metadata\\r\\n operationId: list-data-sets\\r\\n summary: List available data sets\\r\\n responses:\\r\\n '200':\\r\\n description: Returns a list of data sets\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n $ref: '#/components/schemas/dataSetList'\\r\\n example:\\r\\n {\\r\\n \\\"total\\\": 2,\\r\\n \\\"apis\\\": [\\r\\n {\\r\\n \\\"apiKey\\\": \\\"oa_citations\\\",\\r\\n \\\"apiVersionNumber\\\": \\\"v1\\\",\\r\\n \\\"apiUrl\\\": \\\"https://developer.uspto.gov/ds-api/oa_citations/v1/fields\\\",\\r\\n \\\"apiDocumentationUrl\\\": \\\"https://developer.uspto.gov/ds-api-docs/index.html?url=https://developer.uspto.gov/ds-api/swagger/docs/oa_citations.json\\\"\\r\\n },\\r\\n {\\r\\n \\\"apiKey\\\": \\\"cancer_moonshot\\\",\\r\\n \\\"apiVersionNumber\\\": \\\"v1\\\",\\r\\n \\\"apiUrl\\\": \\\"https://developer.uspto.gov/ds-api/cancer_moonshot/v1/fields\\\",\\r\\n \\\"apiDocumentationUrl\\\": \\\"https://developer.uspto.gov/ds-api-docs/index.html?url=https://developer.uspto.gov/ds-api/swagger/docs/cancer_moonshot.json\\\"\\r\\n }\\r\\n ]\\r\\n }\\r\\n /{dataset}/{version}/fields:\\r\\n get:\\r\\n tags:\\r\\n - metadata\\r\\n summary: >-\\r\\n Provides the general information about the API and the list of fields\\r\\n that can be used to query the dataset.\\r\\n description: >-\\r\\n This GET API returns the list of all the searchable field names that are\\r\\n in the oa_citations. Please see the 'fields' attribute which returns an\\r\\n array of field names. Each field or a combination of fields can be\\r\\n searched using the syntax options shown below.\\r\\n operationId: list-searchable-fields\\r\\n parameters:\\r\\n - name: dataset\\r\\n in: path\\r\\n description: 'Name of the dataset.'\\r\\n required: true\\r\\n example: \\\"oa_citations\\\"\\r\\n schema:\\r\\n type: string\\r\\n - name: version\\r\\n in: path\\r\\n description: Version of the dataset.\\r\\n required: true\\r\\n example: \\\"v1\\\"\\r\\n schema:\\r\\n type: string\\r\\n responses:\\r\\n '200':\\r\\n description: >-\\r\\n The dataset API for the given version is found and it is accessible\\r\\n to consume.\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n type: string\\r\\n '404':\\r\\n description: >-\\r\\n The combination of dataset name and version is not found in the\\r\\n system or it is not published yet to be consumed by public.\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n type: string\\r\\n /{dataset}/{version}/records:\\r\\n post:\\r\\n tags:\\r\\n - search\\r\\n summary: >-\\r\\n Provides search capability for the data set with the given search\\r\\n criteria.\\r\\n description: >-\\r\\n This API is based on Solr/Lucense Search. The data is indexed using\\r\\n SOLR. This GET API returns the list of all the searchable field names\\r\\n that are in the Solr Index. Please see the 'fields' attribute which\\r\\n returns an array of field names. Each field or a combination of fields\\r\\n can be searched using the Solr/Lucene Syntax. Please refer\\r\\n https://lucene.apache.org/core/3_6_2/queryparsersyntax.html#Overview for\\r\\n the query syntax. List of field names that are searchable can be\\r\\n determined using above GET api.\\r\\n operationId: perform-search\\r\\n parameters:\\r\\n - name: version\\r\\n in: path\\r\\n description: Version of the dataset.\\r\\n required: true\\r\\n schema:\\r\\n type: string\\r\\n default: v1\\r\\n - name: dataset\\r\\n in: path\\r\\n description: 'Name of the dataset. In this case, the default value is oa_citations'\\r\\n required: true\\r\\n schema:\\r\\n type: string\\r\\n default: oa_citations\\r\\n responses:\\r\\n '200':\\r\\n description: successful operation\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n type: array\\r\\n items:\\r\\n type: object\\r\\n additionalProperties:\\r\\n type: object\\r\\n '404':\\r\\n description: No matching record found for the given criteria.\\r\\n requestBody:\\r\\n content:\\r\\n application/x-www-form-urlencoded:\\r\\n schema:\\r\\n type: object\\r\\n properties:\\r\\n criteria:\\r\\n description: >-\\r\\n Uses Lucene Query Syntax in the format of\\r\\n propertyName:value, propertyName:[num1 TO num2] and date\\r\\n range format: propertyName:[yyyyMMdd TO yyyyMMdd]. In the\\r\\n response please see the 'docs' element which has the list of\\r\\n record objects. Each record structure would consist of all\\r\\n the fields and their corresponding values.\\r\\n type: string\\r\\n default: '*:*'\\r\\n start:\\r\\n description: Starting record number. Default value is 0.\\r\\n type: integer\\r\\n default: 0\\r\\n rows:\\r\\n description: >-\\r\\n Specify number of rows to be returned. If you run the search\\r\\n with default values, in the response you will see 'numFound'\\r\\n attribute which will tell the number of records available in\\r\\n the dataset.\\r\\n type: integer\\r\\n default: 100\\r\\n required:\\r\\n - criteria\\r\\ncomponents:\\r\\n schemas:\\r\\n dataSetList:\\r\\n type: object\\r\\n properties:\\r\\n total:\\r\\n type: integer\\r\\n apis:\\r\\n type: array\\r\\n items:\\r\\n type: object\\r\\n properties:\\r\\n apiKey:\\r\\n type: string\\r\\n description: To be used as a dataset parameter value\\r\\n apiVersionNumber:\\r\\n type: string\\r\\n description: To be used as a version parameter value\\r\\n apiUrl:\\r\\n type: string\\r\\n format: uriref\\r\\n description: \\\"The URL describing the dataset's fields\\\"\\r\\n apiDocumentationUrl:\\r\\n type: string\\r\\n format: uriref\\r\\n description: A URL to the API console for each API\",\r\n \"format\": \"openapi\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "794a76b1-496e-4965-b294-c3bc35249f3a" + "cc62e96e-1af3-4027-9411-b24a99d4380c" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,31 +33,31 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4146?api-version=2019-12-01&asyncId=5eab2b83a2ca60123002320e&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664?api-version=2019-12-01&asyncId=5f171a3da2ca600fe4c296bf&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5a9b3bab-60ed-4ca3-85ad-e01a34bec02e" + "8c5a6762-9e8c-42bd-a3d3-34eddd487307" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "297b3d2f-9ef8-408b-8daf-cf8bac2c6191" + "56f03ad9-5b92-4a29-b9aa-81c3fe56b682" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194819Z:297b3d2f-9ef8-408b-8daf-cf8bac2c6191" + "WESTUS:20200721T163925Z:56f03ad9-5b92-4a29-b9aa-81c3fe56b682" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:48:19 GMT" + "Tue, 21 Jul 2020 16:39:25 GMT" ], "Expires": [ "-1" @@ -70,8 +70,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4146?api-version=2019-12-01&asyncId=5eab2b83a2ca60123002320e&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MTQ2P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMmI4M2EyY2E2MDEyMzAwMjMyMGUmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664?api-version=2019-12-01&asyncId=5f171a3da2ca600fe4c296bf&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NjY0P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWEzZGEyY2E2MDBmZTRjMjk2YmYmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -79,7 +79,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -90,31 +90,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADEs=\"" + "\"AAAAAAAAPJM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6af3d952-38af-429e-ba96-fb7645606c14" + "d29ce9e6-39a4-48c0-8537-ea338f21bab2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11995" ], "x-ms-correlation-request-id": [ - "c1962e55-ed45-4f2c-b6a9-db3013dbe738" + "e8499c1c-a13d-46a0-9199-33fa3b7aff65" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194849Z:c1962e55-ed45-4f2c-b6a9-db3013dbe738" + "WESTUS:20200721T163955Z:e8499c1c-a13d-46a0-9199-33fa3b7aff65" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:48:49 GMT" + "Tue, 21 Jul 2020 16:39:55 GMT" ], "Content-Length": [ "1381" @@ -126,17 +126,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4146\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4146\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9664\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4146?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MTQ2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NjY0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3d9f9c7-ea5a-413e-9599-d869a89c9ca9" + "da0cf8f6-3e46-4f87-ab59-5a5f81d98b45" ], "Accept-Language": [ "en-US" @@ -145,7 +145,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -156,31 +156,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADEs=\"" + "\"AAAAAAAAPJM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f0aa35a6-301d-4d5a-a617-21d9e29a44f8" + "f6985db1-fe1e-4c01-b5a1-2de3c211b599" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11994" ], "x-ms-correlation-request-id": [ - "b616b299-33ca-4519-a1fa-3dc50de6e516" + "1ea94981-581d-49e2-a1a6-549cb678884d" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194849Z:b616b299-33ca-4519-a1fa-3dc50de6e516" + "WESTUS:20200721T163955Z:1ea94981-581d-49e2-a1a6-549cb678884d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:48:49 GMT" + "Tue, 21 Jul 2020 16:39:55 GMT" ], "Content-Length": [ "1381" @@ -192,17 +192,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4146\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4146\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9664\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps512?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MTI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzU2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"openapifromUrl\",\r\n \"value\": \"https://raw.githubusercontent.com/OAI/OpenAPI-Specification/master/examples/v3.0/petstore.yaml\",\r\n \"format\": \"openapi-link\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c1f8676b-2d7a-49b5-8dd5-6c6633d54b5e" + "4e511614-1ae9-4b75-9d86-3d68b617575b" ], "Accept-Language": [ "en-US" @@ -211,7 +211,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -228,31 +228,31 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps512?api-version=2019-12-01&asyncId=5eab2ba2a2ca601230023213&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756?api-version=2019-12-01&asyncId=5f171a5ca2ca600fe4c296c4&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c1b4dff0-9eec-491c-8734-d44ef290f942" + "101085e0-39ba-4fbc-b861-30dbe5755f31" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-correlation-request-id": [ - "0180835f-6bc4-443c-a19c-4225c1c3dc08" + "9804b793-65a6-4b63-bf99-53cbfe53acdf" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194850Z:0180835f-6bc4-443c-a19c-4225c1c3dc08" + "WESTUS:20200721T163956Z:9804b793-65a6-4b63-bf99-53cbfe53acdf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:48:50 GMT" + "Tue, 21 Jul 2020 16:39:55 GMT" ], "Expires": [ "-1" @@ -265,8 +265,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps512?api-version=2019-12-01&asyncId=5eab2ba2a2ca601230023213&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MTI/YXBpLXZlcnNpb249MjAxOS0xMi0wMSZhc3luY0lkPTVlYWIyYmEyYTJjYTYwMTIzMDAyMzIxMyZhc3luY0NvZGU9MjAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756?api-version=2019-12-01&asyncId=5f171a5ca2ca600fe4c296c4&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzU2P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWE1Y2EyY2E2MDBmZTRjMjk2YzQmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -274,7 +274,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -285,34 +285,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADFw=\"" + "\"AAAAAAAAPKM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1a211025-a856-47db-94ad-53129970e885" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "41745eb7-31f1-46c1-abac-b659aab5ba0c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], "x-ms-correlation-request-id": [ - "a037d090-d16e-4c7f-b6a0-63e0b3ef2be6" + "b6777a45-49eb-47c1-93e6-6512590135f6" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194920Z:a037d090-d16e-4c7f-b6a0-63e0b3ef2be6" + "WESTUS:20200721T164026Z:b6777a45-49eb-47c1-93e6-6512590135f6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:49:19 GMT" + "Tue, 21 Jul 2020 16:40:25 GMT" ], "Content-Length": [ - "757" + "759" ], "Content-Type": [ "application/json; charset=utf-8" @@ -321,17 +321,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps512\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps512\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3756\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps512?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MTI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzU2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65db4c06-863a-480e-a926-7ce72c347ac8" + "b77319ae-6354-4c86-b91f-6f789f4a17c0" ], "Accept-Language": [ "en-US" @@ -340,7 +340,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -351,34 +351,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADFw=\"" + "\"AAAAAAAAPKM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eca8a573-aec5-48ad-a79b-3f1b10e8e158" + "a9199e89-228c-4315-9a01-5c299cc357b0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11992" ], "x-ms-correlation-request-id": [ - "fb564e02-cc35-43bb-ad8d-808e3b4c38e8" + "f1fe5483-a34f-49c9-a153-e4bff7ad2ffe" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194920Z:fb564e02-cc35-43bb-ad8d-808e3b4c38e8" + "WESTUS:20200721T164026Z:f1fe5483-a34f-49c9-a153-e4bff7ad2ffe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:49:20 GMT" + "Tue, 21 Jul 2020 16:40:25 GMT" ], "Content-Length": [ - "757" + "759" ], "Content-Type": [ "application/json; charset=utf-8" @@ -387,17 +387,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps512\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps512\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3756\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4146/schemas?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MTQ2L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664/schemas?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NjY0L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26db13e4-5c4a-4cea-adc4-bf978683b9e4" + "6114cccf-bf3b-493a-a9f8-7cb92212f9cc" ], "Accept-Language": [ "en-US" @@ -406,7 +406,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -420,25 +420,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9639c30e-d45f-4310-9e53-b181e6165dce" + "7ae8aae5-ca1d-4614-90e8-d663500f61d3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11991" ], "x-ms-correlation-request-id": [ - "c1b6ab64-ac38-4f8a-978b-b4e6b4b4736a" + "ffbf6284-183d-4814-b3b1-ae21628dbef1" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194920Z:c1b6ab64-ac38-4f8a-978b-b4e6b4b4736a" + "WESTUS:20200721T164026Z:ffbf6284-183d-4814-b3b1-ae21628dbef1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:49:20 GMT" + "Tue, 21 Jul 2020 16:40:25 GMT" ], "Content-Length": [ "2515" @@ -450,17 +450,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4146/schemas/5eab2b83a2ca60123002320d\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"5eab2b83a2ca60123002320d\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.oai.openapi.components+json\",\r\n \"document\": {\r\n \"components\": {\r\n \"schemas\": {\r\n \"dataSetList\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"total\": {\r\n \"type\": \"integer\"\r\n },\r\n \"apis\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"apiKey\": {\r\n \"type\": \"string\",\r\n \"description\": \"To be used as a dataset parameter value\"\r\n },\r\n \"apiVersionNumber\": {\r\n \"type\": \"string\",\r\n \"description\": \"To be used as a version parameter value\"\r\n },\r\n \"apiUrl\": {\r\n \"type\": \"string\",\r\n \"description\": \"The URL describing the dataset's fields\",\r\n \"format\": \"uriref\"\r\n },\r\n \"apiDocumentationUrl\": {\r\n \"type\": \"string\",\r\n \"description\": \"A URL to the API console for each API\",\r\n \"format\": \"uriref\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"-dataset--version-FieldsGet200ApplicationJsonResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"-dataset--version-FieldsGet404ApplicationJsonResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"-dataset--version-RecordsPost200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"object\",\r\n \"additionalProperties\": {\r\n \"type\": \"object\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664/schemas/5f171a3da2ca600fe4c296be\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"5f171a3da2ca600fe4c296be\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.oai.openapi.components+json\",\r\n \"document\": {\r\n \"components\": {\r\n \"schemas\": {\r\n \"dataSetList\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"total\": {\r\n \"type\": \"integer\"\r\n },\r\n \"apis\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"apiKey\": {\r\n \"type\": \"string\",\r\n \"description\": \"To be used as a dataset parameter value\"\r\n },\r\n \"apiVersionNumber\": {\r\n \"type\": \"string\",\r\n \"description\": \"To be used as a version parameter value\"\r\n },\r\n \"apiUrl\": {\r\n \"type\": \"string\",\r\n \"description\": \"The URL describing the dataset's fields\",\r\n \"format\": \"uriref\"\r\n },\r\n \"apiDocumentationUrl\": {\r\n \"type\": \"string\",\r\n \"description\": \"A URL to the API console for each API\",\r\n \"format\": \"uriref\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"-dataset--version-FieldsGet200ApplicationJsonResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"-dataset--version-FieldsGet404ApplicationJsonResponse\": {\r\n \"type\": \"string\"\r\n },\r\n \"-dataset--version-RecordsPost200ApplicationJsonResponse\": {\r\n \"type\": \"array\",\r\n \"items\": {\r\n \"type\": \"object\",\r\n \"additionalProperties\": {\r\n \"type\": \"object\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps512%3Brev%3D1?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MTIlM0JyZXYlM0QxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756%3Brev%3D1?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzU2JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Open api via Apim\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"apimPetstore\",\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7092c415-6dd2-47a8-a57b-0da5041e03cb" + "f584f853-908c-4c73-84a1-5764fbe4fff5" ], "If-Match": [ "*" @@ -472,7 +472,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -489,34 +489,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADGs=\"" + "\"AAAAAAAAPLE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5644397b-9d77-469b-b160-72ed598182ed" + "d9b07c4d-0120-49c4-8e7b-88cf07e0feeb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1194" ], "x-ms-correlation-request-id": [ - "bf441aec-fcef-4ce6-9b34-269c150ad9e0" + "1aa254a0-14f9-491f-86c6-c665417da16b" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194921Z:bf441aec-fcef-4ce6-9b34-269c150ad9e0" + "WESTUS:20200721T164027Z:1aa254a0-14f9-491f-86c6-c665417da16b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:49:20 GMT" + "Tue, 21 Jul 2020 16:40:26 GMT" ], "Content-Length": [ - "791" + "793" ], "Content-Type": [ "application/json; charset=utf-8" @@ -525,17 +525,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps512\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps512\",\r\n \"properties\": {\r\n \"displayName\": \"apimPetstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Open api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3756\",\r\n \"properties\": {\r\n \"displayName\": \"apimPetstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Open api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.io/v1\",\r\n \"path\": \"openapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4146?deleteRevisions=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MTQ2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664?deleteRevisions=true&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NjY0P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f326c9e5-c7a1-4f95-980d-351843e1df3f" + "1d4cf6dc-30e6-4c21-8abb-7529f1296562" ], "If-Match": [ "*" @@ -547,7 +547,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -561,25 +561,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ef27cb33-190c-4d0e-baab-0dddd7925e3a" + "de171412-3a2e-4212-87f8-e662e6882f17" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14997" ], "x-ms-correlation-request-id": [ - "3ea15224-d342-4268-a1f2-8e5a07eedea2" + "49aa8fe9-e9f3-426f-91f6-8a7a11628424" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194921Z:3ea15224-d342-4268-a1f2-8e5a07eedea2" + "WESTUS:20200721T164027Z:49aa8fe9-e9f3-426f-91f6-8a7a11628424" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:49:20 GMT" + "Tue, 21 Jul 2020 16:40:26 GMT" ], "Expires": [ "-1" @@ -592,13 +592,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps512?deleteRevisions=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MTI/ZGVsZXRlUmV2aXNpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756?deleteRevisions=true&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzU2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25e09f03-f0f4-402a-b37e-42cab7ffcce3" + "c23d286b-b8bb-4d45-affa-46cbae938cef" ], "If-Match": [ "*" @@ -610,7 +610,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -624,25 +624,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2ba1c24e-9c88-4fd9-b8b8-7a2924b34a46" + "ac5b8273-8129-4154-ae4a-436d15f4fe71" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14996" ], "x-ms-correlation-request-id": [ - "7937e82a-cca1-4d1c-a7d9-8b2d246d8023" + "713c7346-3782-4242-b94e-284206d06e51" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194921Z:7937e82a-cca1-4d1c-a7d9-8b2d246d8023" + "WESTUS:20200721T164027Z:713c7346-3782-4242-b94e-284206d06e51" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:49:21 GMT" + "Tue, 21 Jul 2020 16:40:26 GMT" ], "Expires": [ "-1" @@ -657,8 +657,8 @@ ], "Names": { "": [ - "ps4146", - "ps512" + "ps9664", + "ps3756" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportSwaggerTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportSwaggerTest.json index 85b608ca553f..5b3c22ad930d 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportSwaggerTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportSwaggerTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7776?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3Nzc2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6896?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2ODk2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"swaggerapifromFile\",\r\n \"value\": \"{\\r\\n \\\"x-comment\\\": \\\"This file was extended from /github.com/swagger-api/swagger-spec/blob/master/examples/v2.0/json/petstore-with-external-docs.json\\\",\\r\\n \\\"swagger\\\": \\\"2.0\\\",\\r\\n \\\"info\\\": {\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore Extensive\\\",\\r\\n \\\"description\\\": \\\"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\\\",\\r\\n \\\"termsOfService\\\": \\\"http://helloreverb.com/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"name\\\": \\\"Wordnik API Team\\\",\\r\\n \\\"email\\\": \\\"foo@example.com\\\",\\r\\n \\\"url\\\": \\\"http://madskristensen.net\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"MIT\\\",\\r\\n \\\"url\\\": \\\"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\\\"\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"host\\\": \\\"petstore.swagger.wordnik.com\\\",\\r\\n \\\"basePath\\\": \\\"/api\\\",\\r\\n \\\"schemes\\\": [\\r\\n \\\"http\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/mySamplePath?willbeignored={willbeignored}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid1\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyDateHeaderParam\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"description\\\": \\\"dummyDateHeaderParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyNotReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyNotReqQueryParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"dummyBodyParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\",\\r\\n \\\"example\\\": {\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"description\\\": \\\"sampleheader\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\" \\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/resourceWithFormData\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"resourceWithFormData desc\\\",\\r\\n \\\"operationId\\\": \\\"resourceWithFormDataPOST\\\",\\r\\n \\\"consumes\\\": [ \\\"multipart/form-data\\\" ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyFormDataParam\\\",\\r\\n \\\"in\\\": \\\"formData\\\",\\r\\n \\\"description\\\": \\\"dummyFormDataParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"sample response\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/mySamplePath2?definedQueryParam={definedQueryParam}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"produces\\\": [\\r\\n \\\"contenttype1\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid2\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyQueryParameterDef\\\"\\r\\n },\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyBodyParameterDef\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"$ref\\\": \\\"#/responses/dummyResponseDef\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets2?dummyParam={dummyParam}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Dummy description\\\",\\r\\n \\\"operationId\\\": \\\"dummyOperationId\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyParam desc\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns all pets from the system that the user has access to\\\",\\r\\n \\\"operationId\\\": \\\"findPets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"tags to filter by\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Creates a new pet in the store. Duplicates are allowed\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"Pet to add to the store\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/newPet\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets/{id}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns a user based on a single ID, if the user does not have access to the pet\\\",\\r\\n \\\"operationId\\\": \\\"findPetById\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\",\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to fetch\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"description\\\": \\\"deletes a single pet based on the ID supplied\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"description\\\": \\\"pet deleted\\\"\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"definitions\\\": {\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": {\\r\\n \\\"dummyBodyParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"definedBodyParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"title\\\": \\\"Example Schema\\\",\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"age\\\": {\\r\\n \\\"description\\\": \\\"Age in years\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"minimum\\\": 0\\r\\n }\\r\\n },\\r\\n \\\"required\\\": [ \\\"firstName\\\", \\\"lastName\\\" ]\\r\\n }\\r\\n },\\r\\n \\\"dummyQueryParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"definedQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"whateverformat\\\"\\r\\n }\\r\\n },\\r\\n \\\"responses\\\": {\\r\\n \\\"dummyResponseDef\\\": {\\r\\n \\\"description\\\": \\\"dummyResponseDef description\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n },\\r\\n \\\"header2\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"contenttype1\\\": \\\"contenttype1 example\\\",\\r\\n \\\"contenttype2\\\": \\\"contenttype2 example\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\\r\\n\\r\\n\",\r\n \"format\": \"swagger-json\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0f41574e-805d-41fd-8b7a-cb38feeae874" + "426eeabe-dc3a-4988-8a06-b4b53a07ceac" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,13 +33,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7776?api-version=2019-12-01&asyncId=5eab2625a2ca601230023110&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6896?api-version=2019-12-01&asyncId=5f171873a2ca600fe4c29671&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "55b6dd07-bd54-43fc-bc32-85fe0595cd7f" + "71ddc02b-aafe-4db3-a083-64b4b1b951e5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -48,16 +48,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "7d7d4991-f598-498b-831f-721de7a38608" + "24b23347-2114-4f5f-9ac0-76419972dc09" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192527Z:7d7d4991-f598-498b-831f-721de7a38608" + "WESTUS:20200721T163148Z:24b23347-2114-4f5f-9ac0-76419972dc09" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:25:27 GMT" + "Tue, 21 Jul 2020 16:31:48 GMT" ], "Expires": [ "-1" @@ -70,8 +70,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7776?api-version=2019-12-01&asyncId=5eab2625a2ca601230023110&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3Nzc2P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjYyNWEyY2E2MDEyMzAwMjMxMTAmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6896?api-version=2019-12-01&asyncId=5f171873a2ca600fe4c29671&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2ODk2P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MTg3M2EyY2E2MDBmZTRjMjk2NzEmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -79,7 +79,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -90,13 +90,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACQ0=\"" + "\"AAAAAAAAOzY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "54da2259-3551-4f62-946e-05b413423404" + "f8a4f5a1-989d-4d8c-ac3d-a9bb0bd2130d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -105,16 +105,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "0067843d-4b8a-46cc-8521-9caa9fc782f1" + "b57c903b-ef9a-47e2-8890-93ff59b78ec9" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192557Z:0067843d-4b8a-46cc-8521-9caa9fc782f1" + "WESTUS:20200721T163218Z:b57c903b-ef9a-47e2-8890-93ff59b78ec9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:25:57 GMT" + "Tue, 21 Jul 2020 16:32:18 GMT" ], "Content-Length": [ "884" @@ -126,17 +126,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7776\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7776\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6896\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6896\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7776?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3Nzc2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6896?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2ODk2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3e66071-ccfa-42e7-a018-22c12e0b1b7c" + "cf7faedb-6526-4479-b7af-ef621d80d50a" ], "Accept-Language": [ "en-US" @@ -145,7 +145,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -156,13 +156,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACQ0=\"" + "\"AAAAAAAAOzY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "47c26613-3be9-4f82-9086-0d1830502425" + "b68a5338-4d19-4a47-ab8b-33ff8a6b1ba8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -171,16 +171,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "e406b9f0-c6e4-4e51-bed5-4b84aada35a9" + "f8b15c74-89f8-46e4-9398-e9c8a359c44f" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192557Z:e406b9f0-c6e4-4e51-bed5-4b84aada35a9" + "WESTUS:20200721T163219Z:f8b15c74-89f8-46e4-9398-e9c8a359c44f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:25:57 GMT" + "Tue, 21 Jul 2020 16:32:18 GMT" ], "Content-Length": [ "884" @@ -192,17 +192,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7776\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7776\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6896\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6896\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8296?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4Mjk2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NjQzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"swaggerapifromUrl\",\r\n \"value\": \"http://petstore.swagger.io/v2/swagger.json\",\r\n \"format\": \"swagger-link-json\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2e97c06f-741a-4bae-9bf4-d9513899ff24" + "315f5ee5-407c-46d8-9fdf-ca6cb2eea9d6" ], "Accept-Language": [ "en-US" @@ -211,7 +211,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -228,13 +228,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8296?api-version=2019-12-01&asyncId=5eab2646a2ca601230023115&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643?api-version=2019-12-01&asyncId=5f171893a2ca600fe4c29676&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b683fd7c-c164-4624-88de-47a4d070a8af" + "c0bfe05e-69f5-4216-b81a-bf3255f3ded5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -243,16 +243,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "ac104754-8fed-42c0-9b64-f7ebd23653f2" + "ab564b9d-425e-477d-a0ff-088089732b20" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192558Z:ac104754-8fed-42c0-9b64-f7ebd23653f2" + "WESTUS:20200721T163219Z:ab564b9d-425e-477d-a0ff-088089732b20" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:25:58 GMT" + "Tue, 21 Jul 2020 16:32:19 GMT" ], "Expires": [ "-1" @@ -265,8 +265,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8296?api-version=2019-12-01&asyncId=5eab2646a2ca601230023115&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4Mjk2P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjY0NmEyY2E2MDEyMzAwMjMxMTUmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643?api-version=2019-12-01&asyncId=5f171893a2ca600fe4c29676&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NjQzP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MTg5M2EyY2E2MDBmZTRjMjk2NzYmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -274,7 +274,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -285,31 +285,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACSo=\"" + "\"AAAAAAAAO1Q=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ef3c164f-90a1-4571-abb0-693067041cb9" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "42eea5e4-5e25-49d9-9535-0f583c5e9e8f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], "x-ms-correlation-request-id": [ - "892489d1-9a63-474a-a2e8-1e70f3c16da8" + "4f20358f-e23a-43bd-b9bb-2a3bae014fb5" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192628Z:892489d1-9a63-474a-a2e8-1e70f3c16da8" + "WESTUS:20200721T163250Z:4f20358f-e23a-43bd-b9bb-2a3bae014fb5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:26:28 GMT" + "Tue, 21 Jul 2020 16:32:49 GMT" ], "Content-Length": [ "1046" @@ -321,17 +321,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8296\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8296\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8643\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8296?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4Mjk2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NjQzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f3daca8-167c-4795-996d-8b1a74253a0d" + "b0318b1d-9fbb-41bd-bc33-d5b1061dbd69" ], "Accept-Language": [ "en-US" @@ -340,7 +340,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -351,13 +351,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACSo=\"" + "\"AAAAAAAAO1Q=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "be2d75aa-6b91-491e-99e4-4f630111629d" + "61d0b2d1-ff51-4462-b6aa-c687e4d04279" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -366,16 +366,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "5d00f584-c2bd-4176-959a-7ff76233cc94" + "11937321-22d0-4a0c-a8dd-af3c75b1848e" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192629Z:5d00f584-c2bd-4176-959a-7ff76233cc94" + "WESTUS:20200721T163250Z:11937321-22d0-4a0c-a8dd-af3c75b1848e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:26:28 GMT" + "Tue, 21 Jul 2020 16:32:49 GMT" ], "Content-Length": [ "1046" @@ -387,17 +387,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8296\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8296\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8643\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8296%3Brev%3D1?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4Mjk2JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643%3Brev%3D1?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NjQzJTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Swagger api via Apim\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"apimPetstore\",\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f4f8d388-fa4f-474b-a024-97b9eef8f928" + "f532ae79-12bc-41d2-9880-5acc440a1856" ], "If-Match": [ "*" @@ -409,7 +409,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,13 +426,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACXM=\"" + "\"AAAAAAAAO5g=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6740b0f2-3435-4bb8-9ddd-6409b88da306" + "5be8bbc3-effa-4ace-994c-c8deb5917d26" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -441,16 +441,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "000f8e81-f096-45ed-8df7-bfd621164ba8" + "c3d244f2-aad1-4b9f-b1aa-e826932526f4" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192637Z:000f8e81-f096-45ed-8df7-bfd621164ba8" + "WESTUS:20200721T163258Z:c3d244f2-aad1-4b9f-b1aa-e826932526f4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:26:37 GMT" + "Tue, 21 Jul 2020 16:32:57 GMT" ], "Content-Length": [ "815" @@ -462,17 +462,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8296\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8296\",\r\n \"properties\": {\r\n \"displayName\": \"apimPetstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Swagger api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8643\",\r\n \"properties\": {\r\n \"displayName\": \"apimPetstore\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Swagger api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://petstore.swagger.io/v2\",\r\n \"path\": \"swaggerapifromUrl\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7776?deleteRevisions=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3Nzc2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6896?deleteRevisions=true&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2ODk2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf701e3b-8b4b-401b-8fae-f2621f49c30d" + "25fe9e6c-549b-4ff5-90ce-8460873a4bbc" ], "If-Match": [ "*" @@ -484,7 +484,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -498,7 +498,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e0d29dea-1277-4b0b-a963-9844696289fe" + "d86a5658-fbdc-4216-b629-a99902296ed9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -507,16 +507,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "4fef1d68-195b-4f4f-8608-fb79e45a3564" + "c1de3bae-72f7-46e9-8b81-b066498e82db" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192640Z:4fef1d68-195b-4f4f-8608-fb79e45a3564" + "WESTUS:20200721T163301Z:c1de3bae-72f7-46e9-8b81-b066498e82db" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:26:39 GMT" + "Tue, 21 Jul 2020 16:33:00 GMT" ], "Expires": [ "-1" @@ -529,13 +529,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8296?deleteRevisions=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4Mjk2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643?deleteRevisions=true&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NjQzP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfd9cd54-b36e-47b6-b584-8f661e2c2934" + "432798a7-bf6d-46dc-9392-01dc3945bad6" ], "If-Match": [ "*" @@ -547,7 +547,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -561,7 +561,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "14eb0a34-1fee-46d6-be0b-f597307f9ba1" + "cbfcc449-f2be-4c09-81df-be5d0209a18c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -570,16 +570,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "43dfcbca-21f2-40c5-b876-5631a8edf263" + "f7b9c764-11ae-48a8-a689-cd4557b92c08" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192640Z:43dfcbca-21f2-40c5-b876-5631a8edf263" + "WESTUS:20200721T163302Z:f7b9c764-11ae-48a8-a689-cd4557b92c08" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:26:39 GMT" + "Tue, 21 Jul 2020 16:33:01 GMT" ], "Expires": [ "-1" @@ -594,8 +594,8 @@ ], "Names": { "": [ - "ps7776", - "ps8296" + "ps6896", + "ps8643" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWadlTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWadlTest.json index d78cf4d58931..f4764a77b998 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWadlTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWadlTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5602?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NjAyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2MDM4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"wadlapi\",\r\n \"value\": \"\\r\\n\\r\\n Yahoo News Search API\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"wadl-xml\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7c9e1366-eb6d-4d27-a30f-cc2ac4c73ea6" + "ccebfa22-9a14-4543-9c19-5b824ba91c6c" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,31 +33,31 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5602?api-version=2019-12-01&asyncId=5eab2950a2ca6012300231d8&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038?api-version=2019-12-01&asyncId=5f171bdaa2ca600fe4c2974c&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e363e3ec-c4d0-46af-8553-60a255234871" + "aa5352cd-4162-41e9-8fcd-83a4a2b9b16b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "0a4e33bc-8d11-4511-a520-b7cc69cd3146" + "b17c9e7c-163e-4317-9c89-28e406e54f18" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193856Z:0a4e33bc-8d11-4511-a520-b7cc69cd3146" + "WESTUS:20200721T164618Z:b17c9e7c-163e-4317-9c89-28e406e54f18" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:38:56 GMT" + "Tue, 21 Jul 2020 16:46:18 GMT" ], "Expires": [ "-1" @@ -70,8 +70,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5602?api-version=2019-12-01&asyncId=5eab2950a2ca6012300231d8&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NjAyP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjk1MGEyY2E2MDEyMzAwMjMxZDgmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038?api-version=2019-12-01&asyncId=5f171bdaa2ca600fe4c2974c&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2MDM4P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWJkYWEyY2E2MDBmZTRjMjk3NGMmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -79,7 +79,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -90,31 +90,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC/Q=\"" + "\"AAAAAAAAPkA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b290d1f4-73f1-4a35-8dbb-b6f01ee9ff17" + "3e281092-7a61-44f5-9d7c-b9b14df0bb03" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-correlation-request-id": [ - "16d0d2dd-32e0-4187-98f7-ce2fb3748142" + "21fc4f69-acb8-44f2-8851-5402d9ee65f9" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193926Z:16d0d2dd-32e0-4187-98f7-ce2fb3748142" + "WESTUS:20200721T164653Z:21fc4f69-acb8-44f2-8851-5402d9ee65f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:39:26 GMT" + "Tue, 21 Jul 2020 16:46:53 GMT" ], "Content-Length": [ "792" @@ -126,17 +126,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5602\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5602\",\r\n \"properties\": {\r\n \"displayName\": \"Yahoo News Search\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Yahoo News Search API\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://api.search.yahoo.com/NewsSearchService/V1/\",\r\n \"path\": \"wadlapi\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6038\",\r\n \"properties\": {\r\n \"displayName\": \"Yahoo News Search\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Yahoo News Search API\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://api.search.yahoo.com/NewsSearchService/V1/\",\r\n \"path\": \"wadlapi\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5602?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NjAyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2MDM4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9fa8032-257c-45d0-af04-de070b32696f" + "56d7a686-8d99-4bef-938f-71bcb4c63830" ], "Accept-Language": [ "en-US" @@ -145,7 +145,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -156,31 +156,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC/Q=\"" + "\"AAAAAAAAPkA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "972d1241-db82-4819-8c59-7ec7e8466630" + "351e0448-285e-41c8-8940-9e766c92aef4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-correlation-request-id": [ - "b66486ce-b113-4948-838b-137db502e9ea" + "b900da6c-4492-473f-bebf-59d20a7bc68e" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193927Z:b66486ce-b113-4948-838b-137db502e9ea" + "WESTUS:20200721T164653Z:b900da6c-4492-473f-bebf-59d20a7bc68e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:39:26 GMT" + "Tue, 21 Jul 2020 16:46:53 GMT" ], "Content-Length": [ "792" @@ -192,17 +192,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5602\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5602\",\r\n \"properties\": {\r\n \"displayName\": \"Yahoo News Search\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Yahoo News Search API\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://api.search.yahoo.com/NewsSearchService/V1/\",\r\n \"path\": \"wadlapi\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6038\",\r\n \"properties\": {\r\n \"displayName\": \"Yahoo News Search\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Yahoo News Search API\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://api.search.yahoo.com/NewsSearchService/V1/\",\r\n \"path\": \"wadlapi\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5602/schemas?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NjAyL3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038/schemas?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2MDM4L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dcad0bfa-98f3-42b2-ad5b-1c4f1d6090a7" + "738a5032-6c07-4799-9adb-73116ae64afa" ], "Accept-Language": [ "en-US" @@ -211,7 +211,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -225,25 +225,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e542fe2d-f072-4572-a898-e70abf31a60d" + "f4886eb0-752b-4104-8f88-84a6df8fdbad" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-correlation-request-id": [ - "9968a68b-f9de-4120-a41f-a85858dfa06f" + "e3ca5c95-9f16-4627-bb90-50651b0ffe5d" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193927Z:9968a68b-f9de-4120-a41f-a85858dfa06f" + "WESTUS:20200721T164654Z:e3ca5c95-9f16-4627-bb90-50651b0ffe5d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:39:26 GMT" + "Tue, 21 Jul 2020 16:46:53 GMT" ], "Content-Length": [ "2909" @@ -255,17 +255,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5602/schemas/5eab2950a2ca6012300231d7\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"5eab2950a2ca6012300231d7\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.wadl.grammars+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038/schemas/5f171bdaa2ca600fe4c2974b\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"5f171bdaa2ca600fe4c2974b\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.wadl.grammars+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5602?deleteRevisions=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NjAyP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038?deleteRevisions=true&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2MDM4P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "944ca1a4-868e-4903-8aa5-350c7705e939" + "e4441cbb-8727-48f4-a0c5-90883c02b4d7" ], "If-Match": [ "*" @@ -277,7 +277,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -291,25 +291,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8b148b38-5bf8-4342-b8dc-d4afb46a44af" + "bb0fa083-5690-4b9b-927d-ed424ef6b799" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "1cf83514-9cb2-4724-9106-a15c6150f952" + "94f38db5-98cf-4ebc-9c7a-8abc8b462bc3" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193927Z:1cf83514-9cb2-4724-9106-a15c6150f952" + "WESTUS:20200721T164654Z:94f38db5-98cf-4ebc-9c7a-8abc8b462bc3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:39:27 GMT" + "Tue, 21 Jul 2020 16:46:53 GMT" ], "Expires": [ "-1" @@ -324,7 +324,7 @@ ], "Names": { "": [ - "ps5602" + "ps6038" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWsdlTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWsdlTest.json index 5559ee8d3cf8..00f4f64c894e 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWsdlTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiImportExportWsdlTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9283?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5MjgzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3289?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMjg5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"soapapifromFile\",\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"wsdl\",\r\n \"wsdlSelector\": {\r\n \"wsdlServiceName\": \"Weather\",\r\n \"wsdlEndpointName\": \"WeatherSoap\"\r\n },\r\n \"apiType\": \"soap\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e133410f-0ce3-4d03-b881-0603c2459443" + "0465e8da-afe1-45e2-ad57-e6d96d480467" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,13 +33,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9283?api-version=2019-12-01&asyncId=5eab286ba2ca6012300231a8&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3289?api-version=2019-12-01&asyncId=5f171aefa2ca600fe4c2971c&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0a106d51-f765-4eb2-b341-10d626c887c8" + "21042a75-4ac6-4631-919e-868f3d1743d0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -48,16 +48,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "2500cf7d-98ab-4047-a484-a4a49854ff5e" + "c9a9d4ba-3e14-487f-a189-69308ea2952f" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193507Z:2500cf7d-98ab-4047-a484-a4a49854ff5e" + "WESTUS:20200721T164223Z:c9a9d4ba-3e14-487f-a189-69308ea2952f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:35:07 GMT" + "Tue, 21 Jul 2020 16:42:23 GMT" ], "Expires": [ "-1" @@ -70,8 +70,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9283?api-version=2019-12-01&asyncId=5eab286ba2ca6012300231a8&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5MjgzP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjg2YmEyY2E2MDEyMzAwMjMxYTgmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3289?api-version=2019-12-01&asyncId=5f171aefa2ca600fe4c2971c&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMjg5P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWFlZmEyY2E2MDBmZTRjMjk3MWMmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -79,7 +79,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -90,13 +90,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACzA=\"" + "\"AAAAAAAAPXY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8cbc0b80-3ab5-4d2d-9577-ad4b7b74b93b" + "53dfcb28-2798-42b5-a781-ed61e829c608" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -105,16 +105,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "f69cbea0-8536-4465-b86e-d8a2403e7bca" + "e1e33228-2b3b-4389-9cea-f248af88ec1f" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193537Z:f69cbea0-8536-4465-b86e-d8a2403e7bca" + "WESTUS:20200721T164253Z:e1e33228-2b3b-4389-9cea-f248af88ec1f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:35:37 GMT" + "Tue, 21 Jul 2020 16:42:53 GMT" ], "Content-Length": [ "786" @@ -126,17 +126,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9283\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9283\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3289\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3289\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9283?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5MjgzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3289?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMjg5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12547c6e-6148-4c5e-b367-565a775f855d" + "b570726d-309f-429c-ba39-beb0936dc436" ], "Accept-Language": [ "en-US" @@ -145,7 +145,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -156,13 +156,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACzA=\"" + "\"AAAAAAAAPXY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0b16970d-8c54-4cbf-aec5-d009d63bfb1c" + "a96c0086-a488-4420-b13e-f2c49143c673" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -171,16 +171,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "af9197ca-ac46-4cd3-84e9-709ad7c225e5" + "0ad58c13-e954-43b4-89a9-f292338ec1e2" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193538Z:af9197ca-ac46-4cd3-84e9-709ad7c225e5" + "WESTUS:20200721T164254Z:0ad58c13-e954-43b4-89a9-f292338ec1e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:35:37 GMT" + "Tue, 21 Jul 2020 16:42:53 GMT" ], "Content-Length": [ "786" @@ -192,17 +192,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9283\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9283\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3289\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3289\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMTY5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzA1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"soapapifromUrl\",\r\n \"value\": \"http://fazioapisoap.azurewebsites.net/fazioService.svc?singleWSDL\",\r\n \"format\": \"wsdl-link\",\r\n \"wsdlSelector\": {\r\n \"wsdlServiceName\": \"OrdersAPI\",\r\n \"wsdlEndpointName\": \"basic\"\r\n },\r\n \"apiType\": \"soap\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e74e6234-d634-44e0-86a1-b758fb6eb1b6" + "158bef2b-202f-4c5a-90a2-9e3f4fe9d883" ], "Accept-Language": [ "en-US" @@ -211,7 +211,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -228,13 +228,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169?api-version=2019-12-01&asyncId=5eab288aa2ca6012300231af&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305?api-version=2019-12-01&asyncId=5f171b0ea2ca600fe4c29723&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4055bf21-5222-4972-a435-a9e05ce1f68d" + "02d1fbf6-3f21-47cb-b9db-869b4062a079" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -243,16 +243,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "10e28de4-6dfb-412a-b58d-1f88ce828220" + "038bec04-3c8f-4eed-8226-673a868fe4fe" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193538Z:10e28de4-6dfb-412a-b58d-1f88ce828220" + "WESTUS:20200721T164254Z:038bec04-3c8f-4eed-8226-673a868fe4fe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:35:37 GMT" + "Tue, 21 Jul 2020 16:42:53 GMT" ], "Expires": [ "-1" @@ -265,8 +265,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169?api-version=2019-12-01&asyncId=5eab288aa2ca6012300231af&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMTY5P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjg4YWEyY2E2MDEyMzAwMjMxYWYmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305?api-version=2019-12-01&asyncId=5f171b0ea2ca600fe4c29723&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzA1P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWIwZWEyY2E2MDBmZTRjMjk3MjMmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -274,7 +274,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -285,13 +285,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACz4=\"" + "\"AAAAAAAAPYU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4e9274dc-dfb9-49af-98d9-f57b7e8c6ba1" + "4918ba86-403a-47f9-87fd-e22770d79105" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -300,16 +300,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "6e84a4ac-e2f2-4d2e-ac6c-27b51a380655" + "b4154f6f-7a2f-4eee-ab4c-dab9fe37f0e7" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193608Z:6e84a4ac-e2f2-4d2e-ac6c-27b51a380655" + "WESTUS:20200721T164324Z:b4154f6f-7a2f-4eee-ab4c-dab9fe37f0e7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:08 GMT" + "Tue, 21 Jul 2020 16:43:24 GMT" ], "Content-Length": [ "798" @@ -321,17 +321,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3169\",\r\n \"properties\": {\r\n \"displayName\": \"OrdersAPI\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2305\",\r\n \"properties\": {\r\n \"displayName\": \"OrdersAPI\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMTY5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzA1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ef8519e-dfbd-493f-9643-68c4361b2671" + "4520ed0e-839e-4c41-9c16-54a0198cc153" ], "Accept-Language": [ "en-US" @@ -340,7 +340,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -351,13 +351,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACz4=\"" + "\"AAAAAAAAPYU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5affc9b1-38ca-4881-8a32-3c8a43e167fd" + "89a2a841-3f4d-4dad-81d3-9dead509b96e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -366,16 +366,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "863a359f-4eeb-40f3-bc49-cdae783e743a" + "bf5173b0-516f-49bc-bedf-1a402e69ed11" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193609Z:863a359f-4eeb-40f3-bc49-cdae783e743a" + "WESTUS:20200721T164324Z:bf5173b0-516f-49bc-bedf-1a402e69ed11" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:08 GMT" + "Tue, 21 Jul 2020 16:43:24 GMT" ], "Content-Length": [ "798" @@ -387,17 +387,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3169\",\r\n \"properties\": {\r\n \"displayName\": \"OrdersAPI\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2305\",\r\n \"properties\": {\r\n \"displayName\": \"OrdersAPI\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169/schemas?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMTY5L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305/schemas?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzA1L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21d0804c-9b0f-473d-ae71-9da129f9b466" + "3cb8fb88-b762-4c51-86e5-05b295cfcbea" ], "Accept-Language": [ "en-US" @@ -406,7 +406,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -420,7 +420,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a8dd8cd7-e3d4-41f2-a59b-d42d623887c4" + "9bb85db6-7124-4b63-8fc3-5d2b72bd76f2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -429,16 +429,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "d6ab9e37-5a17-40c2-a861-8a88f465933e" + "87a92b14-d4e9-4962-95e6-1f8535b18cc0" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193609Z:d6ab9e37-5a17-40c2-a861-8a88f465933e" + "WESTUS:20200721T164325Z:87a92b14-d4e9-4962-95e6-1f8535b18cc0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:08 GMT" + "Tue, 21 Jul 2020 16:43:24 GMT" ], "Content-Length": [ "15328" @@ -450,17 +450,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169/schemas/00aa128f-b4bc-4bb9-8b22-b227a40b0d9d\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"00aa128f-b4bc-4bb9-8b22-b227a40b0d9d\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169/schemas/65c3696e-93c3-45e6-9252-37c757961aa4\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"65c3696e-93c3-45e6-9252-37c757961aa4\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169/schemas/94a0deb1-4978-4ad6-97d0-451830a0c7ea\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"94a0deb1-4978-4ad6-97d0-451830a0c7ea\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169/schemas/d766f6b3-f328-4cac-b426-63fdbee516dc\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"d766f6b3-f328-4cac-b426-63fdbee516dc\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 4\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305/schemas/2504db61-d786-4470-b874-5fb9e6e90d4f\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"2504db61-d786-4470-b874-5fb9e6e90d4f\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305/schemas/37ccf3c2-b9b1-418a-b021-d99e7f480c88\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"37ccf3c2-b9b1-418a-b021-d99e7f480c88\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305/schemas/8a5e1516-1dda-4a61-94ea-c68adaeff046\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"8a5e1516-1dda-4a61-94ea-c68adaeff046\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305/schemas/a237d6a6-54a5-40d5-b2f3-a0f83ac0bcc4\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"a237d6a6-54a5-40d5-b2f3-a0f83ac0bcc4\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 4\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169%3Brev%3D1?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMTY5JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305%3Brev%3D1?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzA1JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Soap api via Apim\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"apimSoap\",\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4918481c-e3f4-4258-b8c8-fefd4e372312" + "bf0c15eb-507f-4df0-ba67-563d6f37dd09" ], "If-Match": [ "*" @@ -472,7 +472,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -489,13 +489,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC1Y=\"" + "\"AAAAAAAAPZw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "90bf7218-4e89-492d-b810-1801c692bd6d" + "1d9a1a5d-d03d-4b26-821a-bda4aea475db" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -504,16 +504,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "ecf31d84-5f27-4b5a-abcc-a8fef67fa548" + "69a68ce0-32cd-448c-98d0-a45a05b9ea5d" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193609Z:ecf31d84-5f27-4b5a-abcc-a8fef67fa548" + "WESTUS:20200721T164325Z:69a68ce0-32cd-448c-98d0-a45a05b9ea5d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:09 GMT" + "Tue, 21 Jul 2020 16:43:25 GMT" ], "Content-Length": [ "835" @@ -525,17 +525,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3169\",\r\n \"properties\": {\r\n \"displayName\": \"apimSoap\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Soap api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2305\",\r\n \"properties\": {\r\n \"displayName\": \"apimSoap\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Soap api via Apim\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://fazioapisoap.azurewebsites.net/FazioService.svc\",\r\n \"path\": \"soapapifromUrl\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9283?deleteRevisions=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5MjgzP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3289?deleteRevisions=true&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMjg5P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a800d71-aad4-4849-b355-79b2243ee291" + "7a391b7e-49bb-4611-9115-f1373e94b7bb" ], "If-Match": [ "*" @@ -547,7 +547,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -561,7 +561,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "85f88534-a62a-4a11-b453-bf2d7608a598" + "a996e49c-30b8-443b-9fdb-c1a7bf66c7ff" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -570,16 +570,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "f694904b-7e85-4af9-a1d0-ef276909b111" + "0a6e281d-8b22-47b0-946c-577f41a58d55" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193609Z:f694904b-7e85-4af9-a1d0-ef276909b111" + "WESTUS:20200721T164325Z:0a6e281d-8b22-47b0-946c-577f41a58d55" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:09 GMT" + "Tue, 21 Jul 2020 16:43:25 GMT" ], "Expires": [ "-1" @@ -592,13 +592,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3169?deleteRevisions=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMTY5P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305?deleteRevisions=true&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzA1P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "062b061e-38c3-410c-bc6a-cab9599b9215" + "d2a43915-e050-4b83-87c7-e537f9ff8efb" ], "If-Match": [ "*" @@ -610,7 +610,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -624,7 +624,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "672edd44-dcd1-4ca5-b8d9-4af7d896193b" + "87520aef-00e6-444b-8206-99e675c592c7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -633,16 +633,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "87d38c30-358b-44a7-af40-225d345c3470" + "b6d148bf-f2d3-4eb3-b5b2-658fc73705ca" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193609Z:87d38c30-358b-44a7-af40-225d345c3470" + "WESTUS:20200721T164325Z:b6d148bf-f2d3-4eb3-b5b2-658fc73705ca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:09 GMT" + "Tue, 21 Jul 2020 16:43:25 GMT" ], "Expires": [ "-1" @@ -657,8 +657,8 @@ ], "Names": { "": [ - "ps9283", - "ps3169" + "ps3289", + "ps2305" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiRevisionCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiRevisionCrudTest.json index b387584effd8..41d0dc5f8bc2 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiRevisionCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiRevisionCrudTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"swaggerapifromFile\",\r\n \"value\": \"{\\r\\n \\\"x-comment\\\": \\\"This file was extended from /github.com/swagger-api/swagger-spec/blob/master/examples/v2.0/json/petstore-with-external-docs.json\\\",\\r\\n \\\"swagger\\\": \\\"2.0\\\",\\r\\n \\\"info\\\": {\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore Extensive\\\",\\r\\n \\\"description\\\": \\\"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\\\",\\r\\n \\\"termsOfService\\\": \\\"http://helloreverb.com/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"name\\\": \\\"Wordnik API Team\\\",\\r\\n \\\"email\\\": \\\"foo@example.com\\\",\\r\\n \\\"url\\\": \\\"http://madskristensen.net\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"MIT\\\",\\r\\n \\\"url\\\": \\\"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\\\"\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"host\\\": \\\"petstore.swagger.wordnik.com\\\",\\r\\n \\\"basePath\\\": \\\"/api\\\",\\r\\n \\\"schemes\\\": [\\r\\n \\\"http\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/mySamplePath?willbeignored={willbeignored}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid1\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyDateHeaderParam\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"description\\\": \\\"dummyDateHeaderParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyNotReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyNotReqQueryParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"dummyBodyParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\",\\r\\n \\\"example\\\": {\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"description\\\": \\\"sampleheader\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\" \\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/resourceWithFormData\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"resourceWithFormData desc\\\",\\r\\n \\\"operationId\\\": \\\"resourceWithFormDataPOST\\\",\\r\\n \\\"consumes\\\": [ \\\"multipart/form-data\\\" ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyFormDataParam\\\",\\r\\n \\\"in\\\": \\\"formData\\\",\\r\\n \\\"description\\\": \\\"dummyFormDataParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"sample response\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/mySamplePath2?definedQueryParam={definedQueryParam}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"produces\\\": [\\r\\n \\\"contenttype1\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid2\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyQueryParameterDef\\\"\\r\\n },\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyBodyParameterDef\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"$ref\\\": \\\"#/responses/dummyResponseDef\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets2?dummyParam={dummyParam}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Dummy description\\\",\\r\\n \\\"operationId\\\": \\\"dummyOperationId\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyParam desc\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns all pets from the system that the user has access to\\\",\\r\\n \\\"operationId\\\": \\\"findPets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"tags to filter by\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Creates a new pet in the store. Duplicates are allowed\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"Pet to add to the store\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/newPet\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets/{id}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns a user based on a single ID, if the user does not have access to the pet\\\",\\r\\n \\\"operationId\\\": \\\"findPetById\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\",\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to fetch\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"description\\\": \\\"deletes a single pet based on the ID supplied\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"description\\\": \\\"pet deleted\\\"\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"definitions\\\": {\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": {\\r\\n \\\"dummyBodyParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"definedBodyParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"title\\\": \\\"Example Schema\\\",\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"age\\\": {\\r\\n \\\"description\\\": \\\"Age in years\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"minimum\\\": 0\\r\\n }\\r\\n },\\r\\n \\\"required\\\": [ \\\"firstName\\\", \\\"lastName\\\" ]\\r\\n }\\r\\n },\\r\\n \\\"dummyQueryParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"definedQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"whateverformat\\\"\\r\\n }\\r\\n },\\r\\n \\\"responses\\\": {\\r\\n \\\"dummyResponseDef\\\": {\\r\\n \\\"description\\\": \\\"dummyResponseDef description\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n },\\r\\n \\\"header2\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"contenttype1\\\": \\\"contenttype1 example\\\",\\r\\n \\\"contenttype2\\\": \\\"contenttype2 example\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\\r\\n\\r\\n\",\r\n \"format\": \"swagger-json\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e18e8792-0536-45cc-9716-f0a1cfa6bc1d" + "df952cc7-9efd-4bfb-8a5f-9e5605f57c61" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,13 +33,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473?api-version=2019-12-01&asyncId=5eab2674a2ca60123002311d&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621?api-version=2019-12-01&asyncId=5f1718c1a2ca600fe4c2967e&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "74915dcf-e4c0-4463-915f-ef63ebe39e2d" + "cbc0e0e0-e61d-4eff-8bed-0d0d476a0d86" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -48,16 +48,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "e5b8acb5-8193-424f-94b0-45ca2861eaaa" + "994c07e8-5dc6-4386-9e3e-c9b1ab5ac641" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192644Z:e5b8acb5-8193-424f-94b0-45ca2861eaaa" + "WESTUS:20200721T163305Z:994c07e8-5dc6-4386-9e3e-c9b1ab5ac641" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:26:43 GMT" + "Tue, 21 Jul 2020 16:33:05 GMT" ], "Expires": [ "-1" @@ -70,8 +70,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473?api-version=2019-12-01&asyncId=5eab2674a2ca60123002311d&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjY3NGEyY2E2MDEyMzAwMjMxMWQmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621?api-version=2019-12-01&asyncId=5f1718c1a2ca600fe4c2967e&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MThjMWEyY2E2MDBmZTRjMjk2N2UmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -79,7 +79,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -90,13 +90,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACXs=\"" + "\"AAAAAAAAO6A=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4fd29160-1b9b-49e1-a12d-218fa6600a72" + "2547fd83-75ec-4bfe-80e0-e80a6d756891" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -105,16 +105,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "1b3a4fc9-c7c7-44fa-93f7-ce4fd13feb88" + "d7574d4b-e272-43e9-bf13-49e4c77575ba" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192714Z:1b3a4fc9-c7c7-44fa-93f7-ce4fd13feb88" + "WESTUS:20200721T163335Z:d7574d4b-e272-43e9-bf13-49e4c77575ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:27:14 GMT" + "Tue, 21 Jul 2020 16:33:35 GMT" ], "Content-Length": [ "884" @@ -126,17 +126,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3473\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6621\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70ee13b8-e19e-4e15-be96-0d160f4fb440" + "6ab1fc42-2bf4-4473-b369-fdc16b650b7e" ], "Accept-Language": [ "en-US" @@ -145,7 +145,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -156,13 +156,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACXs=\"" + "\"AAAAAAAAO6A=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e589fddc-0304-4c92-af2c-e8f25f842626" + "ca2ca693-abdc-4d8f-bda1-7c085ada6c9b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -171,16 +171,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "88d61415-974d-48e6-8ec1-746680ad0730" + "a8ebee46-f7dc-4cd0-ac86-590024d37890" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192714Z:88d61415-974d-48e6-8ec1-746680ad0730" + "WESTUS:20200721T163335Z:a8ebee46-f7dc-4cd0-ac86-590024d37890" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:27:14 GMT" + "Tue, 21 Jul 2020 16:33:35 GMT" ], "Content-Length": [ "884" @@ -192,17 +192,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3473\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6621\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e535b2db-2cdb-474d-8cb6-b5eb3310322d" + "efca2d65-a2bb-4970-b592-d2bcca219d63" ], "Accept-Language": [ "en-US" @@ -211,7 +211,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -222,13 +222,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACXs=\"" + "\"AAAAAAAAO6A=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5cfcab9e-441b-4ca0-9de8-86ac22f9712d" + "1af4ab5c-5a06-495b-9301-72c50ea6cb68" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -237,16 +237,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "2c0b1915-0dec-4a3d-9912-1d47e2f97910" + "011ec954-ff58-4c50-a0b1-1bcc7b7d2adc" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192717Z:2c0b1915-0dec-4a3d-9912-1d47e2f97910" + "WESTUS:20200721T163338Z:011ec954-ff58-4c50-a0b1-1bcc7b7d2adc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:27:17 GMT" + "Tue, 21 Jul 2020 16:33:38 GMT" ], "Content-Length": [ "884" @@ -258,7 +258,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3473\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6621\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { @@ -268,7 +268,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc64386c-e81e-4c39-99c1-beaf2d594a54" + "71937afc-bed4-4da5-bfd1-b359b1497d74" ], "Accept-Language": [ "en-US" @@ -277,7 +277,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -291,7 +291,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4e0b3ad3-70e4-4b31-9e0f-8849597a4b08" + "3918d3ad-459f-487f-8332-71822bcd43e9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -300,19 +300,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "31fa6a2b-2c52-4ee1-a0e7-e1d62994efcc" + "f9d9ff61-bcfa-47c8-b101-377b62349f97" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192714Z:31fa6a2b-2c52-4ee1-a0e7-e1d62994efcc" + "WESTUS:20200721T163336Z:f9d9ff61-bcfa-47c8-b101-377b62349f97" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:27:14 GMT" + "Tue, 21 Jul 2020 16:33:35 GMT" ], "Content-Length": [ - "1285" + "1287" ], "Content-Type": [ "application/json; charset=utf-8" @@ -321,17 +321,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 100,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps3473?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9wczM0NzM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps6621?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9wczY2MjE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd85e0c0-6607-4228-bb8a-7d059d1160f3" + "cfcf6efc-93f2-4145-8969-df1b60268afd" ], "Accept-Language": [ "en-US" @@ -340,7 +340,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -351,13 +351,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACXs=\"" + "\"AAAAAAAAO6A=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bf6a56a7-fe8a-4161-8c59-eae1d12b5297" + "6d177627-a17b-4c09-b57b-e8e4b800bdbc" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -366,16 +366,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "08e06c9e-bc85-4f7d-b85b-62744e745bd0" + "1687c205-4ef7-4342-8a76-31dfc51bfc5c" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192715Z:08e06c9e-bc85-4f7d-b85b-62744e745bd0" + "WESTUS:20200721T163336Z:1687c205-4ef7-4342-8a76-31dfc51bfc5c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:27:15 GMT" + "Tue, 21 Jul 2020 16:33:35 GMT" ], "Content-Length": [ "758" @@ -387,7 +387,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps3473\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps3473\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps6621\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps6621\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { @@ -397,7 +397,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e01a305d-47c2-4a09-89aa-714e62583049" + "ce817833-3db4-4e54-bf97-ed1f2a791250" ], "Accept-Language": [ "en-US" @@ -406,7 +406,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -420,7 +420,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f654bc12-80e2-4b49-9273-24c90fb72f27" + "135c707c-3ed5-4466-95df-ffbb0873344c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -429,16 +429,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "c233b991-aae6-49d6-8747-59e1a89777c7" + "f3a74a93-2ea0-4f4d-8bcb-9017d628a0b6" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192716Z:c233b991-aae6-49d6-8747-59e1a89777c7" + "WESTUS:20200721T163337Z:f3a74a93-2ea0-4f4d-8bcb-9017d628a0b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:27:16 GMT" + "Tue, 21 Jul 2020 16:33:36 GMT" ], "Content-Length": [ "1610" @@ -450,17 +450,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps3473\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps3473\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps6621\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps6621\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/operations?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/operations?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa1d6359-5d1c-4de1-a9c9-f7c276830e78" + "be10d4e7-277b-4fdb-97dd-3beebe099627" ], "Accept-Language": [ "en-US" @@ -469,7 +469,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -483,7 +483,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "11d558b3-b69c-42c3-870b-fa4e88906fa7" + "58ca16ea-e511-422a-8c31-c49d6457c18a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -492,19 +492,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "da245bf0-b42f-4cd0-8c14-4ea9edb0c009" + "2c77f5bf-3758-479a-b271-f6194dd474e4" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192717Z:da245bf0-b42f-4cd0-8c14-4ea9edb0c009" + "WESTUS:20200721T163338Z:2c77f5bf-3758-479a-b271-f6194dd474e4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:27:17 GMT" + "Tue, 21 Jul 2020 16:33:37 GMT" ], "Content-Length": [ - "18942" + "19177" ], "Content-Type": [ "application/json; charset=utf-8" @@ -513,17 +513,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"DefinedBodyParam\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"sample\": \"contenttype1 example\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 8\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"newPet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"DefinedBodyParam\",\r\n \"generatedSample\": \"{\\r\\n \\\"firstName\\\": \\\"string\\\",\\r\\n \\\"lastName\\\": \\\"string\\\",\\r\\n \\\"age\\\": 0\\r\\n}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"sample\": \"contenttype1 example\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\r\\n \\\"string\\\"\\r\\n]\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"[\\r\\n {\\r\\n \\\"id\\\": 0,\\r\\n \\\"name\\\": \\\"string\\\",\\r\\n \\\"tag\\\": \\\"string\\\"\\r\\n }\\r\\n]\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 8\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473%3Brev%3D2?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczJTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621%3Brev%3D2?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxJTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"apiRevisionDescription\": \"ps6116\",\r\n \"sourceApiId\": \"/apis/ps3473;rev=1\",\r\n \"path\": \"swaggerapifromFile\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"apiRevisionDescription\": \"ps8005\",\r\n \"sourceApiId\": \"/apis/ps6621;rev=1\",\r\n \"path\": \"swaggerapifromFile\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6b0b168a-e5a3-4346-95ab-821a06559d62" + "ed70b804-b411-478a-ba10-4ea585ff9d30" ], "Accept-Language": [ "en-US" @@ -532,7 +532,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -549,13 +549,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACZ0=\"" + "\"AAAAAAAAO8I=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "770b73f6-3fc2-409f-90b2-863ee1d99ad1" + "ba86405a-6cd2-4381-8de1-ca34b8258c97" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -564,16 +564,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "d63eea0d-4919-46e3-8947-3db2095b6a2d" + "190123e4-ddde-4883-86e4-1183e3f30c9c" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192720Z:d63eea0d-4919-46e3-8947-3db2095b6a2d" + "WESTUS:20200721T163342Z:190123e4-ddde-4883-86e4-1183e3f30c9c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:27:20 GMT" + "Tue, 21 Jul 2020 16:33:41 GMT" ], "Content-Length": [ "913" @@ -585,12 +585,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3473;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"apiRevisionDescription\": \"ps6116\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6621;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"apiRevisionDescription\": \"ps8005\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473%3Brev%3D2?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczJTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621%3Brev%3D2?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxJTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -598,7 +598,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -609,31 +609,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACZ0=\"" + "\"AAAAAAAAO8I=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2bfb8e93-7880-4fd5-8e0f-7865d3546ae1" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "77577471-71a8-4968-8efa-254aec4190e9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], "x-ms-correlation-request-id": [ - "4f2c0e6e-715b-473e-a398-b632e6455ff9" + "4a08e18e-b3e0-4bbe-92dc-c8e926074bed" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192751Z:4f2c0e6e-715b-473e-a398-b632e6455ff9" + "WESTUS:20200721T163412Z:4a08e18e-b3e0-4bbe-92dc-c8e926074bed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:27:50 GMT" + "Tue, 21 Jul 2020 16:34:11 GMT" ], "Content-Length": [ "913" @@ -645,17 +645,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3473;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"apiRevisionDescription\": \"ps6116\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6621;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"apiRevisionDescription\": \"ps8005\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473%3Brev%3D2?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczJTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621%3Brev%3D2?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxJTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de96455e-2933-47e3-8934-d89c4d728152" + "05b741c0-f1af-4615-9f40-92761ea8f6dc" ], "Accept-Language": [ "en-US" @@ -664,7 +664,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -675,13 +675,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACZ0=\"" + "\"AAAAAAAAO8I=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d13b3cc5-a214-4248-ac3e-c3339d18cb60" + "f958b774-1e66-4ec5-b5b7-996e9fa144da" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -690,16 +690,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "14a875ec-e76f-4e7e-9d5e-4a5d373ba7db" + "5aa125d1-552e-4f21-815a-a7bb9e4e981d" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192751Z:14a875ec-e76f-4e7e-9d5e-4a5d373ba7db" + "WESTUS:20200721T163413Z:5aa125d1-552e-4f21-815a-a7bb9e4e981d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:27:51 GMT" + "Tue, 21 Jul 2020 16:34:12 GMT" ], "Content-Length": [ "913" @@ -711,17 +711,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3473;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"apiRevisionDescription\": \"ps6116\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6621;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"2\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"apiRevisionDescription\": \"ps8005\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473%3Brev%3D2/operations?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczJTNCcmV2JTNEMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621%3Brev%3D2/operations?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxJTNCcmV2JTNEMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f63fba3a-8976-4cec-afad-6dc1f868129e" + "95e0025d-7f7e-46fe-a479-4fd020acfebb" ], "Accept-Language": [ "en-US" @@ -730,7 +730,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -744,7 +744,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "54b0ccf2-da3a-4bbb-b8e2-d59fc7c9b339" + "36e63614-e0a2-4677-85c7-994a9d621b34" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -753,16 +753,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "f7519cec-29ba-4744-b8ed-453b41a6cbba" + "cfe13fe4-599d-4f75-9c0d-bcca84602086" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192751Z:f7519cec-29ba-4744-b8ed-453b41a6cbba" + "WESTUS:20200721T163412Z:cfe13fe4-599d-4f75-9c0d-bcca84602086" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:27:50 GMT" + "Tue, 21 Jul 2020 16:34:12 GMT" ], "Content-Length": [ "16923" @@ -774,17 +774,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473;rev=2/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473;rev=2/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473;rev=2/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473;rev=2/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"DefinedBodyParam\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"sample\": \"contenttype1 example\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473;rev=2/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473;rev=2/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473;rev=2/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"petArray\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5eab2674a2ca60123002311c\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473;rev=2/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 8\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2/operations/addPet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"addPet\",\r\n \"properties\": {\r\n \"displayName\": \"addPet\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Creates a new pet in the store. Duplicates are allowed\",\r\n \"request\": {\r\n \"description\": \"Pet to add to the store\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"newPet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2/operations/deletePet\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"deletePet\",\r\n \"properties\": {\r\n \"displayName\": \"deletePet\",\r\n \"method\": \"DELETE\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to delete\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"deletes a single pet based on the ID supplied\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"pet deleted\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2/operations/dummyid1\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid1\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid1\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"dummyBodyParam description\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"dummyNotReqQueryParam\",\r\n \"description\": \"dummyNotReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"dummyDateHeaderParam\",\r\n \"description\": \"Format - date (as full-date in RFC3339). dummyDateHeaderParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": \"sampleheader\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2/operations/dummyid2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyid2\",\r\n \"properties\": {\r\n \"displayName\": \"dummyid2\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/mySamplePath2?definedQueryParam={definedQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"definedQueryParam\",\r\n \"description\": \"Format - whateverformat. definedQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy desc\",\r\n \"request\": {\r\n \"description\": \"definedBodyParam description\",\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"DefinedBodyParam\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 204,\r\n \"description\": \"dummyResponseDef description\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"contenttype1\",\r\n \"sample\": \"contenttype1 example\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2/operations/dummyOperationId\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"dummyOperationId\",\r\n \"properties\": {\r\n \"displayName\": \"dummyOperationId\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets2?dummyParam={dummyParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyParam\",\r\n \"description\": \"dummyParam desc\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2/operations/findPetById\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPetById\",\r\n \"properties\": {\r\n \"displayName\": \"findPetById\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets/{id}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"id\",\r\n \"description\": \"Format - int64. ID of pet to fetch\",\r\n \"type\": \"integer\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Returns a user based on a single ID, if the user does not have access to the pet\",\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2/operations/findPets\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"findPets\",\r\n \"properties\": {\r\n \"displayName\": \"findPets\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/pets\",\r\n \"templateParameters\": [],\r\n \"description\": \"Returns all pets from the system that the user has access to\",\r\n \"request\": {\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"limit\",\r\n \"description\": \"Format - int32. maximum number of results to return\",\r\n \"type\": \"integer\",\r\n \"values\": []\r\n }\r\n ],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"pet response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"petArray\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"petArray\"\r\n }\r\n ],\r\n \"headers\": []\r\n },\r\n {\r\n \"statusCode\": 500,\r\n \"description\": \"unexpected error\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2/operations/resourceWithFormDataPOST\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"resourceWithFormDataPOST\",\r\n \"properties\": {\r\n \"displayName\": \"resourceWithFormDataPOST\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resourceWithFormData?dummyReqQueryParam={dummyReqQueryParam}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"dummyReqQueryParam\",\r\n \"description\": \"dummyReqQueryParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"sample response\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"count\": 8\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/revisions?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczL3JldmlzaW9ucz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/revisions?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxL3JldmlzaW9ucz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12c2ed88-6177-4e9d-b1b4-f764474287b1" + "30d4ddac-10c9-4ea3-b14d-a6de613b502e" ], "Accept-Language": [ "en-US" @@ -793,7 +793,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -807,7 +807,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "399b9b12-476f-46c9-9f3a-f90a88aa4b1a" + "16e31dc1-8c46-4c5f-85dd-c36862e17e45" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -816,19 +816,19 @@ "11990" ], "x-ms-correlation-request-id": [ - "60779cde-c85a-4ed6-9751-c20da4425f91" + "53fae145-9499-460a-8bb1-ac51aa5a2e12" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192752Z:60779cde-c85a-4ed6-9751-c20da4425f91" + "WESTUS:20200721T163413Z:53fae145-9499-460a-8bb1-ac51aa5a2e12" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:27:51 GMT" + "Tue, 21 Jul 2020 16:34:12 GMT" ], "Content-Length": [ - "597" + "598" ], "Content-Type": [ "application/json; charset=utf-8" @@ -837,17 +837,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/apis/ps3473;rev=2/revisions/ps3473;rev=2\",\r\n \"apiId\": \"/apis/ps3473;rev=2\",\r\n \"apiRevision\": \"2\",\r\n \"createdDateTime\": \"2020-04-30T19:27:19.303Z\",\r\n \"updatedDateTime\": \"2020-04-30T19:27:20.49Z\",\r\n \"description\": \"ps6116\",\r\n \"privateUrl\": \"/swaggerapifromFile;rev=2\",\r\n \"isOnline\": true,\r\n \"isCurrent\": false\r\n },\r\n {\r\n \"id\": \"/apis/ps3473;rev=1/revisions/ps3473;rev=1\",\r\n \"apiId\": \"/apis/ps3473;rev=1\",\r\n \"apiRevision\": \"1\",\r\n \"createdDateTime\": \"2020-04-30T19:26:44.103Z\",\r\n \"updatedDateTime\": \"2020-04-30T19:26:44.137Z\",\r\n \"description\": null,\r\n \"privateUrl\": \"/swaggerapifromFile\",\r\n \"isOnline\": true,\r\n \"isCurrent\": true\r\n }\r\n ],\r\n \"count\": 2,\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/apis/ps6621;rev=2/revisions/ps6621;rev=2\",\r\n \"apiId\": \"/apis/ps6621;rev=2\",\r\n \"apiRevision\": \"2\",\r\n \"createdDateTime\": \"2020-07-21T16:33:41.213Z\",\r\n \"updatedDateTime\": \"2020-07-21T16:33:42.093Z\",\r\n \"description\": \"ps8005\",\r\n \"privateUrl\": \"/swaggerapifromFile;rev=2\",\r\n \"isOnline\": true,\r\n \"isCurrent\": false\r\n },\r\n {\r\n \"id\": \"/apis/ps6621;rev=1/revisions/ps6621;rev=1\",\r\n \"apiId\": \"/apis/ps6621;rev=1\",\r\n \"apiRevision\": \"1\",\r\n \"createdDateTime\": \"2020-07-21T16:33:05.293Z\",\r\n \"updatedDateTime\": \"2020-07-21T16:33:05.327Z\",\r\n \"description\": null,\r\n \"privateUrl\": \"/swaggerapifromFile\",\r\n \"isOnline\": true,\r\n \"isCurrent\": true\r\n }\r\n ],\r\n \"count\": 2,\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/releases/ps1729?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczL3JlbGVhc2VzL3BzMTcyOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases/ps874?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxL3JlbGVhc2VzL3BzODc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/ps3473;rev=2\",\r\n \"notes\": \"ps8337\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/ps6621;rev=2\",\r\n \"notes\": \"ps6395\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "003834ac-4473-4307-b42c-f34c0a6c3e61" + "013a045f-21c7-4b49-afc9-00f2003e8a13" ], "Accept-Language": [ "en-US" @@ -856,7 +856,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -873,13 +873,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACb8=\"" + "\"AAAAAAAAO+M=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c09e5970-e164-4d21-bc8f-843bac48fec0" + "cffa2bba-07b0-467f-9d7f-efb2999a39a9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -888,19 +888,19 @@ "1196" ], "x-ms-correlation-request-id": [ - "c4c638e6-6b8b-4c35-9175-0d72636c3a3a" + "726043dd-df08-46f3-89a5-d53e8a7fef17" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192752Z:c4c638e6-6b8b-4c35-9175-0d72636c3a3a" + "WESTUS:20200721T163414Z:726043dd-df08-46f3-89a5-d53e8a7fef17" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:27:52 GMT" + "Tue, 21 Jul 2020 16:34:13 GMT" ], "Content-Length": [ - "603" + "601" ], "Content-Type": [ "application/json; charset=utf-8" @@ -909,17 +909,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/releases/ps1729\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps1729\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473\",\r\n \"createdDateTime\": \"2020-04-30T19:27:52.4489034Z\",\r\n \"updatedDateTime\": \"2020-04-30T19:27:52.4489034Z\",\r\n \"notes\": \"ps8337\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases/ps874\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps874\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621\",\r\n \"createdDateTime\": \"2020-07-21T16:34:14.2143432Z\",\r\n \"updatedDateTime\": \"2020-07-21T16:34:14.2143432Z\",\r\n \"notes\": \"ps6395\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/releases/ps1729?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczL3JlbGVhc2VzL3BzMTcyOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases/ps874?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxL3JlbGVhc2VzL3BzODc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "842f0547-25f3-4a6f-a336-65ee5f0edd4c" + "b0582d12-4f2f-497e-8b3a-6a949a477d1c" ], "Accept-Language": [ "en-US" @@ -928,7 +928,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -939,13 +939,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACb8=\"" + "\"AAAAAAAAO+M=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "87a12a52-9221-42f7-89e8-55f181329097" + "cb353d11-a9ec-4aa6-81f4-558f7703f8d0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -954,16 +954,16 @@ "11989" ], "x-ms-correlation-request-id": [ - "57aa0262-6f0e-410d-b665-05308ad26abd" + "622a6a47-7fbd-4fc5-8f38-6a7e7f106f0c" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192752Z:57aa0262-6f0e-410d-b665-05308ad26abd" + "WESTUS:20200721T163414Z:622a6a47-7fbd-4fc5-8f38-6a7e7f106f0c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:27:52 GMT" + "Tue, 21 Jul 2020 16:34:13 GMT" ], "Content-Length": [ "593" @@ -975,17 +975,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/releases/ps1729\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps1729\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473\",\r\n \"createdDateTime\": \"2020-04-30T19:27:52.45Z\",\r\n \"updatedDateTime\": \"2020-04-30T19:27:52.45Z\",\r\n \"notes\": \"ps8337\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases/ps874\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps874\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621\",\r\n \"createdDateTime\": \"2020-07-21T16:34:14.213Z\",\r\n \"updatedDateTime\": \"2020-07-21T16:34:14.213Z\",\r\n \"notes\": \"ps6395\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/releases/ps1729?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczL3JlbGVhc2VzL3BzMTcyOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases/ps874?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxL3JlbGVhc2VzL3BzODc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00eb53ba-5cbf-47d6-8d20-35049909d486" + "d9ba910d-d33e-4375-9496-3c8a26a7fe8d" ], "Accept-Language": [ "en-US" @@ -994,7 +994,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1005,13 +1005,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACcI=\"" + "\"AAAAAAAAO+Y=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b1061dd-a3d8-4add-a4fd-aa71db9bdea5" + "2e7e511d-5bd1-474e-a610-0e9bac885140" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1020,16 +1020,16 @@ "11988" ], "x-ms-correlation-request-id": [ - "8d761492-9894-404a-b593-a09078e16661" + "3ec54b4a-805a-42cc-af5b-9660d569b893" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192753Z:8d761492-9894-404a-b593-a09078e16661" + "WESTUS:20200721T163415Z:3ec54b4a-805a-42cc-af5b-9660d569b893" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:27:52 GMT" + "Tue, 21 Jul 2020 16:34:14 GMT" ], "Content-Length": [ "593" @@ -1041,17 +1041,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/releases/ps1729\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps1729\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473\",\r\n \"createdDateTime\": \"2020-04-30T19:27:52.45Z\",\r\n \"updatedDateTime\": \"2020-04-30T19:27:52.45Z\",\r\n \"notes\": \"ps2660\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases/ps874\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps874\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621\",\r\n \"createdDateTime\": \"2020-07-21T16:34:14.213Z\",\r\n \"updatedDateTime\": \"2020-07-21T16:34:14.213Z\",\r\n \"notes\": \"ps1127\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/releases/ps1729?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczL3JlbGVhc2VzL3BzMTcyOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases/ps874?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxL3JlbGVhc2VzL3BzODc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473\",\r\n \"notes\": \"ps2660\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621\",\r\n \"notes\": \"ps1127\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8dfdf071-ffaf-4fff-911e-d24e8193d68a" + "a21e5202-47b8-4bbb-a379-5d284e9a5010" ], "If-Match": [ "*" @@ -1063,7 +1063,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1083,7 +1083,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "819d2bc8-749a-4084-97b4-d636c90ba9c8" + "69c166bb-8b2a-4190-9d39-f025e30f68e3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1092,16 +1092,16 @@ "1195" ], "x-ms-correlation-request-id": [ - "38de18cb-f109-424a-931c-7d32a1292c91" + "d3c35835-7663-47d9-a856-48a2d08241cb" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192753Z:38de18cb-f109-424a-931c-7d32a1292c91" + "WESTUS:20200721T163414Z:d3c35835-7663-47d9-a856-48a2d08241cb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:27:52 GMT" + "Tue, 21 Jul 2020 16:34:14 GMT" ], "Expires": [ "-1" @@ -1111,13 +1111,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/releases?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczL3JlbGVhc2VzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxL3JlbGVhc2VzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56dde405-1bc2-4784-ae94-33de7963f1d5" + "f5bbf9e5-4808-4ed7-9398-aea431454b64" ], "Accept-Language": [ "en-US" @@ -1126,7 +1126,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1140,7 +1140,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d6f39995-6693-41dc-b989-75998e8dddca" + "3c38dd2f-a212-497e-88b6-ba3bc62b65d1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1149,16 +1149,16 @@ "11987" ], "x-ms-correlation-request-id": [ - "97aa8c7e-3e82-499f-ad54-f7dd8ccd2d2e" + "195f523b-7d77-40b0-97ff-547259551b03" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192753Z:97aa8c7e-3e82-499f-ad54-f7dd8ccd2d2e" + "WESTUS:20200721T163415Z:195f523b-7d77-40b0-97ff-547259551b03" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:27:53 GMT" + "Tue, 21 Jul 2020 16:34:14 GMT" ], "Content-Length": [ "499" @@ -1170,17 +1170,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473/releases/ps1729\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps1729\",\r\n \"properties\": {\r\n \"createdDateTime\": \"2020-04-30T19:27:52.45Z\",\r\n \"updatedDateTime\": \"2020-04-30T19:27:52.45Z\",\r\n \"notes\": \"ps2660\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases/ps874\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps874\",\r\n \"properties\": {\r\n \"createdDateTime\": \"2020-07-21T16:34:14.213Z\",\r\n \"updatedDateTime\": \"2020-07-21T16:34:14.213Z\",\r\n \"notes\": \"ps1127\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473%3Brev%3D1?deleteRevisions=false&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczJTNCcmV2JTNEMT9kZWxldGVSZXZpc2lvbnM9ZmFsc2UmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621%3Brev%3D1?deleteRevisions=false&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxJTNCcmV2JTNEMT9kZWxldGVSZXZpc2lvbnM9ZmFsc2UmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b006f78b-8717-484c-9d98-95dea05bf95b" + "743c90b8-a0bd-4ad2-be4f-61af47221904" ], "If-Match": [ "*" @@ -1192,7 +1192,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1206,7 +1206,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "598a57a8-2cd4-45e6-b12a-2681891f1365" + "96b51515-0a33-4e08-a9b1-104dcae57133" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1215,16 +1215,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "37ab941f-107f-494a-ba3e-f9bdfb49030d" + "2b42301e-533a-43ec-b51c-786201dd429b" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192754Z:37ab941f-107f-494a-ba3e-f9bdfb49030d" + "WESTUS:20200721T163416Z:2b42301e-533a-43ec-b51c-786201dd429b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:27:53 GMT" + "Tue, 21 Jul 2020 16:34:15 GMT" ], "Expires": [ "-1" @@ -1237,13 +1237,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3473?deleteRevisions=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNDczP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621?deleteRevisions=true&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1684dcc2-6c07-44aa-8a82-6b3d44414914" + "148cf514-77b5-4ac4-a4ed-08ac24fd1dde" ], "If-Match": [ "*" @@ -1255,7 +1255,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1269,7 +1269,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "95868ebf-f1b3-45a6-b48b-57004e9f3cc6" + "31992756-211a-4ac7-8f5f-dde05fdff96a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1278,16 +1278,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "7786e476-646e-43e3-957a-422419038c4c" + "b1f4b66f-a222-452f-812d-28b14aaf0fb6" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192754Z:7786e476-646e-43e3-957a-422419038c4c" + "WESTUS:20200721T163417Z:b1f4b66f-a222-452f-812d-28b14aaf0fb6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:27:54 GMT" + "Tue, 21 Jul 2020 16:34:16 GMT" ], "Expires": [ "-1" @@ -1302,11 +1302,11 @@ ], "Names": { "": [ - "ps3473", - "ps1729", - "ps6116", - "ps8337", - "ps2660" + "ps6621", + "ps874", + "ps8005", + "ps6395", + "ps1127" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnSwaggerApiTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnSwaggerApiTest.json index 6e638fec03e2..da2137199b93 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnSwaggerApiTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnSwaggerApiTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4234\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps6515\",\r\n \"query\": \"ps2943\"\r\n },\r\n \"displayName\": \"ps2697\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps2964\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9968\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps6732\",\r\n \"query\": \"ps9879\"\r\n },\r\n \"displayName\": \"ps9920\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8246\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4d2c620d-17e2-4c1e-bdff-df42a0c6b8de" + "43790c31-72d2-48b0-8508-8579c9c19bf0" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,31 +33,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADEM=\"" + "\"AAAAAAAAPo4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cd6bb31c-85e3-4039-966f-846b5e6bbdaf" + "8a6e9992-9eba-46ae-9116-272199d8ec3e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "2ba379af-b905-4b94-91e1-b466ead8d883" + "54c6df2c-8f76-485e-bdb7-3adf04608ac3" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194250Z:2ba379af-b905-4b94-91e1-b466ead8d883" + "WESTUS:20200721T165021Z:54c6df2c-8f76-485e-bdb7-3adf04608ac3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:42:50 GMT" + "Tue, 21 Jul 2020 16:50:20 GMT" ], "Content-Length": [ "739" @@ -69,12 +69,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1855\",\r\n \"properties\": {\r\n \"displayName\": \"ps2697\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4234\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps2964\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps6515\",\r\n \"query\": \"ps2943\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1786\",\r\n \"properties\": {\r\n \"displayName\": \"ps9920\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps9968\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8246\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps6732\",\r\n \"query\": \"ps9879\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -82,7 +82,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -93,31 +93,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADEM=\"" + "\"AAAAAAAAPo4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4fed4207-d71c-428d-bc6f-fa455369cf75" + "14c42fc8-069e-47c1-9643-7316d511ab98" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "d48f5f40-e62c-48df-8198-b355763a4052" + "231ed694-0194-4c09-a554-08d66178c7b4" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194320Z:d48f5f40-e62c-48df-8198-b355763a4052" + "WESTUS:20200721T165051Z:231ed694-0194-4c09-a554-08d66178c7b4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:43:19 GMT" + "Tue, 21 Jul 2020 16:50:51 GMT" ], "Content-Length": [ "739" @@ -129,17 +129,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1855\",\r\n \"properties\": {\r\n \"displayName\": \"ps2697\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps4234\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps2964\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps6515\",\r\n \"query\": \"ps2943\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1786\",\r\n \"properties\": {\r\n \"displayName\": \"ps9920\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps9968\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8246\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps6732\",\r\n \"query\": \"ps9879\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa3275f2-e29f-4108-807f-30e411579762" + "f7d08b36-2b06-4da6-b80e-417be720fb8a" ], "Accept-Language": [ "en-US" @@ -148,7 +148,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -162,25 +162,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "339e2c46-8512-4abe-b68d-fce2aa0eb925" + "09cd27e9-dca5-47a5-a7bb-53b68f9f0a76" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "5c4c0f6d-e135-472e-983c-06e715fb9e75" + "79eb457f-ca87-4667-9171-9cef0bfde194" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194320Z:5c4c0f6d-e135-472e-983c-06e715fb9e75" + "WESTUS:20200721T165051Z:79eb457f-ca87-4667-9171-9cef0bfde194" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:43:19 GMT" + "Tue, 21 Jul 2020 16:50:51 GMT" ], "Content-Length": [ "34" @@ -196,13 +196,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da793d1f-525e-462f-9404-d5baa78c6c8c" + "a87fd14c-50ea-49da-aee6-a35662f25277" ], "Accept-Language": [ "en-US" @@ -211,7 +211,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -225,25 +225,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ec9153dc-c3b8-4d27-be8d-caef3e7f65f9" + "b186f1ed-bded-4a42-b980-f76866c7b768" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11995" ], "x-ms-correlation-request-id": [ - "43833494-3381-49bf-b0bc-f2df2496691c" + "18e440d9-91bc-4722-9c81-d4299bfc4bf5" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194351Z:43833494-3381-49bf-b0bc-f2df2496691c" + "WESTUS:20200721T165122Z:18e440d9-91bc-4722-9c81-d4299bfc4bf5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:43:50 GMT" + "Tue, 21 Jul 2020 16:51:21 GMT" ], "Content-Length": [ "2007" @@ -255,17 +255,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps4652\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps1151\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1L3NjaGVtYXMvcHM0NjUyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXMvcHMxMTUxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"value\": \"{\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"findmoreinfohere\\\",\\r\\n \\\"url\\\": \\\"https: //helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"id\\\": {\\r\\n \\\"properties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9cdb0c17-6851-4210-bb6d-cc1dcaa8250b" + "1cfa2e13-fcdc-45ee-9650-84110f22c0f2" ], "Accept-Language": [ "en-US" @@ -274,7 +274,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -291,31 +291,31 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652?api-version=2019-12-01&asyncId=5eab2a58a2ca601230023203&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01&asyncId=5f171ceba2ca600fe4c29777&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f9a89f32-2751-4d42-85be-e96b4c2f6c44" + "62be4b4c-766d-491d-a57e-56de44a2afad" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "efb495eb-e74e-49d8-9328-ed5436093637" + "59f5526f-e3d4-4238-be6f-c3a2ee48d7e7" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194320Z:efb495eb-e74e-49d8-9328-ed5436093637" + "WESTUS:20200721T165051Z:59f5526f-e3d4-4238-be6f-c3a2ee48d7e7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:43:20 GMT" + "Tue, 21 Jul 2020 16:50:51 GMT" ], "Expires": [ "-1" @@ -328,13 +328,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1L3NjaGVtYXMvcHM0NjUyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXMvcHMxMTUxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"contentType\": \"application/json\",\r\n \"document\": {\r\n \"value\": \"{\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"findmoreinfohere\\\",\\r\\n \\\"url\\\": \\\"https: //helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"id\\\": {\\r\\n \\\"properties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2ae45a10-3fe4-4ef7-b2b0-a7a846b392f5" + "2feed778-9f67-4895-aa26-0e41b5291a04" ], "If-Match": [ "*" @@ -346,7 +346,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -363,31 +363,31 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652?api-version=2019-12-01&asyncId=5eab2a77a2ca601230023207&asyncCode=200" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01&asyncId=5f171d0aa2ca600fe4c2977b&asyncCode=200" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ac4ec35-f75c-4e4f-a933-948512b11e64" + "03a239bc-68ab-46f5-b336-04674e5ab226" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "89113d1b-befa-4f6d-b28b-e526b219810e" + "0c2af5d0-61dc-40e2-993c-2e6f1379fa85" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194351Z:89113d1b-befa-4f6d-b28b-e526b219810e" + "WESTUS:20200721T165122Z:0c2af5d0-61dc-40e2-993c-2e6f1379fa85" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:43:51 GMT" + "Tue, 21 Jul 2020 16:51:22 GMT" ], "Expires": [ "-1" @@ -400,8 +400,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652?api-version=2019-12-01&asyncId=5eab2a58a2ca601230023203&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1L3NjaGVtYXMvcHM0NjUyP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMmE1OGEyY2E2MDEyMzAwMjMyMDMmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01&asyncId=5f171ceba2ca600fe4c29777&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXMvcHMxMTUxP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWNlYmEyY2E2MDBmZTRjMjk3NzcmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -409,7 +409,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -420,31 +420,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADEc=\"" + "\"AAAAAAAAPpI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f7ac9ace-b088-46b5-a392-325c22d55ca9" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "c6fd9c0f-77bf-4731-a153-6bcb961c781d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], "x-ms-correlation-request-id": [ - "84e667f4-d0c5-411f-800a-bd074bd0a4af" + "8efebe29-331a-4d36-b829-36b70fa40272" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194350Z:84e667f4-d0c5-411f-800a-bd074bd0a4af" + "WESTUS:20200721T165121Z:8efebe29-331a-4d36-b829-36b70fa40272" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:43:50 GMT" + "Tue, 21 Jul 2020 16:51:21 GMT" ], "Content-Length": [ "1699" @@ -456,17 +456,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps4652\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps1151\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1L3NjaGVtYXMvcHM0NjUyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXMvcHMxMTUxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d091ec6f-ea1a-4350-ac70-5d7b2035b4af" + "50389b38-8c4d-4559-946f-6d665d93b3c0" ], "Accept-Language": [ "en-US" @@ -475,7 +475,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -486,31 +486,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADEc=\"" + "\"AAAAAAAAPpI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b087f28-ad56-47ef-994d-1593c4baf218" + "fc37200f-5101-4e59-a857-6bde684b4c65" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11996" ], "x-ms-correlation-request-id": [ - "4fc27867-541e-4572-a7e1-5aa5e34085b1" + "023b6706-edc6-4295-b606-fd7ec12ebb09" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194351Z:4fc27867-541e-4572-a7e1-5aa5e34085b1" + "WESTUS:20200721T165122Z:023b6706-edc6-4295-b606-fd7ec12ebb09" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:43:50 GMT" + "Tue, 21 Jul 2020 16:51:21 GMT" ], "Content-Length": [ "1699" @@ -522,12 +522,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps4652\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps1151\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.swagger.definitions+json\",\r\n \"document\": {\r\n \"definitions\": {\r\n \"pet\": {\r\n \"required\": [\r\n \"id\",\r\n \"name\"\r\n ],\r\n \"externalDocs\": {\r\n \"description\": \"findmoreinfohere\",\r\n \"url\": \"https: //helloreverb.com/about\"\r\n },\r\n \"properties\": {\r\n \"id\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"tag\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n },\r\n \"newPet\": {\r\n \"allOf\": [\r\n {\r\n \"$ref\": \"pet\"\r\n },\r\n {\r\n \"required\": [\r\n \"name\"\r\n ],\r\n \"id\": {\r\n \"properties\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int64\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"errorModel\": {\r\n \"required\": [\r\n \"code\",\r\n \"message\"\r\n ],\r\n \"properties\": {\r\n \"code\": {\r\n \"type\": \"integer\",\r\n \"format\": \"int32\"\r\n },\r\n \"message\": {\r\n \"type\": \"string\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652?api-version=2019-12-01&asyncId=5eab2a77a2ca601230023207&asyncCode=200", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1L3NjaGVtYXMvcHM0NjUyP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMmE3N2EyY2E2MDEyMzAwMjMyMDcmYXN5bmNDb2RlPTIwMA==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01&asyncId=5f171d0aa2ca600fe4c2977b&asyncCode=200", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXMvcHMxMTUxP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWQwYWEyY2E2MDBmZTRjMjk3N2ImYXN5bmNDb2RlPTIwMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -535,7 +535,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -546,31 +546,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADEg=\"" + "\"AAAAAAAAPpM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ed23608d-9ca3-426f-a33f-a4961d2a50f3" + "9eb9ded7-48fc-4459-8bf2-a53be3e4490c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11994" ], "x-ms-correlation-request-id": [ - "a479668c-5205-41f8-ae12-cccdee92e9ca" + "d55c9e24-760a-4ef1-9cd4-2e673e255d4f" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194421Z:a479668c-5205-41f8-ae12-cccdee92e9ca" + "WESTUS:20200721T165152Z:d55c9e24-760a-4ef1-9cd4-2e673e255d4f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:44:20 GMT" + "Tue, 21 Jul 2020 16:51:52 GMT" ], "Content-Length": [ "1525" @@ -582,17 +582,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps4652\",\r\n \"properties\": {\r\n \"contentType\": \"application/json\",\r\n \"document\": {\r\n \"value\": \"{\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"findmoreinfohere\\\",\\r\\n \\\"url\\\": \\\"https: //helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"id\\\": {\\r\\n \\\"properties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps1151\",\r\n \"properties\": {\r\n \"contentType\": \"application/json\",\r\n \"document\": {\r\n \"value\": \"{\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"findmoreinfohere\\\",\\r\\n \\\"url\\\": \\\"https: //helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"id\\\": {\\r\\n \\\"properties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1L3NjaGVtYXMvcHM0NjUyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXMvcHMxMTUxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b166968d-6707-499e-8378-2e5439f217ab" + "7007a798-5e8e-49a3-8bc5-746dd22f5d4f" ], "If-Match": [ "*" @@ -604,7 +604,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -618,25 +618,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7e0e01ff-5a04-40d5-997d-58e89f10138f" + "a660a7b5-a384-4ca3-9dd9-4aab97a1d7e9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "22828ea1-e790-47f5-bd73-879552c39562" + "9515a1eb-34f5-4286-8e86-cef80e959faa" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194422Z:22828ea1-e790-47f5-bd73-879552c39562" + "WESTUS:20200721T165153Z:9515a1eb-34f5-4286-8e86-cef80e959faa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:44:22 GMT" + "Tue, 21 Jul 2020 16:51:52 GMT" ], "Expires": [ "-1" @@ -649,13 +649,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855/schemas/ps4652?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1L3NjaGVtYXMvcHM0NjUyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXMvcHMxMTUxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2aedfa34-ed84-4927-86b9-4bc63f00fcf4" + "d53095f6-c1d5-4b92-ae73-3f2d62d0b12b" ], "If-Match": [ "*" @@ -667,7 +667,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -681,25 +681,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1d74fd20-1ba3-401a-846f-ccecf09f53ec" + "1a0ef89f-73db-45ec-b398-703d68304736" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14998" ], "x-ms-correlation-request-id": [ - "508fb101-ff79-4185-b491-849f8999e813" + "624ac5dc-f0cc-41df-826c-52827a87e858" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194422Z:508fb101-ff79-4185-b491-849f8999e813" + "WESTUS:20200721T165153Z:624ac5dc-f0cc-41df-826c-52827a87e858" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:44:22 GMT" + "Tue, 21 Jul 2020 16:51:52 GMT" ], "Expires": [ "-1" @@ -709,13 +709,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1855?deleteRevisions=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODU1P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786?deleteRevisions=true&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c76b9f03-22ec-4c59-9b80-14cdbba14337" + "ecc25af1-869c-4a93-bf29-ccca2f0661b0" ], "If-Match": [ "*" @@ -727,7 +727,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -741,25 +741,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c79591b8-86de-4e04-b440-65c180f66c60" + "adc8d910-be6a-4d20-bfe1-26585e10d106" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14997" ], "x-ms-correlation-request-id": [ - "067435c3-8722-4907-8cf8-86a968514c4e" + "9f4e08b7-4aa1-4a84-8ba2-9299cb43ffa0" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194422Z:067435c3-8722-4907-8cf8-86a968514c4e" + "WESTUS:20200721T165153Z:9f4e08b7-4aa1-4a84-8ba2-9299cb43ffa0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:44:22 GMT" + "Tue, 21 Jul 2020 16:51:52 GMT" ], "Expires": [ "-1" @@ -774,13 +774,13 @@ ], "Names": { "": [ - "ps1855", - "ps4652", - "ps2697", - "ps4234", - "ps2964", - "ps6515", - "ps2943" + "ps1786", + "ps1151", + "ps9920", + "ps9968", + "ps8246", + "ps6732", + "ps9879" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnWsdlApiTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnWsdlApiTest.json index 4bc3f0a6cd27..7c874762695c 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnWsdlApiTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiSchemaCrudOnWsdlApiTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MDgwP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"soapapifromFile\",\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Gets Information for each WeatherID\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City Forecast Over the Next 7 Days, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Allows you to get your City's Weather, which is updated hourly. U.S. Only\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"wsdl\",\r\n \"wsdlSelector\": {\r\n \"wsdlServiceName\": \"Weather\",\r\n \"wsdlEndpointName\": \"WeatherSoap\"\r\n },\r\n \"apiType\": \"soap\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c7594001-8343-4acd-a5ad-390e0c4b7ea0" + "dde07a2e-acb9-409d-bae8-c7683ed161aa" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,13 +33,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080?api-version=2019-12-01&asyncId=5eab26e4a2ca60123002312e&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346?api-version=2019-12-01&asyncId=5f171938a2ca600fe4c2968f&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "62415d3e-922c-4ba5-af47-48a7df4f0963" + "1258fb6e-db04-4311-b57c-36cbdab89065" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -48,16 +48,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "0313aa1d-f2f1-4717-998a-e4764b59cf0d" + "7bf1596b-b81b-4b43-8e94-d863d6211e02" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192836Z:0313aa1d-f2f1-4717-998a-e4764b59cf0d" + "WESTUS:20200721T163504Z:7bf1596b-b81b-4b43-8e94-d863d6211e02" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:28:35 GMT" + "Tue, 21 Jul 2020 16:35:03 GMT" ], "Expires": [ "-1" @@ -70,8 +70,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080?api-version=2019-12-01&asyncId=5eab26e4a2ca60123002312e&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MDgwP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjZlNGEyY2E2MDEyMzAwMjMxMmUmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346?api-version=2019-12-01&asyncId=5f171938a2ca600fe4c2968f&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MTkzOGEyY2E2MDBmZTRjMjk2OGYmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -79,7 +79,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -90,13 +90,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAChY=\"" + "\"AAAAAAAAPDo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5e562fa9-19b0-4323-9a41-9a8306191fbb" + "87068668-385d-408b-88ee-89b4ed83b5d6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -105,16 +105,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "a9c122f7-b22e-4c4a-be8a-a742225e9231" + "2f5a969b-6935-48f6-abf3-8592a6c14b5c" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192906Z:a9c122f7-b22e-4c4a-be8a-a742225e9231" + "WESTUS:20200721T163534Z:2f5a969b-6935-48f6-abf3-8592a6c14b5c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:29:06 GMT" + "Tue, 21 Jul 2020 16:35:34 GMT" ], "Content-Length": [ "786" @@ -126,17 +126,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5080\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8346\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MDgwP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2e5033d-dfb4-4174-ab5e-57476d50f7ad" + "1b61470d-bc6b-4daf-a658-2f339f8f74dc" ], "Accept-Language": [ "en-US" @@ -145,7 +145,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -156,13 +156,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAChY=\"" + "\"AAAAAAAAPDo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e45e6210-9027-4bd3-b7bb-ae4474debce2" + "49cd0db3-e081-48b7-9561-9961a6d2c3d2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -171,16 +171,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "9752d795-2240-4602-bdab-1206f6ac2fc4" + "43145460-a79d-44a8-8ce5-e879e1132acc" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192906Z:9752d795-2240-4602-bdab-1206f6ac2fc4" + "WESTUS:20200721T163534Z:43145460-a79d-44a8-8ce5-e879e1132acc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:29:06 GMT" + "Tue, 21 Jul 2020 16:35:34 GMT" ], "Content-Length": [ "786" @@ -192,17 +192,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps5080\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8346\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"soapapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"soap\",\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MDgwL3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "700b6e0f-f789-4021-8252-3d8066c4728a" + "642f4e0d-49fd-4490-a566-0b388d98d19c" ], "Accept-Language": [ "en-US" @@ -211,7 +211,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -225,7 +225,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6777e986-fb31-4c5b-b83a-7b8b2e87bbad" + "6924c263-0828-48fa-8af8-9905e97688a8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -234,16 +234,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "d38371be-a102-434f-80d8-d9f5bac34d1a" + "4a99c5d5-4b4f-4182-a9b8-ebba795e9e12" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192907Z:d38371be-a102-434f-80d8-d9f5bac34d1a" + "WESTUS:20200721T163535Z:4a99c5d5-4b4f-4182-a9b8-ebba795e9e12" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:29:06 GMT" + "Tue, 21 Jul 2020 16:35:34 GMT" ], "Content-Length": [ "6975" @@ -255,17 +255,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"c79a38bd-3cc5-4e8e-a711-8b53562cd533\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MDgwL3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8168676c-6baa-4b21-8609-4975a90bb205" + "55bef473-4a6d-4ef7-ab22-ffa1e84124a5" ], "Accept-Language": [ "en-US" @@ -274,7 +274,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -288,7 +288,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cffe6bd9-d973-437c-b967-6f9068e61e65" + "f2d43a17-7af8-4857-a298-20ab530ea190" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -297,16 +297,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "ea93d991-33a3-4542-808c-32afb9a6ad05" + "d5fa4b63-5a83-4072-8184-f60e25fbc435" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192938Z:ea93d991-33a3-4542-808c-32afb9a6ad05" + "WESTUS:20200721T163606Z:d5fa4b63-5a83-4072-8184-f60e25fbc435" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:29:37 GMT" + "Tue, 21 Jul 2020 16:36:05 GMT" ], "Content-Length": [ "1960" @@ -318,17 +318,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"c79a38bd-3cc5-4e8e-a711-8b53562cd533\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MDgwL3NjaGVtYXMvYzc5YTM4YmQtM2NjNS00ZThlLWE3MTEtOGI1MzU2MmNkNTMzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2L3NjaGVtYXMvYWY1NGEwOTgtYjRkNS00NThlLWE5NzYtMjkyOGJjNTVjYTJlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cd3a5ed1-3f6c-4933-93ed-74da64ea97dc" + "58baaeb4-fbf8-453f-bcde-83ec288d6327" ], "Accept-Language": [ "en-US" @@ -337,7 +337,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -354,13 +354,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533?api-version=2019-12-01&asyncId=5eab2703a2ca601230023135&asyncCode=200" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e?api-version=2019-12-01&asyncId=5f171957a2ca600fe4c29696&asyncCode=200" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a1999860-cb65-4d2e-ad86-f473ecf639a4" + "5a70e26c-6626-4439-ae55-3126904b067f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -369,16 +369,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "a23912f7-8956-42da-ad28-73176d1936cb" + "e22c14e4-2231-44c1-997e-3358e3a2742b" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192907Z:a23912f7-8956-42da-ad28-73176d1936cb" + "WESTUS:20200721T163535Z:e22c14e4-2231-44c1-997e-3358e3a2742b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:29:07 GMT" + "Tue, 21 Jul 2020 16:35:35 GMT" ], "Expires": [ "-1" @@ -391,13 +391,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MDgwL3NjaGVtYXMvYzc5YTM4YmQtM2NjNS00ZThlLWE3MTEtOGI1MzU2MmNkNTMzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2L3NjaGVtYXMvYWY1NGEwOTgtYjRkNS00NThlLWE5NzYtMjkyOGJjNTVjYTJlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"contentType\": \"application/json\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "19acdeaa-7a8e-4256-84ba-ce23abeffb62" + "6d355e17-a1fe-45e7-9e27-cedeb06ea125" ], "If-Match": [ "*" @@ -409,7 +409,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,13 +426,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533?api-version=2019-12-01&asyncId=5eab2722a2ca601230023139&asyncCode=200" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e?api-version=2019-12-01&asyncId=5f171976a2ca600fe4c2969a&asyncCode=200" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "22b26e19-08d9-44a5-895f-8bc4228dfa3a" + "2f7a0d1d-0b85-41aa-b2f4-abd62bf3a3ae" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -441,16 +441,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "3a0b9682-122e-414f-aa03-571789351958" + "f534d69a-9f50-452c-a070-5d3113313a3d" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192938Z:3a0b9682-122e-414f-aa03-571789351958" + "WESTUS:20200721T163606Z:f534d69a-9f50-452c-a070-5d3113313a3d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:29:38 GMT" + "Tue, 21 Jul 2020 16:36:06 GMT" ], "Expires": [ "-1" @@ -463,8 +463,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533?api-version=2019-12-01&asyncId=5eab2703a2ca601230023135&asyncCode=200", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MDgwL3NjaGVtYXMvYzc5YTM4YmQtM2NjNS00ZThlLWE3MTEtOGI1MzU2MmNkNTMzP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjcwM2EyY2E2MDEyMzAwMjMxMzUmYXN5bmNDb2RlPTIwMA==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e?api-version=2019-12-01&asyncId=5f171957a2ca600fe4c29696&asyncCode=200", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2L3NjaGVtYXMvYWY1NGEwOTgtYjRkNS00NThlLWE5NzYtMjkyOGJjNTVjYTJlP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MTk1N2EyY2E2MDBmZTRjMjk2OTYmYXN5bmNDb2RlPTIwMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -472,7 +472,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -483,13 +483,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACiU=\"" + "\"AAAAAAAAPEg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "70d9b2ff-fab8-4af7-a7af-84cdbba13906" + "b5367885-39ff-47d1-a68d-ff164a3ccc77" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -498,16 +498,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "cd218525-6693-439c-8a8b-5f9b9f893cf5" + "24aa07b3-d6f8-4baf-991b-5ff520fed905" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192938Z:cd218525-6693-439c-8a8b-5f9b9f893cf5" + "WESTUS:20200721T163605Z:24aa07b3-d6f8-4baf-991b-5ff520fed905" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:29:37 GMT" + "Tue, 21 Jul 2020 16:36:05 GMT" ], "Content-Length": [ "1876" @@ -519,17 +519,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"c79a38bd-3cc5-4e8e-a711-8b53562cd533\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MDgwL3NjaGVtYXMvYzc5YTM4YmQtM2NjNS00ZThlLWE3MTEtOGI1MzU2MmNkNTMzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2L3NjaGVtYXMvYWY1NGEwOTgtYjRkNS00NThlLWE5NzYtMjkyOGJjNTVjYTJlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a95c6938-f0d8-4971-8c27-d483d187f50e" + "734cb0be-017f-4734-b84d-b314bbf8354a" ], "Accept-Language": [ "en-US" @@ -538,7 +538,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -549,13 +549,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACiU=\"" + "\"AAAAAAAAPEg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "37575852-d9e5-415b-bdea-5eeb91fd7565" + "d771cff9-b3b8-4f8c-9f19-59fe2e300e0e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -564,16 +564,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "249c4867-108c-42a2-9b88-166b62745d3f" + "7e290778-c2c6-4863-952a-4a3e099b3a12" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T192938Z:249c4867-108c-42a2-9b88-166b62745d3f" + "WESTUS:20200721T163605Z:7e290778-c2c6-4863-952a-4a3e099b3a12" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:29:37 GMT" + "Tue, 21 Jul 2020 16:36:05 GMT" ], "Content-Length": [ "1876" @@ -585,12 +585,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"c79a38bd-3cc5-4e8e-a711-8b53562cd533\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"properties\": {\r\n \"contentType\": \"application/vnd.ms-azure-apim.xsd+xml\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533?api-version=2019-12-01&asyncId=5eab2722a2ca601230023139&asyncCode=200", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MDgwL3NjaGVtYXMvYzc5YTM4YmQtM2NjNS00ZThlLWE3MTEtOGI1MzU2MmNkNTMzP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjcyMmEyY2E2MDEyMzAwMjMxMzkmYXN5bmNDb2RlPTIwMA==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e?api-version=2019-12-01&asyncId=5f171976a2ca600fe4c2969a&asyncCode=200", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2L3NjaGVtYXMvYWY1NGEwOTgtYjRkNS00NThlLWE5NzYtMjkyOGJjNTVjYTJlP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MTk3NmEyY2E2MDBmZTRjMjk2OWEmYXN5bmNDb2RlPTIwMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -598,7 +598,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -609,31 +609,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACiY=\"" + "\"AAAAAAAAPEk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f3d99851-2581-4840-8123-59aadba6aef2" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "772d1c63-8e08-469e-9372-1d5d871ce77e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], "x-ms-correlation-request-id": [ - "397a3ffb-e92b-46b3-8a17-8802824e2425" + "7754e847-9ae4-4d21-8dd6-554f29b9258a" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193008Z:397a3ffb-e92b-46b3-8a17-8802824e2425" + "WESTUS:20200721T163636Z:7754e847-9ae4-4d21-8dd6-554f29b9258a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:30:07 GMT" + "Tue, 21 Jul 2020 16:36:36 GMT" ], "Content-Length": [ "1855" @@ -645,17 +645,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080/schemas/c79a38bd-3cc5-4e8e-a711-8b53562cd533\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"c79a38bd-3cc5-4e8e-a711-8b53562cd533\",\r\n \"properties\": {\r\n \"contentType\": \"application/json\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"properties\": {\r\n \"contentType\": \"application/json\",\r\n \"document\": {\r\n \"value\": \"\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\r\\n \"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5080?deleteRevisions=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1MDgwP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346?deleteRevisions=true&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1034bf6d-3b70-47d7-b26d-007c1ffbdbb2" + "b85581d8-49c1-4a74-9b4b-b558343826f2" ], "If-Match": [ "*" @@ -667,7 +667,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -681,7 +681,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e6ef61b3-a4ea-4cb8-9e01-469b171a3ffa" + "5feb2283-10d2-4e17-b9ab-e60d334662fc" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -690,16 +690,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "5c38f321-68ad-490f-bc72-90d4f233a356" + "8f2daed4-7013-409f-ac45-c87030210b26" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193008Z:5c38f321-68ad-490f-bc72-90d4f233a356" + "WESTUS:20200721T163636Z:8f2daed4-7013-409f-ac45-c87030210b26" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:30:08 GMT" + "Tue, 21 Jul 2020 16:36:36 GMT" ], "Expires": [ "-1" @@ -714,8 +714,8 @@ ], "Names": { "": [ - "ps5080", - "ps4778" + "ps8346", + "ps6242" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetCrudTest.json index ced602e4089e..62007c549efa 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetCrudTest.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23e30f53-33bf-4840-8eed-8f56a2517425" + "8c310758-14d7-48ed-a8e0-13674e245f19" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -30,25 +30,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b70c1b68-c1ba-403e-8e7a-0e652fda0810" + "b9656ff4-d122-4980-9c27-3706b875d56b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11970" ], "x-ms-correlation-request-id": [ - "47ee6681-fcbe-470d-9540-8cc6a29cd09b" + "2ab4e086-dc69-4c3a-9d1a-33f004affb9c" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193820Z:47ee6681-fcbe-470d-9540-8cc6a29cd09b" + "WESTUS:20200721T164538Z:2ab4e086-dc69-4c3a-9d1a-33f004affb9c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:38:20 GMT" + "Tue, 21 Jul 2020 16:45:37 GMT" ], "Content-Length": [ "34" @@ -64,13 +64,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMjczMz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMTI3Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9644\",\r\n \"versionQueryName\": \"ps8873\",\r\n \"displayName\": \"ps2105\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3041\",\r\n \"versionQueryName\": \"ps264\",\r\n \"displayName\": \"ps9370\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0649c848-66cd-4e9d-83e4-8808d7376d78" + "7f2d894e-ee9a-4479-88b3-bdb4b76c9e67" ], "Accept-Language": [ "en-US" @@ -79,13 +79,13 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "156" + "155" ] }, "ResponseHeaders": { @@ -96,34 +96,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC8k=\"" + "\"AAAAAAAAPhU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5e002486-357e-4bf1-86a5-ad205ee0369b" + "f33f04fb-162b-4b6b-aedb-3aae69ef602d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1189" ], "x-ms-correlation-request-id": [ - "916a88da-c67f-4276-a895-fcbf0ce868d4" + "661d78b1-3e45-4247-83d8-a80da04c98f1" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193821Z:916a88da-c67f-4276-a895-fcbf0ce868d4" + "WESTUS:20200721T164538Z:661d78b1-3e45-4247-83d8-a80da04c98f1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:38:20 GMT" + "Tue, 21 Jul 2020 16:45:37 GMT" ], "Content-Length": [ - "449" + "448" ], "Content-Type": [ "application/json; charset=utf-8" @@ -132,17 +132,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps2733\",\r\n \"properties\": {\r\n \"displayName\": \"ps2105\",\r\n \"description\": \"ps9644\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps8873\",\r\n \"versionHeaderName\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps1273\",\r\n \"properties\": {\r\n \"displayName\": \"ps9370\",\r\n \"description\": \"ps3041\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps264\",\r\n \"versionHeaderName\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMjczMz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMTI3Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9644\",\r\n \"versionHeaderName\": \"ps7358\",\r\n \"displayName\": \"ps2105\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3041\",\r\n \"versionHeaderName\": \"ps9664\",\r\n \"displayName\": \"ps9370\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d8d3ec87-a212-40e3-806d-64b79f36fc3f" + "64f25056-f6fe-4657-bd1f-93ed3144da80" ], "If-Match": [ "*" @@ -154,7 +154,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -171,31 +171,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC8w=\"" + "\"AAAAAAAAPhg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4a7554ad-10df-488f-ad72-4e8b64cc3164" + "ce0b9145-a2ed-4e54-a357-cc0a88acae2a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1188" ], "x-ms-correlation-request-id": [ - "d00eb7a8-50c9-44cd-bd1c-617a88468177" + "c62c96c9-7eda-4989-9dea-fe15c551d77f" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193821Z:d00eb7a8-50c9-44cd-bd1c-617a88468177" + "WESTUS:20200721T164539Z:c62c96c9-7eda-4989-9dea-fe15c551d77f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:38:21 GMT" + "Tue, 21 Jul 2020 16:45:38 GMT" ], "Content-Length": [ "450" @@ -207,17 +207,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps2733\",\r\n \"properties\": {\r\n \"displayName\": \"ps2105\",\r\n \"description\": \"ps9644\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps7358\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps1273\",\r\n \"properties\": {\r\n \"displayName\": \"ps9370\",\r\n \"description\": \"ps3041\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps9664\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMjczMz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMTI3Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9339e9e-0e8c-4647-8197-a99f5f851462" + "20278d99-1d66-4065-b94d-89f5cac0c560" ], "Accept-Language": [ "en-US" @@ -226,7 +226,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -237,34 +237,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC8k=\"" + "\"AAAAAAAAPhU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e8863621-e31f-4faf-ae41-0e4d220186a9" + "7a904634-56b0-4319-bd53-3f895a700de2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11969" ], "x-ms-correlation-request-id": [ - "f2ccf9a6-0c0b-4764-bba7-ceb5c5d5f3f3" + "f13aad40-a73c-4cbb-b884-8368c41275e3" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193821Z:f2ccf9a6-0c0b-4764-bba7-ceb5c5d5f3f3" + "WESTUS:20200721T164538Z:f13aad40-a73c-4cbb-b884-8368c41275e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:38:20 GMT" + "Tue, 21 Jul 2020 16:45:38 GMT" ], "Content-Length": [ - "449" + "448" ], "Content-Type": [ "application/json; charset=utf-8" @@ -273,17 +273,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps2733\",\r\n \"properties\": {\r\n \"displayName\": \"ps2105\",\r\n \"description\": \"ps9644\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps8873\",\r\n \"versionHeaderName\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps1273\",\r\n \"properties\": {\r\n \"displayName\": \"ps9370\",\r\n \"description\": \"ps3041\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps264\",\r\n \"versionHeaderName\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMjczMz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMTI3Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1eaa885-d276-4e77-b03b-b820387f6328" + "ad6df4f9-395a-4561-9e04-7b03fc6b7bcf" ], "Accept-Language": [ "en-US" @@ -292,7 +292,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -303,31 +303,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC8w=\"" + "\"AAAAAAAAPhg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cbd52f17-936f-41ce-be34-3d8d1f421c4c" + "37ddc4e7-0766-42ef-906e-84bdd7ba9a61" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11968" ], "x-ms-correlation-request-id": [ - "12326a04-68f6-470a-8e79-716d6b7f20e2" + "9dbba547-78b5-4e41-a5ea-ed31347afc9e" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193821Z:12326a04-68f6-470a-8e79-716d6b7f20e2" + "WESTUS:20200721T164539Z:9dbba547-78b5-4e41-a5ea-ed31347afc9e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:38:21 GMT" + "Tue, 21 Jul 2020 16:45:38 GMT" ], "Content-Length": [ "450" @@ -339,17 +339,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps2733\",\r\n \"properties\": {\r\n \"displayName\": \"ps2105\",\r\n \"description\": \"ps9644\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps7358\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps1273\",\r\n \"properties\": {\r\n \"displayName\": \"ps9370\",\r\n \"description\": \"ps3041\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps9664\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4708?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0NzA4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"swaggerapifromFile\",\r\n \"value\": \"{\\r\\n \\\"x-comment\\\": \\\"This file was extended from /github.com/swagger-api/swagger-spec/blob/master/examples/v2.0/json/petstore-with-external-docs.json\\\",\\r\\n \\\"swagger\\\": \\\"2.0\\\",\\r\\n \\\"info\\\": {\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore Extensive\\\",\\r\\n \\\"description\\\": \\\"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\\\",\\r\\n \\\"termsOfService\\\": \\\"http://helloreverb.com/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"name\\\": \\\"Wordnik API Team\\\",\\r\\n \\\"email\\\": \\\"foo@example.com\\\",\\r\\n \\\"url\\\": \\\"http://madskristensen.net\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"MIT\\\",\\r\\n \\\"url\\\": \\\"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\\\"\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"host\\\": \\\"petstore.swagger.wordnik.com\\\",\\r\\n \\\"basePath\\\": \\\"/api\\\",\\r\\n \\\"schemes\\\": [\\r\\n \\\"http\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/mySamplePath?willbeignored={willbeignored}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid1\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyDateHeaderParam\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"description\\\": \\\"dummyDateHeaderParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyNotReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyNotReqQueryParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"dummyBodyParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\",\\r\\n \\\"example\\\": {\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"description\\\": \\\"sampleheader\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\" \\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/resourceWithFormData\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"resourceWithFormData desc\\\",\\r\\n \\\"operationId\\\": \\\"resourceWithFormDataPOST\\\",\\r\\n \\\"consumes\\\": [ \\\"multipart/form-data\\\" ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyFormDataParam\\\",\\r\\n \\\"in\\\": \\\"formData\\\",\\r\\n \\\"description\\\": \\\"dummyFormDataParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"sample response\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/mySamplePath2?definedQueryParam={definedQueryParam}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"produces\\\": [\\r\\n \\\"contenttype1\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid2\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyQueryParameterDef\\\"\\r\\n },\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyBodyParameterDef\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"$ref\\\": \\\"#/responses/dummyResponseDef\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets2?dummyParam={dummyParam}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Dummy description\\\",\\r\\n \\\"operationId\\\": \\\"dummyOperationId\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyParam desc\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns all pets from the system that the user has access to\\\",\\r\\n \\\"operationId\\\": \\\"findPets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"tags to filter by\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Creates a new pet in the store. Duplicates are allowed\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"Pet to add to the store\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/newPet\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets/{id}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns a user based on a single ID, if the user does not have access to the pet\\\",\\r\\n \\\"operationId\\\": \\\"findPetById\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\",\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to fetch\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"description\\\": \\\"deletes a single pet based on the ID supplied\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"description\\\": \\\"pet deleted\\\"\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"definitions\\\": {\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": {\\r\\n \\\"dummyBodyParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"definedBodyParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"title\\\": \\\"Example Schema\\\",\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"age\\\": {\\r\\n \\\"description\\\": \\\"Age in years\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"minimum\\\": 0\\r\\n }\\r\\n },\\r\\n \\\"required\\\": [ \\\"firstName\\\", \\\"lastName\\\" ]\\r\\n }\\r\\n },\\r\\n \\\"dummyQueryParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"definedQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"whateverformat\\\"\\r\\n }\\r\\n },\\r\\n \\\"responses\\\": {\\r\\n \\\"dummyResponseDef\\\": {\\r\\n \\\"description\\\": \\\"dummyResponseDef description\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n },\\r\\n \\\"header2\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"contenttype1\\\": \\\"contenttype1 example\\\",\\r\\n \\\"contenttype2\\\": \\\"contenttype2 example\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\\r\\n\\r\\n\",\r\n \"format\": \"swagger-json\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f61095df-1288-4a73-aaff-e1f1adc28fe2" + "5395a132-44d5-4e3a-961f-45e8562c50c9" ], "Accept-Language": [ "en-US" @@ -358,7 +358,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,31 +375,31 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4708?api-version=2019-12-01&asyncId=5eab292da2ca6012300231d1&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499?api-version=2019-12-01&asyncId=5f171bb3a2ca600fe4c29745&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "32c1a9dd-622f-48a4-ae4a-ada9b97fa575" + "214c6b8b-9fcf-4658-a3aa-4dc0fe296c6d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1187" ], "x-ms-correlation-request-id": [ - "b67c7aa2-04aa-4d9f-b95d-b4c94494d340" + "b7643132-6a82-41c2-83aa-aaa903958858" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193822Z:b67c7aa2-04aa-4d9f-b95d-b4c94494d340" + "WESTUS:20200721T164539Z:b7643132-6a82-41c2-83aa-aaa903958858" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:38:21 GMT" + "Tue, 21 Jul 2020 16:45:38 GMT" ], "Expires": [ "-1" @@ -412,8 +412,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4708?api-version=2019-12-01&asyncId=5eab292da2ca6012300231d1&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0NzA4P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjkyZGEyY2E2MDEyMzAwMjMxZDEmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499?api-version=2019-12-01&asyncId=5f171bb3a2ca600fe4c29745&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWJiM2EyY2E2MDBmZTRjMjk3NDUmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -421,7 +421,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -432,31 +432,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC88=\"" + "\"AAAAAAAAPhs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "db6ff1bd-6e6e-4d95-95d9-418f41575175" + "d02f8426-a996-465f-8818-c9f1ab79a6ba" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11967" ], "x-ms-correlation-request-id": [ - "f3941cf2-4d2b-440e-8c07-acd7177d031b" + "01fdcbbe-1308-4d5c-ba2e-05b8feb2daf1" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193852Z:f3941cf2-4d2b-440e-8c07-acd7177d031b" + "WESTUS:20200721T164610Z:01fdcbbe-1308-4d5c-ba2e-05b8feb2daf1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:38:51 GMT" + "Tue, 21 Jul 2020 16:46:09 GMT" ], "Content-Length": [ "884" @@ -468,17 +468,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4708\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4708\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8499\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4708?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0NzA4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a67ddf1-f16c-498e-ad4e-421569b40b02" + "db55bde6-f223-4564-be8d-0c026166b3fe" ], "Accept-Language": [ "en-US" @@ -487,7 +487,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -498,31 +498,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC88=\"" + "\"AAAAAAAAPhs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b32e9e81-82a4-4dd9-8860-341c460742ea" + "7d60a78d-f093-46cd-b790-ecb346c5dd33" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11966" ], "x-ms-correlation-request-id": [ - "49ff39ed-fa6a-4943-801a-abc1f5da920a" + "4b65159c-83a1-4949-b839-ff17c93acb8d" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193852Z:49ff39ed-fa6a-4943-801a-abc1f5da920a" + "WESTUS:20200721T164610Z:4b65159c-83a1-4949-b839-ff17c93acb8d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:38:51 GMT" + "Tue, 21 Jul 2020 16:46:10 GMT" ], "Content-Length": [ "884" @@ -534,17 +534,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4708\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4708\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8499\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4708%3Brev%3D1?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0NzA4JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499%3Brev%3D1?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NDk5JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"v1\",\r\n \"isCurrent\": true,\r\n \"apiVersionDescription\": \"ps9644\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733\",\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"v1\",\r\n \"isCurrent\": true,\r\n \"apiVersionDescription\": \"ps3041\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273\",\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "25e023d3-61de-45c5-a74c-bbf9376af61f" + "556c3896-79ad-422a-9a10-e7af1434135b" ], "If-Match": [ "*" @@ -556,7 +556,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -573,31 +573,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC+w=\"" + "\"AAAAAAAAPjg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3fdd99ca-a010-43af-9d33-57c1897e363e" + "78e4b627-bf8a-49bd-949c-12738cb31e73" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1186" ], "x-ms-correlation-request-id": [ - "052dbc60-e3fa-4cde-bde5-e519fb19fde4" + "64736a7e-fd92-4765-a1b3-7b6e661c99c9" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193853Z:052dbc60-e3fa-4cde-bde5-e519fb19fde4" + "WESTUS:20200721T164613Z:64736a7e-fd92-4765-a1b3-7b6e661c99c9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:38:52 GMT" + "Tue, 21 Jul 2020 16:46:13 GMT" ], "Content-Length": [ "1522" @@ -609,17 +609,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4708\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps4708\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"v1\",\r\n \"apiVersionDescription\": \"ps9644\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733\",\r\n \"apiVersionSet\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733\",\r\n \"name\": \"ps2105\",\r\n \"description\": \"ps9644\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps7358\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8499\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"v1\",\r\n \"apiVersionDescription\": \"ps3041\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273\",\r\n \"apiVersionSet\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273\",\r\n \"name\": \"ps9370\",\r\n \"description\": \"ps3041\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps9664\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4708?deleteRevisions=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0NzA4P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499?deleteRevisions=true&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NDk5P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e6c0e74-3ede-4592-9e33-8714f67b5773" + "11e9662d-1ba1-41cf-9652-a6504b22053f" ], "If-Match": [ "*" @@ -631,7 +631,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -645,25 +645,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e2efef60-9788-42d9-b6b0-a8019d9d7c0b" + "616a2553-1c37-4891-b12f-777fbd2c40db" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14989" ], "x-ms-correlation-request-id": [ - "e103550a-be2c-4cf1-aa46-be8f30067434" + "18cb5863-ce32-4a9e-895a-689678ea8b23" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193853Z:e103550a-be2c-4cf1-aa46-be8f30067434" + "WESTUS:20200721T164614Z:18cb5863-ce32-4a9e-895a-689678ea8b23" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:38:52 GMT" + "Tue, 21 Jul 2020 16:46:14 GMT" ], "Expires": [ "-1" @@ -676,13 +676,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps2733?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMjczMz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMTI3Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6196d5f0-3bf1-47ad-96b5-5b2ba99cf6e7" + "a0e59a3f-af48-44a5-9212-2d91444bfa4d" ], "If-Match": [ "*" @@ -694,7 +694,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -708,25 +708,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b22c0298-1360-477e-8ea4-e98bf78157d9" + "9fd62748-eb60-42c9-98c3-4ac492553590" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14988" ], "x-ms-correlation-request-id": [ - "da8b3ba0-2ad0-4c9a-bd0a-3fcf34340d17" + "aa0c3835-c060-4195-80c3-9d58beed74c8" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193853Z:da8b3ba0-2ad0-4c9a-bd0a-3fcf34340d17" + "WESTUS:20200721T164614Z:aa0c3835-c060-4195-80c3-9d58beed74c8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:38:52 GMT" + "Tue, 21 Jul 2020 16:46:14 GMT" ], "Expires": [ "-1" @@ -738,12 +738,12 @@ ], "Names": { "": [ - "ps4708", - "ps2733", - "ps2105", - "ps8873", - "ps9644", - "ps7358" + "ps8499", + "ps1273", + "ps9370", + "ps264", + "ps3041", + "ps9664" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetImportCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetImportCrudTest.json index 411798ad562d..61311621c8b4 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetImportCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ApiVersionSetImportCrudTest.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38813e84-c962-4e2b-a5fe-2a14bc5a3fc8" + "1984d2aa-7ef4-4591-874e-50da75ada028" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -30,7 +30,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "954b94af-b8cc-4fa3-bf1e-4b7e20b0fe55" + "70ff7ded-6b1c-4640-b5af-f7be3f1faed2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -39,16 +39,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "3d3afd4a-a1d8-45e7-95b9-012f14faf757" + "7126bc90-391c-4092-9515-b444ee84727e" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193930Z:3d3afd4a-a1d8-45e7-95b9-012f14faf757" + "WESTUS:20200721T164657Z:7126bc90-391c-4092-9515-b444ee84727e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:39:29 GMT" + "Tue, 21 Jul 2020 16:46:56 GMT" ], "Content-Length": [ "34" @@ -64,13 +64,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps5527?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNTUyNz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzODYxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3334\",\r\n \"versionQueryName\": \"ps1333\",\r\n \"displayName\": \"ps6510\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6535\",\r\n \"versionQueryName\": \"ps5186\",\r\n \"displayName\": \"ps7953\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0abee327-2930-49c2-9e79-628458d106cd" + "efe83986-461c-4209-9e1e-3fc497b57e30" ], "Accept-Language": [ "en-US" @@ -79,7 +79,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC/4=\"" + "\"AAAAAAAAPko=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1bf74ce0-ab20-4aa7-90a3-0e97a0dab6d6" + "51a8833a-cac9-4e6f-b1de-25b77444ba79" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -111,19 +111,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "ef8bd240-6736-4b74-814f-31c75fb6f3c1" + "72cff134-3fd4-49f9-86f7-db9164c8804e" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193930Z:ef8bd240-6736-4b74-814f-31c75fb6f3c1" + "WESTUS:20200721T164657Z:72cff134-3fd4-49f9-86f7-db9164c8804e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:39:29 GMT" + "Tue, 21 Jul 2020 16:46:56 GMT" ], "Content-Length": [ - "449" + "447" ], "Content-Type": [ "application/json; charset=utf-8" @@ -132,17 +132,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps5527\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps5527\",\r\n \"properties\": {\r\n \"displayName\": \"ps6510\",\r\n \"description\": \"ps3334\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps1333\",\r\n \"versionHeaderName\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps861\",\r\n \"properties\": {\r\n \"displayName\": \"ps7953\",\r\n \"description\": \"ps6535\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps5186\",\r\n \"versionHeaderName\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps5527?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNTUyNz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzODYxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3334\",\r\n \"versionHeaderName\": \"ps9561\",\r\n \"displayName\": \"ps6510\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6535\",\r\n \"versionHeaderName\": \"ps9791\",\r\n \"displayName\": \"ps7953\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "22c2811c-5866-4480-8a88-c35a14f8d49e" + "8ef8d370-f271-490d-97fd-cb315227d3c9" ], "If-Match": [ "*" @@ -154,7 +154,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -171,13 +171,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADAI=\"" + "\"AAAAAAAAPk0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "77e66941-1477-46e8-9148-9429e2666b5b" + "a3da2b96-cf35-4a76-bb8c-77fec79af501" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -186,19 +186,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "d332eac4-45da-4b57-a8c0-b0b618f2e7ac" + "c92d3248-83f0-49f7-bccd-79d20a1f5946" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193930Z:d332eac4-45da-4b57-a8c0-b0b618f2e7ac" + "WESTUS:20200721T164658Z:c92d3248-83f0-49f7-bccd-79d20a1f5946" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:39:30 GMT" + "Tue, 21 Jul 2020 16:46:57 GMT" ], "Content-Length": [ - "450" + "448" ], "Content-Type": [ "application/json; charset=utf-8" @@ -207,17 +207,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps5527\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps5527\",\r\n \"properties\": {\r\n \"displayName\": \"ps6510\",\r\n \"description\": \"ps3334\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps9561\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps861\",\r\n \"properties\": {\r\n \"displayName\": \"ps7953\",\r\n \"description\": \"ps6535\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps9791\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps5527?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNTUyNz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzODYxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e44afbd3-c356-456a-a9af-71236f3d7ec0" + "e88c6dc9-7bf2-4dbe-bf18-c2f879f1dd26" ], "Accept-Language": [ "en-US" @@ -226,7 +226,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -237,13 +237,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC/4=\"" + "\"AAAAAAAAPko=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "56735e36-7fdf-486c-ac2d-a6d9f3bb1c6c" + "8f2540d1-616d-4ebf-9ac4-455f4c8b55d3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -252,19 +252,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "f74c28a5-98e0-465a-bf88-723e02606875" + "62458d69-a2f1-43cc-930c-282af4f5ec62" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193930Z:f74c28a5-98e0-465a-bf88-723e02606875" + "WESTUS:20200721T164657Z:62458d69-a2f1-43cc-930c-282af4f5ec62" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:39:29 GMT" + "Tue, 21 Jul 2020 16:46:57 GMT" ], "Content-Length": [ - "449" + "447" ], "Content-Type": [ "application/json; charset=utf-8" @@ -273,17 +273,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps5527\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps5527\",\r\n \"properties\": {\r\n \"displayName\": \"ps6510\",\r\n \"description\": \"ps3334\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps1333\",\r\n \"versionHeaderName\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps861\",\r\n \"properties\": {\r\n \"displayName\": \"ps7953\",\r\n \"description\": \"ps6535\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps5186\",\r\n \"versionHeaderName\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps5527?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNTUyNz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzODYxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a9b0d3c-69f5-4360-b624-c0cec0ac92ab" + "a108af89-7d7a-4dbe-8b27-8c08adc45558" ], "Accept-Language": [ "en-US" @@ -292,7 +292,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -303,13 +303,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADAI=\"" + "\"AAAAAAAAPk0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "86d5821a-7e5f-4dba-be82-3572b13947d8" + "7cc12869-eaec-4bc2-a373-85c05abf47ce" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -318,19 +318,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "888790d4-1ce3-4b25-a608-94621b83ea9f" + "42c631c6-b474-4a13-adc2-3b6df68ba2e1" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193930Z:888790d4-1ce3-4b25-a608-94621b83ea9f" + "WESTUS:20200721T164658Z:42c631c6-b474-4a13-adc2-3b6df68ba2e1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:39:30 GMT" + "Tue, 21 Jul 2020 16:46:57 GMT" ], "Content-Length": [ - "450" + "448" ], "Content-Type": [ "application/json; charset=utf-8" @@ -339,17 +339,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps5527\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps5527\",\r\n \"properties\": {\r\n \"displayName\": \"ps6510\",\r\n \"description\": \"ps3334\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps9561\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps861\",\r\n \"properties\": {\r\n \"displayName\": \"ps7953\",\r\n \"description\": \"ps6535\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps9791\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7573?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTczP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9711?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/apiVersionSets/ps5527\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"value\": \"{\\r\\n \\\"x-comment\\\": \\\"This file was extended from /github.com/swagger-api/swagger-spec/blob/master/examples/v2.0/json/petstore-with-external-docs.json\\\",\\r\\n \\\"swagger\\\": \\\"2.0\\\",\\r\\n \\\"info\\\": {\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore Extensive\\\",\\r\\n \\\"description\\\": \\\"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\\\",\\r\\n \\\"termsOfService\\\": \\\"http://helloreverb.com/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"name\\\": \\\"Wordnik API Team\\\",\\r\\n \\\"email\\\": \\\"foo@example.com\\\",\\r\\n \\\"url\\\": \\\"http://madskristensen.net\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"MIT\\\",\\r\\n \\\"url\\\": \\\"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\\\"\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"host\\\": \\\"petstore.swagger.wordnik.com\\\",\\r\\n \\\"basePath\\\": \\\"/api\\\",\\r\\n \\\"schemes\\\": [\\r\\n \\\"http\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/mySamplePath?willbeignored={willbeignored}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid1\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyDateHeaderParam\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"description\\\": \\\"dummyDateHeaderParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyNotReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyNotReqQueryParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"dummyBodyParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\",\\r\\n \\\"example\\\": {\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"description\\\": \\\"sampleheader\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\" \\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/resourceWithFormData\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"resourceWithFormData desc\\\",\\r\\n \\\"operationId\\\": \\\"resourceWithFormDataPOST\\\",\\r\\n \\\"consumes\\\": [ \\\"multipart/form-data\\\" ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyFormDataParam\\\",\\r\\n \\\"in\\\": \\\"formData\\\",\\r\\n \\\"description\\\": \\\"dummyFormDataParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"sample response\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/mySamplePath2?definedQueryParam={definedQueryParam}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"produces\\\": [\\r\\n \\\"contenttype1\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid2\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyQueryParameterDef\\\"\\r\\n },\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyBodyParameterDef\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"$ref\\\": \\\"#/responses/dummyResponseDef\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets2?dummyParam={dummyParam}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Dummy description\\\",\\r\\n \\\"operationId\\\": \\\"dummyOperationId\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyParam desc\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns all pets from the system that the user has access to\\\",\\r\\n \\\"operationId\\\": \\\"findPets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"tags to filter by\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Creates a new pet in the store. Duplicates are allowed\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"Pet to add to the store\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/newPet\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets/{id}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns a user based on a single ID, if the user does not have access to the pet\\\",\\r\\n \\\"operationId\\\": \\\"findPetById\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\",\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to fetch\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"description\\\": \\\"deletes a single pet based on the ID supplied\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"description\\\": \\\"pet deleted\\\"\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"definitions\\\": {\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": {\\r\\n \\\"dummyBodyParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"definedBodyParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"title\\\": \\\"Example Schema\\\",\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"age\\\": {\\r\\n \\\"description\\\": \\\"Age in years\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"minimum\\\": 0\\r\\n }\\r\\n },\\r\\n \\\"required\\\": [ \\\"firstName\\\", \\\"lastName\\\" ]\\r\\n }\\r\\n },\\r\\n \\\"dummyQueryParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"definedQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"whateverformat\\\"\\r\\n }\\r\\n },\\r\\n \\\"responses\\\": {\\r\\n \\\"dummyResponseDef\\\": {\\r\\n \\\"description\\\": \\\"dummyResponseDef description\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n },\\r\\n \\\"header2\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"contenttype1\\\": \\\"contenttype1 example\\\",\\r\\n \\\"contenttype2\\\": \\\"contenttype2 example\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\\r\\n\\r\\n\",\r\n \"format\": \"swagger-json\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/apiVersionSets/ps861\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"value\": \"{\\r\\n \\\"x-comment\\\": \\\"This file was extended from /github.com/swagger-api/swagger-spec/blob/master/examples/v2.0/json/petstore-with-external-docs.json\\\",\\r\\n \\\"swagger\\\": \\\"2.0\\\",\\r\\n \\\"info\\\": {\\r\\n \\\"version\\\": \\\"1.0.0\\\",\\r\\n \\\"title\\\": \\\"Swagger Petstore Extensive\\\",\\r\\n \\\"description\\\": \\\"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\\\",\\r\\n \\\"termsOfService\\\": \\\"http://helloreverb.com/terms/\\\",\\r\\n \\\"contact\\\": {\\r\\n \\\"name\\\": \\\"Wordnik API Team\\\",\\r\\n \\\"email\\\": \\\"foo@example.com\\\",\\r\\n \\\"url\\\": \\\"http://madskristensen.net\\\"\\r\\n },\\r\\n \\\"license\\\": {\\r\\n \\\"name\\\": \\\"MIT\\\",\\r\\n \\\"url\\\": \\\"http://github.com/gruntjs/grunt/blob/master/LICENSE-MIT\\\"\\r\\n }\\r\\n },\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"host\\\": \\\"petstore.swagger.wordnik.com\\\",\\r\\n \\\"basePath\\\": \\\"/api\\\",\\r\\n \\\"schemes\\\": [\\r\\n \\\"http\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"paths\\\": {\\r\\n \\\"/mySamplePath?willbeignored={willbeignored}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid1\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyDateHeaderParam\\\",\\r\\n \\\"in\\\": \\\"header\\\",\\r\\n \\\"description\\\": \\\"dummyDateHeaderParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"date\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyNotReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyNotReqQueryParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"dummyBodyParam description\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\",\\r\\n \\\"example\\\": {\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"description\\\": \\\"sampleheader\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"application/json\\\": {\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\" \\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/resourceWithFormData\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"resourceWithFormData desc\\\",\\r\\n \\\"operationId\\\": \\\"resourceWithFormDataPOST\\\",\\r\\n \\\"consumes\\\": [ \\\"multipart/form-data\\\" ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyFormDataParam\\\",\\r\\n \\\"in\\\": \\\"formData\\\",\\r\\n \\\"description\\\": \\\"dummyFormDataParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"dummyReqQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyReqQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"sample response\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/mySamplePath2?definedQueryParam={definedQueryParam}\\\": {\\r\\n \\\"post\\\": {\\r\\n \\\"produces\\\": [\\r\\n \\\"contenttype1\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"description\\\": \\\"Dummy desc\\\",\\r\\n \\\"operationId\\\": \\\"dummyid2\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyQueryParameterDef\\\"\\r\\n },\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/parameters/dummyBodyParameterDef\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"$ref\\\": \\\"#/responses/dummyResponseDef\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets2?dummyParam={dummyParam}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Dummy description\\\",\\r\\n \\\"operationId\\\": \\\"dummyOperationId\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"dummyParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"dummyParam desc\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns all pets from the system that the user has access to\\\",\\r\\n \\\"operationId\\\": \\\"findPets\\\",\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\"\\r\\n ],\\r\\n \\\"consumes\\\": [\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"tags\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"tags to filter by\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"collectionFormat\\\": \\\"csv\\\"\\r\\n },\\r\\n {\\r\\n \\\"name\\\": \\\"limit\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"maximum number of results to return\\\",\\r\\n \\\"required\\\": false,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"type\\\": \\\"array\\\",\\r\\n \\\"items\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"post\\\": {\\r\\n \\\"description\\\": \\\"Creates a new pet in the store. Duplicates are allowed\\\",\\r\\n \\\"operationId\\\": \\\"addPet\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"pet\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"Pet to add to the store\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/newPet\\\"\\r\\n }\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"/pets/{id}\\\": {\\r\\n \\\"get\\\": {\\r\\n \\\"description\\\": \\\"Returns a user based on a single ID, if the user does not have access to the pet\\\",\\r\\n \\\"operationId\\\": \\\"findPetById\\\",\\r\\n \\\"produces\\\": [\\r\\n \\\"application/json\\\",\\r\\n \\\"application/xml\\\",\\r\\n \\\"text/xml\\\",\\r\\n \\\"text/html\\\"\\r\\n ],\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to fetch\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"200\\\": {\\r\\n \\\"description\\\": \\\"pet response\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n }\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"delete\\\": {\\r\\n \\\"description\\\": \\\"deletes a single pet based on the ID supplied\\\",\\r\\n \\\"operationId\\\": \\\"deletePet\\\",\\r\\n \\\"parameters\\\": [\\r\\n {\\r\\n \\\"name\\\": \\\"id\\\",\\r\\n \\\"in\\\": \\\"path\\\",\\r\\n \\\"description\\\": \\\"ID of pet to delete\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n ],\\r\\n \\\"responses\\\": {\\r\\n \\\"204\\\": {\\r\\n \\\"description\\\": \\\"pet deleted\\\"\\r\\n },\\r\\n \\\"default\\\": {\\r\\n \\\"description\\\": \\\"unexpected error\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/errorModel\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"definitions\\\": {\\r\\n \\\"pet\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"id\\\",\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"externalDocs\\\": {\\r\\n \\\"description\\\": \\\"find more info here\\\",\\r\\n \\\"url\\\": \\\"https://helloreverb.com/about\\\"\\r\\n },\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n },\\r\\n \\\"name\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"tag\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"newPet\\\": {\\r\\n \\\"allOf\\\": [\\r\\n {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\r\\n \\\"name\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"id\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n ]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\r\\n \\\"code\\\",\\r\\n \\\"message\\\"\\r\\n ],\\r\\n \\\"properties\\\": {\\r\\n \\\"code\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int32\\\"\\r\\n },\\r\\n \\\"message\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n },\\r\\n \\\"parameters\\\": {\\r\\n \\\"dummyBodyParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedBodyParam\\\",\\r\\n \\\"in\\\": \\\"body\\\",\\r\\n \\\"description\\\": \\\"definedBodyParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"schema\\\": {\\r\\n \\\"title\\\": \\\"Example Schema\\\",\\r\\n \\\"type\\\": \\\"object\\\",\\r\\n \\\"properties\\\": {\\r\\n \\\"firstName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"lastName\\\": {\\r\\n \\\"type\\\": \\\"string\\\"\\r\\n },\\r\\n \\\"age\\\": {\\r\\n \\\"description\\\": \\\"Age in years\\\",\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"minimum\\\": 0\\r\\n }\\r\\n },\\r\\n \\\"required\\\": [ \\\"firstName\\\", \\\"lastName\\\" ]\\r\\n }\\r\\n },\\r\\n \\\"dummyQueryParameterDef\\\": {\\r\\n \\\"name\\\": \\\"definedQueryParam\\\",\\r\\n \\\"in\\\": \\\"query\\\",\\r\\n \\\"description\\\": \\\"definedQueryParam description\\\",\\r\\n \\\"required\\\": true,\\r\\n \\\"type\\\": \\\"string\\\",\\r\\n \\\"format\\\": \\\"whateverformat\\\"\\r\\n }\\r\\n },\\r\\n \\\"responses\\\": {\\r\\n \\\"dummyResponseDef\\\": {\\r\\n \\\"description\\\": \\\"dummyResponseDef description\\\",\\r\\n \\\"schema\\\": {\\r\\n \\\"$ref\\\": \\\"#/definitions/pet\\\"\\r\\n },\\r\\n \\\"headers\\\": {\\r\\n \\\"header1\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n },\\r\\n \\\"header2\\\": {\\r\\n \\\"type\\\": \\\"integer\\\"\\r\\n }\\r\\n },\\r\\n \\\"examples\\\": {\\r\\n \\\"contenttype1\\\": \\\"contenttype1 example\\\",\\r\\n \\\"contenttype2\\\": \\\"contenttype2 example\\\"\\r\\n }\\r\\n }\\r\\n }\\r\\n}\\r\\n\\r\\n\",\r\n \"format\": \"swagger-json\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f17c46c1-3ec2-4331-bee6-d867d57f453f" + "6c6e3be8-fb5e-4c3b-b704-62c5dcab5aba" ], "Accept-Language": [ "en-US" @@ -358,13 +358,13 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "18306" + "18305" ] }, "ResponseHeaders": { @@ -375,13 +375,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7573?api-version=2019-12-01&asyncId=5eab2973a2ca6012300231e1&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9711?api-version=2019-12-01&asyncId=5f171c02a2ca600fe4c29755&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3a3e3cca-df04-459d-93bc-e5a4afb66af5" + "cd2d1573-1ac7-4a40-945e-3f32fadebc41" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -390,16 +390,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "1edb63a9-48d2-4522-a80b-c86aacbe9e38" + "c06573db-aa00-43e7-969b-bf5427b091a0" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193931Z:1edb63a9-48d2-4522-a80b-c86aacbe9e38" + "WESTUS:20200721T164658Z:c06573db-aa00-43e7-969b-bf5427b091a0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:39:30 GMT" + "Tue, 21 Jul 2020 16:46:57 GMT" ], "Expires": [ "-1" @@ -412,8 +412,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7573?api-version=2019-12-01&asyncId=5eab2973a2ca6012300231e1&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTczP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjk3M2EyY2E2MDEyMzAwMjMxZTEmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9711?api-version=2019-12-01&asyncId=5f171c02a2ca600fe4c29755&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzExP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWMwMmEyY2E2MDBmZTRjMjk3NTUmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -421,7 +421,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -432,13 +432,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADAU=\"" + "\"AAAAAAAAPlA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d1cb631b-c3b1-429f-9027-e3cb647045a6" + "b20c0d15-3b92-4074-bac6-79da700c4d0b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -447,19 +447,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "4f93bda4-91b9-4776-8795-1f04170e9b58" + "08c40706-af62-46b6-be2e-a56745600a5d" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194001Z:4f93bda4-91b9-4776-8795-1f04170e9b58" + "WESTUS:20200721T164729Z:08c40706-af62-46b6-be2e-a56745600a5d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:00 GMT" + "Tue, 21 Jul 2020 16:47:28 GMT" ], "Content-Length": [ - "1102" + "1101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -468,17 +468,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7573\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7573\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps5527\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9711\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9711\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7573?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTczP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9711?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "66d86516-8049-4398-95ea-e44565a40e1e" + "fa45eafb-1683-4ad0-83c1-ce92eb4c45a2" ], "Accept-Language": [ "en-US" @@ -487,7 +487,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -498,13 +498,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADAU=\"" + "\"AAAAAAAAPlA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4ce4a274-e8f0-4662-b5ea-741216f59c9d" + "5ed07e1d-fef9-4fdb-96db-13e52486efe2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -513,19 +513,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "5a1e66d1-736d-4886-8043-c72891c6d852" + "24369b44-5d66-41f4-804b-25a9e538956b" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194001Z:5a1e66d1-736d-4886-8043-c72891c6d852" + "WESTUS:20200721T164729Z:24369b44-5d66-41f4-804b-25a9e538956b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:00 GMT" + "Tue, 21 Jul 2020 16:47:28 GMT" ], "Content-Length": [ - "1102" + "1101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -534,17 +534,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7573\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7573\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps5527\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9711\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9711\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"A sample API that uses a petstore as an example to demonstrate features in the swagger-2.0 specification\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerapifromFile\",\r\n \"protocols\": [\r\n \"http\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7573?deleteRevisions=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTczP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9711?deleteRevisions=true&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzExP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87b9df47-c9be-4370-946a-623961967a59" + "727be2f8-6013-4d39-acd1-8ced6c2b702c" ], "If-Match": [ "*" @@ -556,7 +556,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -570,7 +570,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0b5b14f4-882c-4d31-a7f1-72ada9498531" + "49d5face-825d-4f05-a8b7-7515bcd31e7e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -579,16 +579,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "a1c892ce-3dda-49a1-8d7c-ff92bb4aab00" + "dc34ae0a-30c6-456f-adac-d8f970ce0c0b" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194001Z:a1c892ce-3dda-49a1-8d7c-ff92bb4aab00" + "WESTUS:20200721T164729Z:dc34ae0a-30c6-456f-adac-d8f970ce0c0b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:01 GMT" + "Tue, 21 Jul 2020 16:47:28 GMT" ], "Expires": [ "-1" @@ -601,13 +601,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps5527?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNTUyNz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzODYxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c16e86f-b8bb-4051-9fcd-784667f9adf8" + "041541bf-e8e0-4886-9ba8-a36842d63014" ], "If-Match": [ "*" @@ -619,7 +619,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -633,7 +633,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "46ffd806-8155-46af-aa4e-52738ed3ec1c" + "ecccc1c0-3918-4ccc-9022-ac128682e1b3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -642,16 +642,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "7e7f7ace-339a-45e7-8e18-8883ac857a0a" + "01389231-70c9-4bd0-946e-9f88442c0f63" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194001Z:7e7f7ace-339a-45e7-8e18-8883ac857a0a" + "WESTUS:20200721T164729Z:01389231-70c9-4bd0-946e-9f88442c0f63" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:01 GMT" + "Tue, 21 Jul 2020 16:47:28 GMT" ], "Expires": [ "-1" @@ -663,12 +663,12 @@ ], "Names": { "": [ - "ps7573", - "ps5527", - "ps6510", - "ps1333", - "ps3334", - "ps9561" + "ps9711", + "ps861", + "ps7953", + "ps5186", + "ps6535", + "ps9791" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/AuthorizationServerCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/AuthorizationServerCrudTest.json index 89ac51e4e889..3874fcd3a460 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/AuthorizationServerCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/AuthorizationServerCrudTest.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35dc53b7-53af-40a7-9654-c731c7cfe2f2" + "6102d34d-6d43-4232-a993-16868972fac8" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -30,7 +30,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1820bc9e-ea86-49fd-99e2-c63cab548e7b" + "83dbdf70-3ac0-42b6-aa32-8ac71e5dfa60" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -39,16 +39,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "a2652beb-1989-4b28-ae74-a3ec975ea0bf" + "15456bac-2e03-4191-b669-9098b8bfe80c" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193328Z:a2652beb-1989-4b28-ae74-a3ec975ea0bf" + "WESTUS:20200721T164040Z:15456bac-2e03-4191-b669-9098b8bfe80c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:28 GMT" + "Tue, 21 Jul 2020 16:40:39 GMT" ], "Content-Length": [ "34" @@ -64,13 +64,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzMTU2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Nz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9946\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname\",\r\n \"value\": \"tokenvalue\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"ps7747\",\r\n \"bearerTokenSendingMethods\": [\r\n \"AuthorizationHeader\",\r\n \"Query\"\r\n ],\r\n \"resourceOwnerUsername\": \"ps5925\",\r\n \"resourceOwnerPassword\": \"ps9473\",\r\n \"displayName\": \"ps1509\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"grantTypes\": [\r\n \"AuthorizationCode\",\r\n \"Implicit\",\r\n \"ResourceOwnerPassword\"\r\n ],\r\n \"clientId\": \"ps1260\",\r\n \"clientSecret\": \"ps4666\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1840\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname\",\r\n \"value\": \"tokenvalue\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"ps6347\",\r\n \"bearerTokenSendingMethods\": [\r\n \"AuthorizationHeader\",\r\n \"Query\"\r\n ],\r\n \"resourceOwnerUsername\": \"ps3959\",\r\n \"resourceOwnerPassword\": \"ps4974\",\r\n \"displayName\": \"ps164\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"grantTypes\": [\r\n \"AuthorizationCode\",\r\n \"Implicit\",\r\n \"ResourceOwnerPassword\"\r\n ],\r\n \"clientId\": \"ps8669\",\r\n \"clientSecret\": \"ps3974\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "947889dc-2dc7-461f-88ae-aad1e5b592d4" + "3b6eefd2-c76f-49be-a6b3-a768f3acfa98" ], "Accept-Language": [ "en-US" @@ -79,13 +79,13 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "902" + "901" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACp0=\"" + "\"AAAAAAAAPMg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4abe965d-de78-4d5e-be3b-c81bb1f07ac6" + "fcecb029-97b4-4453-824f-818f6978fc3d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -111,19 +111,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "13bfbb12-3863-4ca7-82b7-d1c817ffc6f4" + "c2251aba-aa3b-4cfe-861f-423accb6e649" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193329Z:13bfbb12-3863-4ca7-82b7-d1c817ffc6f4" + "WESTUS:20200721T164041Z:c2251aba-aa3b-4cfe-861f-423accb6e649" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:28 GMT" + "Tue, 21 Jul 2020 16:40:40 GMT" ], "Content-Length": [ - "1173" + "1174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -132,17 +132,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps156\",\r\n \"properties\": {\r\n \"displayName\": \"ps1509\",\r\n \"description\": \"ps9946\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname\",\r\n \"value\": \"tokenvalue\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"ps7747\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"resourceOwnerPassword\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientId\": \"ps1260\",\r\n \"clientSecret\": \"ps4666\",\r\n \"resourceOwnerUsername\": \"ps5925\",\r\n \"resourceOwnerPassword\": \"ps9473\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps6087\",\r\n \"properties\": {\r\n \"displayName\": \"ps164\",\r\n \"description\": \"ps1840\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname\",\r\n \"value\": \"tokenvalue\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"ps6347\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"resourceOwnerPassword\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientId\": \"ps8669\",\r\n \"clientSecret\": \"ps3974\",\r\n \"resourceOwnerUsername\": \"ps3959\",\r\n \"resourceOwnerPassword\": \"ps4974\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzMTU2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Nz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5dc4140e-23b2-4037-9585-1c96bd69e981" + "7556b48b-d23f-4ba9-8f79-faf4518ea2fd" ], "Accept-Language": [ "en-US" @@ -151,7 +151,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -162,13 +162,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACp0=\"" + "\"AAAAAAAAPMg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "652a8914-709f-41c9-a3e6-5609be6d5900" + "8fc8f3ab-0af9-451a-876f-5783d282d2bf" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,19 +177,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "439f4648-2369-4c3e-907b-1ed817781d9e" + "4628713b-f23f-44b4-adea-e0b67a442bd0" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193329Z:439f4648-2369-4c3e-907b-1ed817781d9e" + "WESTUS:20200721T164041Z:4628713b-f23f-44b4-adea-e0b67a442bd0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:29 GMT" + "Tue, 21 Jul 2020 16:40:40 GMT" ], "Content-Length": [ - "1142" + "1143" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,17 +198,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps156\",\r\n \"properties\": {\r\n \"displayName\": \"ps1509\",\r\n \"description\": \"ps9946\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname\",\r\n \"value\": \"tokenvalue\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"ps7747\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"resourceOwnerPassword\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientId\": \"ps1260\",\r\n \"resourceOwnerUsername\": \"ps5925\",\r\n \"resourceOwnerPassword\": \"ps9473\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps6087\",\r\n \"properties\": {\r\n \"displayName\": \"ps164\",\r\n \"description\": \"ps1840\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/reg\",\r\n \"authorizationEndpoint\": \"https://contoso.com/auth\",\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname\",\r\n \"value\": \"tokenvalue\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"ps6347\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"resourceOwnerPassword\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientId\": \"ps8669\",\r\n \"resourceOwnerUsername\": \"ps3959\",\r\n \"resourceOwnerPassword\": \"ps4974\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzMTU2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Nz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b6f6bbc-d599-493f-82bb-ef2f3e3bb512" + "c762e4bc-bf3a-4f75-99d7-bf680135c67e" ], "Accept-Language": [ "en-US" @@ -217,7 +217,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -228,13 +228,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACp4=\"" + "\"AAAAAAAAPMk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "462b3019-197e-4164-8c18-939fff40c42f" + "86e346fa-8917-40dd-9105-08612a1be831" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -243,19 +243,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "5df97a4e-e23b-4599-b191-62993162a56f" + "eab6dc79-8c72-412e-80c5-16ae5c0c9a59" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193330Z:5df97a4e-e23b-4599-b191-62993162a56f" + "WESTUS:20200721T164042Z:eab6dc79-8c72-412e-80c5-16ae5c0c9a59" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:29 GMT" + "Tue, 21 Jul 2020 16:40:41 GMT" ], "Content-Length": [ - "1115" + "1118" ], "Content-Type": [ "application/json; charset=utf-8" @@ -264,17 +264,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps156\",\r\n \"properties\": {\r\n \"displayName\": \"ps239\",\r\n \"description\": \"ps3740\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/regv2\",\r\n \"authorizationEndpoint\": \"https://contoso.com/authv2\",\r\n \"authorizationMethods\": [\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname1\",\r\n \"value\": \"tokenvalue1\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/tokenv2\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"ps6684\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"clientCredentials\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ],\r\n \"clientId\": \"ps5945\",\r\n \"resourceOwnerUsername\": \"ps5925\",\r\n \"resourceOwnerPassword\": \"ps9473\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps6087\",\r\n \"properties\": {\r\n \"displayName\": \"ps8607\",\r\n \"description\": \"ps7702\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/regv2\",\r\n \"authorizationEndpoint\": \"https://contoso.com/authv2\",\r\n \"authorizationMethods\": [\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname1\",\r\n \"value\": \"tokenvalue1\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/tokenv2\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"ps8424\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"clientCredentials\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ],\r\n \"clientId\": \"ps6588\",\r\n \"resourceOwnerUsername\": \"ps3959\",\r\n \"resourceOwnerPassword\": \"ps4974\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzMTU2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Nz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e841328-bc65-4cb6-a84b-9e9c3e150317" + "a9b245e2-92bc-46a1-ae1a-97d4b4069398" ], "Accept-Language": [ "en-US" @@ -283,7 +283,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -294,13 +294,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACp4=\"" + "\"AAAAAAAAPMk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "595608f2-e82f-4884-936e-045c10055103" + "aba6a08d-5c63-4436-a085-4443276a067c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -309,19 +309,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "5ca52f0b-03b2-428d-bf71-bf69f0027da6" + "87eb9c67-7000-4801-a95a-8a01f880bef9" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193330Z:5ca52f0b-03b2-428d-bf71-bf69f0027da6" + "WESTUS:20200721T164042Z:87eb9c67-7000-4801-a95a-8a01f880bef9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:30 GMT" + "Tue, 21 Jul 2020 16:40:41 GMT" ], "Content-Length": [ - "1115" + "1118" ], "Content-Type": [ "application/json; charset=utf-8" @@ -330,17 +330,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps156\",\r\n \"properties\": {\r\n \"displayName\": \"ps239\",\r\n \"description\": \"ps3740\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/regv2\",\r\n \"authorizationEndpoint\": \"https://contoso.com/authv2\",\r\n \"authorizationMethods\": [\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname1\",\r\n \"value\": \"tokenvalue1\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/tokenv2\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"ps6684\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"clientCredentials\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ],\r\n \"clientId\": \"ps5945\",\r\n \"resourceOwnerUsername\": \"ps5925\",\r\n \"resourceOwnerPassword\": \"ps9473\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps6087\",\r\n \"properties\": {\r\n \"displayName\": \"ps8607\",\r\n \"description\": \"ps7702\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/regv2\",\r\n \"authorizationEndpoint\": \"https://contoso.com/authv2\",\r\n \"authorizationMethods\": [\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname1\",\r\n \"value\": \"tokenvalue1\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/tokenv2\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"ps8424\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\",\r\n \"clientCredentials\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\"\r\n ],\r\n \"clientId\": \"ps6588\",\r\n \"resourceOwnerUsername\": \"ps3959\",\r\n \"resourceOwnerPassword\": \"ps4974\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzMTU2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Nz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49fdf3fc-c723-473c-83a8-12a597945166" + "39f7c0b4-e03f-43d3-b208-3d1be41b3493" ], "Accept-Language": [ "en-US" @@ -349,7 +349,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -363,7 +363,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a3acb7e8-3711-4bdb-b9c7-ee3de02968be" + "eb5a6763-1359-4084-92d1-b4aa84df65b7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -372,16 +372,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "981a1c05-a579-4ec0-afee-8c4551cf552e" + "adf2ad57-6107-468a-9c46-7a1c18ce953c" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193331Z:981a1c05-a579-4ec0-afee-8c4551cf552e" + "WESTUS:20200721T164043Z:adf2ad57-6107-468a-9c46-7a1c18ce953c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:30 GMT" + "Tue, 21 Jul 2020 16:40:42 GMT" ], "Content-Length": [ "101" @@ -397,13 +397,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156/listSecrets?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzMTU2L2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087/listSecrets?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Ny9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "437d7dbc-909d-49b2-bce3-81b125511a58" + "54044e9c-d926-4007-ade1-abfaa02f4744" ], "Accept-Language": [ "en-US" @@ -412,7 +412,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -423,13 +423,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACp0=\"" + "\"AAAAAAAAPMg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "526dd679-01a1-49ae-8863-361c1c890a90" + "f9babbaa-30c8-480a-aaa8-0f85a62a0e24" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -438,16 +438,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "049db7b4-2261-49a6-9024-a8a2baccc03d" + "5202aaf8-2055-4e31-9e86-5b45a4f5f11c" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193329Z:049db7b4-2261-49a6-9024-a8a2baccc03d" + "WESTUS:20200721T164041Z:5202aaf8-2055-4e31-9e86-5b45a4f5f11c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:29 GMT" + "Tue, 21 Jul 2020 16:40:40 GMT" ], "Content-Length": [ "25" @@ -459,17 +459,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"clientSecret\": \"ps4666\"\r\n}", + "ResponseBody": "{\r\n \"clientSecret\": \"ps3974\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156/listSecrets?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzMTU2L2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087/listSecrets?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Ny9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70315668-4451-4eb2-9784-6e19e3fb7214" + "2796884b-4365-4d88-8258-57558f736e82" ], "Accept-Language": [ "en-US" @@ -478,7 +478,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -489,13 +489,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACp4=\"" + "\"AAAAAAAAPMk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "30b8edce-25a0-4c5d-8729-089488ac23bc" + "3d09201d-f6ef-47b5-8018-f18fde222cca" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -504,19 +504,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "037cb9c9-56dd-4911-a996-eb8e389a363b" + "05529e2b-85de-488f-9a87-be74b50ef968" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193330Z:037cb9c9-56dd-4911-a996-eb8e389a363b" + "WESTUS:20200721T164042Z:05529e2b-85de-488f-9a87-be74b50ef968" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:30 GMT" + "Tue, 21 Jul 2020 16:40:41 GMT" ], "Content-Length": [ - "24" + "25" ], "Content-Type": [ "application/json; charset=utf-8" @@ -525,17 +525,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"clientSecret\": \"ps213\"\r\n}", + "ResponseBody": "{\r\n \"clientSecret\": \"ps7982\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzMTU2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Nz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3740\",\r\n \"authorizationMethods\": [\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname1\",\r\n \"value\": \"tokenvalue1\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/tokenv2\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"ps6684\",\r\n \"bearerTokenSendingMethods\": [\r\n \"AuthorizationHeader\"\r\n ],\r\n \"displayName\": \"ps239\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/regv2\",\r\n \"authorizationEndpoint\": \"https://contoso.com/authv2\",\r\n \"grantTypes\": [\r\n \"AuthorizationCode\",\r\n \"Implicit\",\r\n \"ClientCredentials\"\r\n ],\r\n \"clientId\": \"ps5945\",\r\n \"clientSecret\": \"ps213\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps7702\",\r\n \"authorizationMethods\": [\r\n \"GET\"\r\n ],\r\n \"clientAuthenticationMethod\": [\r\n \"Basic\"\r\n ],\r\n \"tokenBodyParameters\": [\r\n {\r\n \"name\": \"tokenname1\",\r\n \"value\": \"tokenvalue1\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/tokenv2\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"ps8424\",\r\n \"bearerTokenSendingMethods\": [\r\n \"AuthorizationHeader\"\r\n ],\r\n \"displayName\": \"ps8607\",\r\n \"clientRegistrationEndpoint\": \"https://contoso.com/clients/regv2\",\r\n \"authorizationEndpoint\": \"https://contoso.com/authv2\",\r\n \"grantTypes\": [\r\n \"AuthorizationCode\",\r\n \"Implicit\",\r\n \"ClientCredentials\"\r\n ],\r\n \"clientId\": \"ps6588\",\r\n \"clientSecret\": \"ps7982\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "88634701-04f2-4f89-8590-a8c3294c540a" + "2bc731a5-594b-4d91-ac13-cb587dd2bc12" ], "If-Match": [ "*" @@ -547,13 +547,13 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "794" + "796" ] }, "ResponseHeaders": { @@ -567,7 +567,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "82605b3d-d0ee-4c43-93ff-a3e1ba472e9b" + "b11c539b-a6dc-4aa4-9fa9-abf722252dd0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -576,16 +576,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "5fe56751-7f7a-4003-bf89-a046f1fac61f" + "288e470d-c754-4738-9c13-2ac485cf972d" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193330Z:5fe56751-7f7a-4003-bf89-a046f1fac61f" + "WESTUS:20200721T164042Z:288e470d-c754-4738-9c13-2ac485cf972d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:29 GMT" + "Tue, 21 Jul 2020 16:40:41 GMT" ], "Expires": [ "-1" @@ -595,13 +595,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps156?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzMTU2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Nz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b03d084d-550f-442a-9f5b-a2fed6e9b797" + "3880a82a-3fff-4672-9446-f7315e708099" ], "If-Match": [ "*" @@ -613,7 +613,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -627,7 +627,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "99462017-b38f-4bf9-aa30-157a64ba7910" + "c78d2b1e-bcf8-4566-9a3a-7591a31670fd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -636,16 +636,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "b5e4f626-424a-4f0f-ad45-ae9e7c07e9cd" + "f78dd0e3-dacf-4329-a8a5-d57602ddcf3f" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193331Z:b5e4f626-424a-4f0f-ad45-ae9e7c07e9cd" + "WESTUS:20200721T164042Z:f78dd0e3-dacf-4329-a8a5-d57602ddcf3f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:30 GMT" + "Tue, 21 Jul 2020 16:40:42 GMT" ], "Expires": [ "-1" @@ -660,19 +660,19 @@ ], "Names": { "": [ - "ps156", - "ps1509", - "ps7747", - "ps1260", - "ps9946", - "ps4666", - "ps9473", - "ps5925", - "ps239", - "ps6684", - "ps5945", - "ps3740", - "ps213" + "ps6087", + "ps164", + "ps6347", + "ps8669", + "ps1840", + "ps3974", + "ps4974", + "ps3959", + "ps8607", + "ps8424", + "ps6588", + "ps7702", + "ps7982" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendCrudTest.json index 874f9cffeee4..f7ec11a51307 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendCrudTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjg0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"ps2965\",\r\n \"description\": \"ps1762\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n },\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"ps9538\",\r\n \"description\": \"ps5083\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n },\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "421b11c0-db4e-4a83-8760-d37b50b92529" + "248d0814-8026-4fe8-a6d4-7b9c215d4b01" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,31 +33,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACvg=\"" + "\"AAAAAAAAPSI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2cb7d3e9-a210-459f-9873-aca18010fd9f" + "db46d580-8c01-45c7-9095-b903dcb2d9cf" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "a47f3213-4a16-4228-bb8f-d0c68a35c723" + "4be5c7dd-0752-40f0-9769-e10c059ad3c0" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193422Z:a47f3213-4a16-4228-bb8f-d0c68a35c723" + "WESTUS:20200721T164133Z:4be5c7dd-0752-40f0-9769-e10c059ad3c0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:22 GMT" + "Tue, 21 Jul 2020 16:41:33 GMT" ], "Content-Length": [ "824" @@ -69,17 +69,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps6848\",\r\n \"properties\": {\r\n \"title\": \"ps2965\",\r\n \"description\": \"ps1762\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3138\",\r\n \"properties\": {\r\n \"title\": \"ps9538\",\r\n \"description\": \"ps5083\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjg0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps5707\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps7950\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "508320e8-eaec-4de7-b1da-1cd8dfb46b81" + "74200fab-8541-45ba-a477-f05128437f58" ], "If-Match": [ "*" @@ -91,7 +91,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -111,25 +111,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "813ce8c0-ae03-4909-8e8c-00e924439afd" + "b61bf370-0e9f-4987-a85b-21dcdbede47c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "bb717706-bceb-4556-a3a8-7549ba0d220d" + "1e4c4a72-8471-4f39-ab24-0a309d12892e" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193423Z:bb717706-bceb-4556-a3a8-7549ba0d220d" + "WESTUS:20200721T164134Z:1e4c4a72-8471-4f39-ab24-0a309d12892e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:23 GMT" + "Tue, 21 Jul 2020 16:41:34 GMT" ], "Expires": [ "-1" @@ -139,13 +139,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjg0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"proxy\": {\r\n \"url\": \"http://12.168.1.1:8080\",\r\n \"username\": \"foo\",\r\n \"password\": \"PlainTextPassword\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f2e755eb-caf7-4a73-ae0c-7f7b40bf5320" + "82d238cc-9959-4b90-807a-c93cdfbb9ad4" ], "If-Match": [ "*" @@ -157,7 +157,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -177,25 +177,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "26b1fdaa-c502-4126-8476-b399a5be02d8" + "f793d881-033e-49bd-a824-ff1b6ba09c9e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "b2078e38-da1e-40eb-babd-24ca082226fb" + "622ac608-29b9-4e93-83c5-1145e2e0d919" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193424Z:b2078e38-da1e-40eb-babd-24ca082226fb" + "WESTUS:20200721T164136Z:622ac608-29b9-4e93-83c5-1145e2e0d919" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:24 GMT" + "Tue, 21 Jul 2020 16:41:36 GMT" ], "Expires": [ "-1" @@ -205,13 +205,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjg0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f32f16f6-3d37-4023-b44b-c0d60912de2b" + "c3445238-63da-4e1d-bf35-b84ed8dab7af" ], "Accept-Language": [ "en-US" @@ -220,7 +220,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -231,31 +231,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACvo=\"" + "\"AAAAAAAAPSQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b28257fc-3daa-43e4-88ad-7592fc41dcfe" + "d1e5aed2-0d51-4b8c-b4bc-0979cd6b5ab4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11992" ], "x-ms-correlation-request-id": [ - "ad783f3b-1101-4823-84e2-7739b833d89b" + "9a17b563-91c1-4d4d-8aec-7c569afce0f9" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193423Z:ad783f3b-1101-4823-84e2-7739b833d89b" + "WESTUS:20200721T164134Z:9a17b563-91c1-4d4d-8aec-7c569afce0f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:23 GMT" + "Tue, 21 Jul 2020 16:41:34 GMT" ], "Content-Length": [ "824" @@ -267,17 +267,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps6848\",\r\n \"properties\": {\r\n \"title\": \"ps2965\",\r\n \"description\": \"ps5707\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3138\",\r\n \"properties\": {\r\n \"title\": \"ps9538\",\r\n \"description\": \"ps7950\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjg0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3379565c-852c-440b-9008-09e2210c23bc" + "34eaac91-1a1c-42fb-8689-ff403fdd68ea" ], "Accept-Language": [ "en-US" @@ -286,7 +286,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -297,31 +297,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACvo=\"" + "\"AAAAAAAAPSQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ff830cd6-130a-4e23-ad19-c2586d2235bb" + "8492baff-167a-4869-b6bd-fb19f0080ebe" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11990" ], "x-ms-correlation-request-id": [ - "94eefc7b-2a7b-41f6-be93-43e0f951db69" + "17f6bced-c6df-4dc9-ac6b-2944d5e1acbb" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193424Z:94eefc7b-2a7b-41f6-be93-43e0f951db69" + "WESTUS:20200721T164135Z:17f6bced-c6df-4dc9-ac6b-2944d5e1acbb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:23 GMT" + "Tue, 21 Jul 2020 16:41:35 GMT" ], "Content-Length": [ "824" @@ -333,17 +333,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps6848\",\r\n \"properties\": {\r\n \"title\": \"ps2965\",\r\n \"description\": \"ps5707\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3138\",\r\n \"properties\": {\r\n \"title\": \"ps9538\",\r\n \"description\": \"ps7950\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjg0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c017e40-1d32-4dda-9cab-4348ec5fe5b6" + "399f174a-e66c-4924-a9bd-15269c31b54c" ], "Accept-Language": [ "en-US" @@ -352,7 +352,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -363,31 +363,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACv0=\"" + "\"AAAAAAAAPSc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f61f6c58-282b-4eab-adea-d67bed389389" + "b09e55d6-9d8a-4f5d-9b51-8e0d3a35770d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11989" ], "x-ms-correlation-request-id": [ - "78e774e5-52f0-4e60-96cc-b23706a64fb5" + "18468b8e-0e1e-4710-924f-b7f1645786eb" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193424Z:78e774e5-52f0-4e60-96cc-b23706a64fb5" + "WESTUS:20200721T164136Z:18468b8e-0e1e-4710-924f-b7f1645786eb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:24 GMT" + "Tue, 21 Jul 2020 16:41:36 GMT" ], "Content-Length": [ "953" @@ -399,17 +399,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps6848\",\r\n \"properties\": {\r\n \"title\": \"ps2965\",\r\n \"description\": \"ps5707\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"proxy\": {\r\n \"url\": \"http://12.168.1.1:8080\",\r\n \"username\": \"foo\",\r\n \"password\": \"PlainTextPassword\"\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3138\",\r\n \"properties\": {\r\n \"title\": \"ps9538\",\r\n \"description\": \"ps7950\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"proxy\": {\r\n \"url\": \"http://12.168.1.1:8080\",\r\n \"username\": \"foo\",\r\n \"password\": \"PlainTextPassword\"\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjg0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "abca2059-82db-4e1d-ac21-96d43549cfb2" + "2e43de81-3258-4c7d-b5f3-d8f6df652375" ], "Accept-Language": [ "en-US" @@ -418,7 +418,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -432,25 +432,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "afa24590-6cc8-4e39-a39f-8c1b6c8ba218" + "d8406982-ad08-4c8a-ab44-a08f6d333f58" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11988" ], "x-ms-correlation-request-id": [ - "e5368178-0886-4b87-a968-a6c28e023981" + "a1ad993d-229d-4fe2-96a7-824c891589f9" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193425Z:e5368178-0886-4b87-a968-a6c28e023981" + "WESTUS:20200721T164136Z:a1ad993d-229d-4fe2-96a7-824c891589f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:24 GMT" + "Tue, 21 Jul 2020 16:41:36 GMT" ], "Content-Length": [ "83" @@ -472,7 +472,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "66119729-cfb7-467f-bd1e-be849a6cb5e2" + "1953e438-1647-4443-9218-e21a2d2f8288" ], "Accept-Language": [ "en-US" @@ -481,7 +481,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -495,25 +495,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3377aa2b-44b1-4f5c-9d5e-c52b053fe337" + "35848623-7af2-4577-bab0-320b5d688957" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11991" ], "x-ms-correlation-request-id": [ - "d5bd790a-2149-4245-b341-94ef081711c7" + "83ed4586-19ef-4098-8fef-0008d27bd5eb" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193424Z:d5bd790a-2149-4245-b341-94ef081711c7" + "WESTUS:20200721T164135Z:83ed4586-19ef-4098-8fef-0008d27bd5eb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:23 GMT" + "Tue, 21 Jul 2020 16:41:35 GMT" ], "Content-Length": [ "1004" @@ -525,17 +525,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps6848\",\r\n \"properties\": {\r\n \"title\": \"ps2965\",\r\n \"description\": \"ps5707\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ],\r\n \"sr\": [\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3138\",\r\n \"properties\": {\r\n \"title\": \"ps9538\",\r\n \"description\": \"ps7950\",\r\n \"url\": \"https://contoso.com/awesomeapi\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sr\": [\r\n \"cc\"\r\n ],\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensesame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": false\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps6848?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzNjg0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb4382fa-fcf9-46a6-b382-5cd5e16eb9f4" + "1db40c1c-9fed-4c59-bc54-02407527e960" ], "If-Match": [ "*" @@ -547,7 +547,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -561,25 +561,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a2fa0a6a-fec3-4c7d-88c1-624fcf5acdf5" + "d1cb456c-1084-4be4-9fb3-7d6e301c4edd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "8971b6e9-0d1e-4f6d-88f4-968b6327e5b9" + "44073233-5657-4612-a699-da72c7db2636" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193424Z:8971b6e9-0d1e-4f6d-88f4-968b6327e5b9" + "WESTUS:20200721T164136Z:44073233-5657-4612-a699-da72c7db2636" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:24 GMT" + "Tue, 21 Jul 2020 16:41:36 GMT" ], "Expires": [ "-1" @@ -594,10 +594,10 @@ ], "Names": { "": [ - "ps6848", - "ps2965", - "ps1762", - "ps5707" + "ps3138", + "ps9538", + "ps5083", + "ps7950" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendServiceFabricCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendServiceFabricCrudTest.json index 91f177a53637..0971f43248c1 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendServiceFabricCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/BackendServiceFabricCrudTest.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ff38c3e-0e7c-49ee-b51b-f4d2d9e44a37" + "9ef8430b-86e8-4ed7-adfb-f91df70137aa" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -30,7 +30,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6b752baf-d40c-42f2-8d22-fe8b69ccd985" + "3900b5a9-e65e-49af-8cc0-0870d0028e24" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -39,16 +39,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "aaeb2857-34f8-4948-a6ed-77c32bf36e5d" + "c1ebc8c0-3100-4eae-abe2-a3d6ca9c09ed" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193705Z:aaeb2857-34f8-4948-a6ed-77c32bf36e5d" + "WESTUS:20200721T164416Z:c1ebc8c0-3100-4eae-abe2-a3d6ca9c09ed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:04 GMT" + "Tue, 21 Jul 2020 16:44:15 GMT" ], "Content-Length": [ "34" @@ -70,7 +70,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3bd3413-6173-4765-a19d-a38ad0fe1ee1" + "9ba56717-96b0-4248-b023-9f2b81d120b1" ], "Accept-Language": [ "en-US" @@ -79,7 +79,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -93,7 +93,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "041e963d-ca25-4573-87ea-4c72ba97aeed" + "8bafee28-4164-498f-924d-50de5dd022a6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -102,19 +102,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "fbfdafad-8925-4aef-aec5-9ec223cf553c" + "6af70c5b-0033-4e62-ab4d-70263767d27c" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193706Z:fbfdafad-8925-4aef-aec5-9ec223cf553c" + "WESTUS:20200721T164419Z:6af70c5b-0033-4e62-ab4d-70263767d27c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:06 GMT" + "Tue, 21 Jul 2020 16:44:18 GMT" ], "Content-Length": [ - "1121" + "1122" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,18 +123,18 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps1093\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps1093\",\r\n \"properties\": {\r\n \"title\": \"ps925\",\r\n \"description\": \"ps9583\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps2285\",\r\n \"properties\": {\r\n \"title\": \"ps7257\",\r\n \"description\": \"ps9623\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps7034?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczcwMzQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8062?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgwNjI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")] "RequestBody": "{\r\n \"properties\": {\r\n \"data\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAgpyA5NFrZbjwICB9AEggKQpSy2W1iM8pd8/WyI0+q4uvY6SpvRXTpUfBLl7jlNCPOt847nq5zqQggOQSaqP/4zi08CcmQzaQRmHf5FfMMeYJDp6rGLS8ouyt5ElwMHBZWrsuF49dwi5S73AtBRX128CXCc+qKOlgnXM9PpW+LSJ9J4SWS9B2wC0YQfIGtC/niuLcHDVP+zGwXd+fT06nmNR3SzjfzEfHROM/TyOWHMWAlas6/LXIqXpRSl6igWK7SuMDxWZvdr/QC1ahsptkkF7nHq1RC57o6ru7wxkaANwFQXXhBuh9uQ32Szg2nemfLP7jTcOHcUPK32tU7TuGT5osXMbAVHelPFGzNEPAEb6mNfla2cuILVX/QTqqPqjxTGGn8qBf2TtDSHedBSaRqPO62hRbzAfpeSagG6iFWKGeGCvo8LwVnx3pZM36Tu5GBNhdKhOGZvtXeiZH7XoMAER1O8dJblKfffhzl4MG7BCcT5nftU6NpS3TfRC9hvGX9iqZKjZd6Npvycmo+qlld6g86QDNq28NEHLz0xG809IUunp5DxKptZhEHwZhU0EmATucmjZhrDDvembG58gaU/PSBRlwVNjK+h//Gm4jCAQ6l0iR5COqScNnxr9p5ZhmJvKJQ1OpFw0zXgeWi6MTOpNfMwibytjn+28YPe9mUNoUvcb0u6mjxmn+wupHfELXADRuSZ8CF5eRk9pE+SrbrCn6wyoaFY/vdBSxsnNh37HXpCEEcOm19pbQNPfuVktRmU910zhQntm58SVhyNIlBOA0LGllRNxZndwHdTlcqbIE+HRDn7Fnj3uf0xu+9cOvPkIalluKsySbDKQXJyg3p9QQZJIiFpp6jXit+DHmf7d9mZ0G7eoKFtI2yqLDT68mYxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADAAOAAxAEYAMwBCADMAQwAtAEQANQA0ADMALQA0AEEANwAwAC0AOAA3ADcANgAtADkAMgA1AEEARAAxADgARQA2ADgAQwBGAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIvqDlcIY1iqcCAgfQgIICmE7Jw2F3UXilr+Ig+EAVrb2B3zG3rYosQY3iikLJ73ztGs/qiNCr21CxKeoj4mBzLFX+oi4DhvJBDp7PkTIF9z7CKzw7XcVwgmLqfBHYh9lp+lrLk2c3wmJllb06MKtblY7OYp9sNr5f3vB6J4uIE6+R+70oLmB2BhcToytfETjbeyKuFGS+3YhoHwCloMNTu73uXmBDwoPz+Wot7Fq3aZm1Sc5A5Qz68BZhvOz+zR4twH11c79yzlMHzdqpD1aRCLdbXtVrqrjEk7tuwqWQmWAOuPvRAN7oksqO2Gw7w8gx1kqkRKYkYuzrj4benZPsZwT8qXZPCZ5iM+iYImvPQkPxSTmM0O3gxbtK1/Xu0cCZSpNy1yJQo0fyzEMMCbLKYVWjK+0ymNww7bd3ubWW358oLE2U+6Oe7mmtXgZzSVH74vaes/ce1zEm+paItCqfHXe1fo4Qo7s3jfTrRohYw7LWD+uVObdKi8Dg7fUy8/DXomgWn4qP8I33n6Y0LCMrzKUoIe6zhsWBpFobwprlz/jWvASkbdp8ou16Vx6jTf3EwXCnWcRmXXNuPFPOo5znBLs98raCe0546bbcq7jSZr5Sg11qBX5N+N3Bv/eup7qQKAnivAvBOAx6533LzR3fZfe7AN0dOEC2D079Vg0t0o+JBPd7mLxIF54BnHoy5OlRCg0g0ol6R9iN3HlgUbMJWL2dFEoU+kjMVNTUKykEh/Q4Zh/ug9lnyObHsDTzZwr3qe0L308lh9Ko20e/aCFS8YLtTv1qlewKtz/BIxck8vDBsY61hrymbVvlxDD2ESuzt8qJXp5vBF1dfaBFTO5enxBJYVIF2JyeSwDAPOJiYTdsz9ssVolmx6p9yKSTuhuFISyU4xOOcU4wOzAfMAcGBSsOAwIaBBSPRDVaFWhKRqBSQvxQV/NpiUuTawQUxxNV8/5sOf5HrarXJESyg2NwXl4CAgfQ\",\r\n \"password\": \"Password\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "42950c91-a658-4f2d-9d6f-db71dd5984bd" + "490fcba1-7b50-4cb6-bba8-4260f240df43" ], "Accept-Language": [ "en-US" @@ -143,7 +143,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -160,13 +160,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC3w=\"" + "\"AAAAAAAAPcI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8d42f87f-ac1a-43c5-b967-0c29bd23665e" + "d66e5518-f89e-4241-94de-0741849abe8c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -175,16 +175,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "4bb7a4a3-9504-4d5d-a282-7d4d290e6dca" + "8b4b3d49-8fbc-485e-be10-08086f068747" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193705Z:4bb7a4a3-9504-4d5d-a282-7d4d290e6dca" + "WESTUS:20200721T164416Z:8b4b3d49-8fbc-485e-be10-08086f068747" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:05 GMT" + "Tue, 21 Jul 2020 16:44:15 GMT" ], "Content-Length": [ "433" @@ -196,17 +196,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps7034\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps7034\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8062\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8062\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps7034?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczcwMzQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8062?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgwNjI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6796342-ae26-4e68-8c78-ec5cf7b36f32" + "d03b8efe-4267-4d3c-82d5-33a21e52be0a" ], "Accept-Language": [ "en-US" @@ -215,7 +215,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -226,13 +226,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC3w=\"" + "\"AAAAAAAAPcI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "914a62f3-70ea-4ce7-a9ad-a9d080f1fd84" + "d62e3ef4-cf57-405a-ab1e-1515fb2baac0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -241,16 +241,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "9447cbce-cbd5-463a-b532-34136a6d6b75" + "58964ed4-45f2-44f6-a287-aa8737f10bda" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193705Z:9447cbce-cbd5-463a-b532-34136a6d6b75" + "WESTUS:20200721T164417Z:58964ed4-45f2-44f6-a287-aa8737f10bda" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:05 GMT" + "Tue, 21 Jul 2020 16:44:16 GMT" ], "Content-Length": [ "433" @@ -262,17 +262,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps7034\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps7034\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8062\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8062\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps7034?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczcwMzQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8062?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgwNjI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97b7578d-ae3e-4397-a437-47b4ca99fb81" + "2a73fdfc-06cf-44da-8000-e613f4aecf12" ], "Accept-Language": [ "en-US" @@ -281,7 +281,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -295,7 +295,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a7590557-87f1-4a97-8177-d00697869060" + "ca3bf6f1-d75d-4406-8584-f41041d96387" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -304,16 +304,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "07cd45ce-587e-44c1-b6e2-5d561c50f435" + "1da66f4d-06cf-4d5f-bd41-2fa194f64c3f" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193708Z:07cd45ce-587e-44c1-b6e2-5d561c50f435" + "WESTUS:20200721T164420Z:1da66f4d-06cf-4d5f-bd41-2fa194f64c3f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:07 GMT" + "Tue, 21 Jul 2020 16:44:19 GMT" ], "Content-Length": [ "87" @@ -329,13 +329,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps1093?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMTA5Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMjI4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"ps925\",\r\n \"description\": \"ps3137\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"clientCertificatethumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ]\r\n }\r\n },\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"ps7257\",\r\n \"description\": \"ps8854\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"clientCertificatethumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ]\r\n }\r\n },\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b3130a30-bee4-4bb7-a6be-43e305ed273f" + "ad24e14a-2d40-4f5b-892f-b68b74de70c0" ], "Accept-Language": [ "en-US" @@ -344,13 +344,13 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "675" + "676" ] }, "ResponseHeaders": { @@ -361,13 +361,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC38=\"" + "\"AAAAAAAAPcU=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0ee62619-ab92-4a80-a212-9a150d5d1dca" + "40f754fc-439f-4f4c-925d-a9bc7241640c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -376,19 +376,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "be38fa47-f99e-4569-94c2-8da959a7297a" + "8900320b-f905-4630-b598-9316a4d460d1" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193706Z:be38fa47-f99e-4569-94c2-8da959a7297a" + "WESTUS:20200721T164418Z:8900320b-f905-4630-b598-9316a4d460d1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:06 GMT" + "Tue, 21 Jul 2020 16:44:17 GMT" ], "Content-Length": [ - "969" + "970" ], "Content-Type": [ "application/json; charset=utf-8" @@ -397,17 +397,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps1093\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps1093\",\r\n \"properties\": {\r\n \"title\": \"ps925\",\r\n \"description\": \"ps3137\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps2285\",\r\n \"properties\": {\r\n \"title\": \"ps7257\",\r\n \"description\": \"ps8854\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps1093?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMTA5Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMjI4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9583\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9623\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "10c25c1f-ec7b-4e66-b0f7-9ece9bb0a3d9" + "8eb8b252-d86c-4aa0-9cf1-26e57d4f05b2" ], "If-Match": [ "*" @@ -419,7 +419,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -439,7 +439,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8b193b63-f4d1-4c91-8b3c-8a17d4db42ec" + "e7526062-ec95-4d08-834e-513b29bacb8e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -448,16 +448,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "75daf591-c804-459c-b45b-b0364b93b116" + "69bf85e7-ca25-4011-8cff-5ef094cedbf1" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193706Z:75daf591-c804-459c-b45b-b0364b93b116" + "WESTUS:20200721T164418Z:69bf85e7-ca25-4011-8cff-5ef094cedbf1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:06 GMT" + "Tue, 21 Jul 2020 16:44:17 GMT" ], "Expires": [ "-1" @@ -467,13 +467,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps1093?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMTA5Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMjI4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85ff343e-2c81-457a-91e9-50004a507846" + "6e25a7d0-93d8-4471-9767-5c8ac072beef" ], "Accept-Language": [ "en-US" @@ -482,7 +482,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -493,13 +493,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC4E=\"" + "\"AAAAAAAAPcc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "372131d7-1c50-4047-ae24-e844a1dab20e" + "a94a6075-ce88-471d-9a70-ece18511fff6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -508,19 +508,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "5d4e3d7c-cc46-48fd-b572-91d73afdbfe5" + "454d5cd6-bd7f-43a3-9e59-632070be234b" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193706Z:5d4e3d7c-cc46-48fd-b572-91d73afdbfe5" + "WESTUS:20200721T164418Z:454d5cd6-bd7f-43a3-9e59-632070be234b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:06 GMT" + "Tue, 21 Jul 2020 16:44:18 GMT" ], "Content-Length": [ - "969" + "970" ], "Content-Type": [ "application/json; charset=utf-8" @@ -529,17 +529,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps1093\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps1093\",\r\n \"properties\": {\r\n \"title\": \"ps925\",\r\n \"description\": \"ps9583\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps2285\",\r\n \"properties\": {\r\n \"title\": \"ps7257\",\r\n \"description\": \"ps9623\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps1093?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMTA5Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMjI4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5d4f28a-d1a3-407e-bb8d-dba290d886b7" + "daf5efde-c667-494b-8874-aae412077ef9" ], "Accept-Language": [ "en-US" @@ -548,7 +548,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -559,13 +559,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC4E=\"" + "\"AAAAAAAAPcc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c7136e9e-ff7a-4d12-8e0e-b11418242cef" + "fc553e34-2a4d-4d16-90ca-7076b28815cd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -574,19 +574,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "21b2d13c-5248-4c7e-b766-a6264af88eb2" + "2c25b3f7-e17a-4340-a471-3b112a381d18" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193706Z:21b2d13c-5248-4c7e-b766-a6264af88eb2" + "WESTUS:20200721T164419Z:2c25b3f7-e17a-4340-a471-3b112a381d18" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:06 GMT" + "Tue, 21 Jul 2020 16:44:18 GMT" ], "Content-Length": [ - "969" + "970" ], "Content-Type": [ "application/json; charset=utf-8" @@ -595,17 +595,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps1093\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps1093\",\r\n \"properties\": {\r\n \"title\": \"ps925\",\r\n \"description\": \"ps9583\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps2285\",\r\n \"properties\": {\r\n \"title\": \"ps7257\",\r\n \"description\": \"ps9623\",\r\n \"url\": \"fabric:/mytestapp/mytestservice\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://sfbackend-01.net:443\",\r\n \"https://sfbackend-02.net:443\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverCertificateThumbprints\": [],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"CN=foobar.net\",\r\n \"issuerCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 3\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps1093?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMTA5Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMjI4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe854558-a0fd-4666-9a63-c4bbd07e055b" + "16232167-f770-4308-a482-23ffe29acfe8" ], "Accept-Language": [ "en-US" @@ -614,7 +614,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -628,7 +628,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "245f93b4-a597-4c59-b844-aee82faae810" + "528f4ab7-3dda-4330-a33d-4cdc49749b6f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -637,16 +637,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "3fa2450a-96f4-4ca4-b83f-750b3be727f7" + "138253c6-c066-4f3b-aea3-255f161c5cba" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193707Z:3fa2450a-96f4-4ca4-b83f-750b3be727f7" + "WESTUS:20200721T164419Z:138253c6-c066-4f3b-aea3-255f161c5cba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:07 GMT" + "Tue, 21 Jul 2020 16:44:19 GMT" ], "Content-Length": [ "83" @@ -662,13 +662,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps1093?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMTA5Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMjI4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2a7efda-c6a3-4ee2-a5fd-de48e0151675" + "b92c13d3-9b0d-4ec6-9fc0-7f9c8d286504" ], "If-Match": [ "*" @@ -680,7 +680,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -694,7 +694,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1d3e2612-108f-49b5-97ad-809fd1b892ce" + "27aa40dc-e2f5-4000-b218-dcfbbe7495da" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -703,16 +703,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "1024db8f-5aaf-4c6e-927b-1d99a986f04c" + "3330879d-0b9d-41d3-b482-4b1ce9abf7b3" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193707Z:1024db8f-5aaf-4c6e-927b-1d99a986f04c" + "WESTUS:20200721T164419Z:3330879d-0b9d-41d3-b482-4b1ce9abf7b3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:07 GMT" + "Tue, 21 Jul 2020 16:44:18 GMT" ], "Expires": [ "-1" @@ -725,13 +725,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps7034?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczcwMzQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8062?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgwNjI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "238a0d4b-d5bd-415a-a867-ead2e7bd430a" + "4043a6c0-46ee-48fe-914b-112f7e451a32" ], "If-Match": [ "*" @@ -743,7 +743,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -757,7 +757,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "10f64e11-f0dc-4ef4-a97b-30fcd35883ac" + "70c75e60-f0db-464b-b51e-b67644c43f2e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -766,16 +766,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "0fd8a2f2-a450-479a-bd28-757c22f23176" + "30c25073-5721-42f1-8565-634778245dd0" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193707Z:0fd8a2f2-a450-479a-bd28-757c22f23176" + "WESTUS:20200721T164420Z:30c25073-5721-42f1-8565-634778245dd0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:37:07 GMT" + "Tue, 21 Jul 2020 16:44:19 GMT" ], "Expires": [ "-1" @@ -790,11 +790,11 @@ ], "Names": { "": [ - "ps7034", - "ps1093", - "ps925", - "ps3137", - "ps9583" + "ps8062", + "ps2285", + "ps7257", + "ps8854", + "ps9623" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CacheCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CacheCrudTest.json index ecdbc11a68c8..51052c6574d8 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CacheCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CacheCrudTest.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f0a28612-31df-4829-a3cc-248a81cca004" + "2da7ef94-5387-4f13-8afa-9acfe724bc3a" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -30,7 +30,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "87e3bcd3-147d-4171-8511-b7554223f79c" + "1cd6c95b-bd82-4775-a689-bf6146f9ac75" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -39,16 +39,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "43ec6261-2b5a-4e60-b294-12386b84eae4" + "746f0ac8-607c-4cc4-8e27-d6ee7400ddcc" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193222Z:43ec6261-2b5a-4e60-b294-12386b84eae4" + "WESTUS:20200721T163905Z:746f0ac8-607c-4cc4-8e27-d6ee7400ddcc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:21 GMT" + "Tue, 21 Jul 2020 16:39:04 GMT" ], "Content-Length": [ "34" @@ -70,7 +70,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1cb9d795-a06e-4d05-8af8-ceaa9b42d540" + "96b77fc2-a748-4b78-a223-a9bf268dcc77" ], "Accept-Language": [ "en-US" @@ -79,7 +79,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -93,7 +93,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "03fc53c1-ad2e-47df-9dae-4453a39b7caf" + "f2327643-580e-45f6-9a8a-834de0f9eaa1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -102,16 +102,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "6e238793-0c4a-4406-a150-929b464e7b50" + "070832fc-15e2-4fce-a0d2-d5db064bd444" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193223Z:6e238793-0c4a-4406-a150-929b464e7b50" + "WESTUS:20200721T163907Z:070832fc-15e2-4fce-a0d2-d5db064bd444" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:23 GMT" + "Tue, 21 Jul 2020 16:39:07 GMT" ], "Content-Length": [ "437" @@ -123,17 +123,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps7165\",\r\n \"connectionString\": \"{{5eab27c6a2ca601230023147}}\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps7562\",\r\n \"connectionString\": \"{{5f171a29a2ca600fe4c296a8}}\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2019-12-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3955\",\r\n \"connectionString\": \"teamdemo.redis.cache.windows.net:6380,password=xxxxxx+xxxxx=,ssl=True,abortConnect=False\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps2632\",\r\n \"connectionString\": \"teamdemo.redis.cache.windows.net:6380,password=xxxxxx+xxxxx=,ssl=True,abortConnect=False\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a639c976-8942-4815-b038-8b340940622a" + "257dffe0-70b4-4fcb-8884-fbf4ae2ed416" ], "Accept-Language": [ "en-US" @@ -142,7 +142,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,13 +159,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACjk=\"" + "\"AAAAAAAAPFE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "912b0925-87e6-46bd-80b6-8dc7abe86c49" + "16504cc4-0bdb-4408-b844-2c182a245e56" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -174,16 +174,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "225a4c18-1249-4310-a3e8-0d4e2d8d2cbb" + "855575df-2b60-41c7-ac6d-ec3a6ecd3b70" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193222Z:225a4c18-1249-4310-a3e8-0d4e2d8d2cbb" + "WESTUS:20200721T163905Z:855575df-2b60-41c7-ac6d-ec3a6ecd3b70" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:22 GMT" + "Tue, 21 Jul 2020 16:39:05 GMT" ], "Content-Length": [ "361" @@ -195,7 +195,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps3955\",\r\n \"connectionString\": \"{{5eab27c6a2ca601230023147}}\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps2632\",\r\n \"connectionString\": \"{{5f171a29a2ca600fe4c296a8}}\"\r\n }\r\n}", "StatusCode": 201 }, { @@ -205,7 +205,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80e98f34-c847-45e5-aafb-e404e795b880" + "75dce3b4-6a4f-43b7-9b5d-159f86e2a142" ], "Accept-Language": [ "en-US" @@ -214,7 +214,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -225,13 +225,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACjk=\"" + "\"AAAAAAAAPFE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "df0343be-2cde-4950-b64f-b0cffc8413b0" + "2877d4b6-be11-4eca-b5dc-4b30e4d4fccd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -240,16 +240,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "7dad7091-457b-47ad-90a9-7ddc99e340b0" + "ee6e072f-b769-4427-9c8c-e264a690337b" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193222Z:7dad7091-457b-47ad-90a9-7ddc99e340b0" + "WESTUS:20200721T163906Z:ee6e072f-b769-4427-9c8c-e264a690337b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:22 GMT" + "Tue, 21 Jul 2020 16:39:05 GMT" ], "Content-Length": [ "361" @@ -261,7 +261,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps3955\",\r\n \"connectionString\": \"{{5eab27c6a2ca601230023147}}\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps2632\",\r\n \"connectionString\": \"{{5f171a29a2ca600fe4c296a8}}\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -271,7 +271,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "284564f7-dfea-4f4a-9d70-7d36aaa65f0c" + "bff9140e-f361-4c12-8584-24d93538a9d0" ], "Accept-Language": [ "en-US" @@ -280,7 +280,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -291,13 +291,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACjk=\"" + "\"AAAAAAAAPFE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8052b84d-5097-4a34-8fd2-43b3b5d19642" + "6720d2a1-94d7-4d20-97df-57675fbb610c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -306,16 +306,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "0bbe173a-c02a-4feb-b876-555703977f1f" + "a76720ac-7958-492b-84c9-210dd5a75307" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193223Z:0bbe173a-c02a-4feb-b876-555703977f1f" + "WESTUS:20200721T163906Z:a76720ac-7958-492b-84c9-210dd5a75307" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:22 GMT" + "Tue, 21 Jul 2020 16:39:05 GMT" ], "Content-Length": [ "361" @@ -327,7 +327,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps3955\",\r\n \"connectionString\": \"{{5eab27c6a2ca601230023147}}\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps2632\",\r\n \"connectionString\": \"{{5f171a29a2ca600fe4c296a8}}\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -337,7 +337,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfbe2e8c-eabf-4ea2-8b43-8d4d51a3981d" + "64e2b8fb-4787-40ca-8e4a-990ac5323b20" ], "Accept-Language": [ "en-US" @@ -346,7 +346,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -357,13 +357,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACjw=\"" + "\"AAAAAAAAPFQ=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d00da3a2-f826-4388-88dc-f3d77da9dee7" + "e8bdf8ba-53f5-44c9-8c2b-f7d8aba93366" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -372,16 +372,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "c2cdc3b3-f599-4f11-9d4b-49dea83cc370" + "667ef46d-91e1-4991-a9cf-fcc77d9918ba" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193223Z:c2cdc3b3-f599-4f11-9d4b-49dea83cc370" + "WESTUS:20200721T163907Z:667ef46d-91e1-4991-a9cf-fcc77d9918ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:23 GMT" + "Tue, 21 Jul 2020 16:39:06 GMT" ], "Content-Length": [ "361" @@ -393,7 +393,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps7165\",\r\n \"connectionString\": \"{{5eab27c6a2ca601230023147}}\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps7562\",\r\n \"connectionString\": \"{{5f171a29a2ca600fe4c296a8}}\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -403,7 +403,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8243510f-5982-45f1-baf6-a9c07529a7b5" + "189b74fc-6774-4535-b14e-f5b694dea036" ], "Accept-Language": [ "en-US" @@ -412,7 +412,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -426,7 +426,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6bd56760-f060-4442-9b4d-097b7b42bb28" + "efebb1ab-149e-4a84-a1c9-e0a5791efa82" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -435,16 +435,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "be1c7f31-353a-4dad-9388-b2cf897cf1e1" + "673403ca-2e7e-4ad7-b309-76e89f4e5fda" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193224Z:be1c7f31-353a-4dad-9388-b2cf897cf1e1" + "WESTUS:20200721T163908Z:673403ca-2e7e-4ad7-b309-76e89f4e5fda" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:24 GMT" + "Tue, 21 Jul 2020 16:39:07 GMT" ], "Content-Length": [ "81" @@ -463,10 +463,10 @@ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2019-12-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps7165\",\r\n \"connectionString\": \"{{5eab27c6a2ca601230023147}}\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps7562\",\r\n \"connectionString\": \"{{5f171a29a2ca600fe4c296a8}}\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a74d3153-e499-46ec-a9e0-389620eed701" + "ad61bd71-a39a-45cf-b0de-a4c19c9df5ca" ], "If-Match": [ "*" @@ -478,7 +478,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -498,7 +498,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "941b41a6-2f32-454a-8f45-4268f4ab435a" + "f52aa3f4-ba14-4edc-b71d-c90a0e4260c6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -507,16 +507,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "d334cc17-61a6-47a4-8843-a3f08e01a136" + "ed2676ec-2f81-4a16-8a16-8b222a2b98bd" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193223Z:d334cc17-61a6-47a4-8843-a3f08e01a136" + "WESTUS:20200721T163907Z:ed2676ec-2f81-4a16-8a16-8b222a2b98bd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:23 GMT" + "Tue, 21 Jul 2020 16:39:06 GMT" ], "Expires": [ "-1" @@ -532,7 +532,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07064dd1-9d3e-45a4-9036-cb799c0e74d6" + "ed7185b3-dcee-47d0-bc5e-7a2a95f933ab" ], "If-Match": [ "*" @@ -544,7 +544,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -558,7 +558,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8c08a2ac-db1b-45c5-ac29-a9d1e3c1e846" + "9c8a97a8-ff09-4b18-9e6a-501547cfafde" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -567,16 +567,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "a41c8350-0123-4805-a767-59c64295d560" + "9dc28fbd-6dc8-4921-8126-5bd259372e32" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193224Z:a41c8350-0123-4805-a767-59c64295d560" + "WESTUS:20200721T163907Z:9dc28fbd-6dc8-4921-8126-5bd259372e32" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:23 GMT" + "Tue, 21 Jul 2020 16:39:07 GMT" ], "Expires": [ "-1" @@ -595,7 +595,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36c034c8-52bb-4c31-9ae5-e048fc05ce65" + "0cc178c0-44eb-422b-a25b-6bd0e2e5cc69" ], "Accept-Language": [ "en-US" @@ -604,7 +604,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -618,7 +618,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "09d6f17c-2a6c-4f54-8b5b-fec9a846a3f9" + "7fdb4d4a-05ce-4be0-ba01-7c0bd63d2f46" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -627,16 +627,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "e64290b6-703b-4e9e-bd04-9642816c09e6" + "b1c6ca25-14e4-44f6-a186-f19ab4fb0c4c" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193224Z:e64290b6-703b-4e9e-bd04-9642816c09e6" + "WESTUS:20200721T163908Z:b1c6ca25-14e4-44f6-a186-f19ab4fb0c4c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:24 GMT" + "Tue, 21 Jul 2020 16:39:07 GMT" ], "Content-Length": [ "511" @@ -648,17 +648,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5eab27c6a2ca601230023147\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5eab27c6a2ca601230023147\",\r\n \"properties\": {\r\n \"displayName\": \"cache-default-connection-5eab27c6a2ca601230023148\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171a29a2ca600fe4c296a8\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5f171a29a2ca600fe4c296a8\",\r\n \"properties\": {\r\n \"displayName\": \"cache-default-connection-5f171a29a2ca600fe4c296a9\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5eab27c6a2ca601230023147?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVlYWIyN2M2YTJjYTYwMTIzMDAyMzE0Nz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171a29a2ca600fe4c296a8?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVmMTcxYTI5YTJjYTYwMGZlNGMyOTZhOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e442a608-1c78-480a-a209-599742884c3e" + "051c0777-38ee-49b4-921f-c6948f2913d1" ], "If-Match": [ "*" @@ -670,7 +670,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -684,7 +684,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "51541f66-d6e6-4b12-b889-5034055c29f6" + "438ced38-d3e5-40ee-be9a-3527308aac4f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -693,16 +693,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "e9c3e890-e189-447f-8e1a-0484fdfa097d" + "5743500c-0c56-4e94-8e2e-f4bf7a1ab16d" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193226Z:e9c3e890-e189-447f-8e1a-0484fdfa097d" + "WESTUS:20200721T163908Z:5743500c-0c56-4e94-8e2e-f4bf7a1ab16d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:25 GMT" + "Tue, 21 Jul 2020 16:39:08 GMT" ], "Expires": [ "-1" @@ -717,8 +717,8 @@ ], "Names": { "": [ - "ps3955", - "ps7165" + "ps2632", + "ps7562" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CertificateCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CertificateCrudTest.json index 1f01e3a2509b..85607d150498 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CertificateCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/CertificateCrudTest.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1522fb71-521c-4fa0-a4e0-ff0802453349" + "4ad9236e-a6fb-475d-bbe1-c5a5fe978a95" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -30,25 +30,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4e6646b0-2e1c-4dd2-9433-b5bd39facc76" + "3d53de7a-0b10-41dd-a2f8-fbc9fa1ee5cd" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "d4681d72-0385-4f11-9180-3368b0a178ed" + "7b7b0e0f-b0af-4b09-9a71-e29cb5db37f3" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193429Z:d4681d72-0385-4f11-9180-3368b0a178ed" + "WESTUS:20200721T164139Z:7b7b0e0f-b0af-4b09-9a71-e29cb5db37f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:29 GMT" + "Tue, 21 Jul 2020 16:41:39 GMT" ], "Content-Length": [ "34" @@ -70,7 +70,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3718463-aee9-42e7-b00f-51be8f1905f7" + "b445d75d-46fb-4e94-b6be-37f0fd3de65f" ], "Accept-Language": [ "en-US" @@ -79,7 +79,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -93,25 +93,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f38e47be-673d-428c-b11a-96a3f2c51da3" + "e2a65da3-ed1c-4a4e-a7f2-b0880164f616" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "77c79f2b-0898-45cb-8af2-fa4e25a189a1" + "1c014b8b-6757-4df1-8051-fd6b34b84c51" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193432Z:77c79f2b-0898-45cb-8af2-fa4e25a189a1" + "WESTUS:20200721T164142Z:1c014b8b-6757-4df1-8051-fd6b34b84c51" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:32 GMT" + "Tue, 21 Jul 2020 16:41:42 GMT" ], "Content-Length": [ "513" @@ -123,18 +123,18 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8581\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5439\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg1ODE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")] "RequestBody": "{\r\n \"properties\": {\r\n \"data\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAgpyA5NFrZbjwICB9AEggKQpSy2W1iM8pd8/WyI0+q4uvY6SpvRXTpUfBLl7jlNCPOt847nq5zqQggOQSaqP/4zi08CcmQzaQRmHf5FfMMeYJDp6rGLS8ouyt5ElwMHBZWrsuF49dwi5S73AtBRX128CXCc+qKOlgnXM9PpW+LSJ9J4SWS9B2wC0YQfIGtC/niuLcHDVP+zGwXd+fT06nmNR3SzjfzEfHROM/TyOWHMWAlas6/LXIqXpRSl6igWK7SuMDxWZvdr/QC1ahsptkkF7nHq1RC57o6ru7wxkaANwFQXXhBuh9uQ32Szg2nemfLP7jTcOHcUPK32tU7TuGT5osXMbAVHelPFGzNEPAEb6mNfla2cuILVX/QTqqPqjxTGGn8qBf2TtDSHedBSaRqPO62hRbzAfpeSagG6iFWKGeGCvo8LwVnx3pZM36Tu5GBNhdKhOGZvtXeiZH7XoMAER1O8dJblKfffhzl4MG7BCcT5nftU6NpS3TfRC9hvGX9iqZKjZd6Npvycmo+qlld6g86QDNq28NEHLz0xG809IUunp5DxKptZhEHwZhU0EmATucmjZhrDDvembG58gaU/PSBRlwVNjK+h//Gm4jCAQ6l0iR5COqScNnxr9p5ZhmJvKJQ1OpFw0zXgeWi6MTOpNfMwibytjn+28YPe9mUNoUvcb0u6mjxmn+wupHfELXADRuSZ8CF5eRk9pE+SrbrCn6wyoaFY/vdBSxsnNh37HXpCEEcOm19pbQNPfuVktRmU910zhQntm58SVhyNIlBOA0LGllRNxZndwHdTlcqbIE+HRDn7Fnj3uf0xu+9cOvPkIalluKsySbDKQXJyg3p9QQZJIiFpp6jXit+DHmf7d9mZ0G7eoKFtI2yqLDT68mYxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADAAOAAxAEYAMwBCADMAQwAtAEQANQA0ADMALQA0AEEANwAwAC0AOAA3ADcANgAtADkAMgA1AEEARAAxADgARQA2ADgAQwBGAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIvqDlcIY1iqcCAgfQgIICmE7Jw2F3UXilr+Ig+EAVrb2B3zG3rYosQY3iikLJ73ztGs/qiNCr21CxKeoj4mBzLFX+oi4DhvJBDp7PkTIF9z7CKzw7XcVwgmLqfBHYh9lp+lrLk2c3wmJllb06MKtblY7OYp9sNr5f3vB6J4uIE6+R+70oLmB2BhcToytfETjbeyKuFGS+3YhoHwCloMNTu73uXmBDwoPz+Wot7Fq3aZm1Sc5A5Qz68BZhvOz+zR4twH11c79yzlMHzdqpD1aRCLdbXtVrqrjEk7tuwqWQmWAOuPvRAN7oksqO2Gw7w8gx1kqkRKYkYuzrj4benZPsZwT8qXZPCZ5iM+iYImvPQkPxSTmM0O3gxbtK1/Xu0cCZSpNy1yJQo0fyzEMMCbLKYVWjK+0ymNww7bd3ubWW358oLE2U+6Oe7mmtXgZzSVH74vaes/ce1zEm+paItCqfHXe1fo4Qo7s3jfTrRohYw7LWD+uVObdKi8Dg7fUy8/DXomgWn4qP8I33n6Y0LCMrzKUoIe6zhsWBpFobwprlz/jWvASkbdp8ou16Vx6jTf3EwXCnWcRmXXNuPFPOo5znBLs98raCe0546bbcq7jSZr5Sg11qBX5N+N3Bv/eup7qQKAnivAvBOAx6533LzR3fZfe7AN0dOEC2D079Vg0t0o+JBPd7mLxIF54BnHoy5OlRCg0g0ol6R9iN3HlgUbMJWL2dFEoU+kjMVNTUKykEh/Q4Zh/ug9lnyObHsDTzZwr3qe0L308lh9Ko20e/aCFS8YLtTv1qlewKtz/BIxck8vDBsY61hrymbVvlxDD2ESuzt8qJXp5vBF1dfaBFTO5enxBJYVIF2JyeSwDAPOJiYTdsz9ssVolmx6p9yKSTuhuFISyU4xOOcU4wOzAfMAcGBSsOAwIaBBSPRDVaFWhKRqBSQvxQV/NpiUuTawQUxxNV8/5sOf5HrarXJESyg2NwXl4CAgfQ\",\r\n \"password\": \"Password\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "54f1aaec-7840-4c05-8e9e-207bbdf0d45d" + "14fe5e66-e7da-4587-acd2-83b83ace16a5" ], "Accept-Language": [ "en-US" @@ -143,7 +143,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -160,31 +160,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACwQ=\"" + "\"AAAAAAAAPS0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "746fce0f-913c-47df-b6ec-9e100254922f" + "4db7e046-aa06-4e72-90fd-d12590ecbf0b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "d4283372-4dcb-456c-9c97-1c0cf9abac93" + "e912c060-f6c7-4263-aac8-c3f6218e0218" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193430Z:d4283372-4dcb-456c-9c97-1c0cf9abac93" + "WESTUS:20200721T164140Z:e912c060-f6c7-4263-aac8-c3f6218e0218" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:30 GMT" + "Tue, 21 Jul 2020 16:41:40 GMT" ], "Content-Length": [ "433" @@ -196,18 +196,18 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8581\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5439\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg1ODE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")] "RequestBody": "{\r\n \"properties\": {\r\n \"data\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAgpyA5NFrZbjwICB9AEggKQpSy2W1iM8pd8/WyI0+q4uvY6SpvRXTpUfBLl7jlNCPOt847nq5zqQggOQSaqP/4zi08CcmQzaQRmHf5FfMMeYJDp6rGLS8ouyt5ElwMHBZWrsuF49dwi5S73AtBRX128CXCc+qKOlgnXM9PpW+LSJ9J4SWS9B2wC0YQfIGtC/niuLcHDVP+zGwXd+fT06nmNR3SzjfzEfHROM/TyOWHMWAlas6/LXIqXpRSl6igWK7SuMDxWZvdr/QC1ahsptkkF7nHq1RC57o6ru7wxkaANwFQXXhBuh9uQ32Szg2nemfLP7jTcOHcUPK32tU7TuGT5osXMbAVHelPFGzNEPAEb6mNfla2cuILVX/QTqqPqjxTGGn8qBf2TtDSHedBSaRqPO62hRbzAfpeSagG6iFWKGeGCvo8LwVnx3pZM36Tu5GBNhdKhOGZvtXeiZH7XoMAER1O8dJblKfffhzl4MG7BCcT5nftU6NpS3TfRC9hvGX9iqZKjZd6Npvycmo+qlld6g86QDNq28NEHLz0xG809IUunp5DxKptZhEHwZhU0EmATucmjZhrDDvembG58gaU/PSBRlwVNjK+h//Gm4jCAQ6l0iR5COqScNnxr9p5ZhmJvKJQ1OpFw0zXgeWi6MTOpNfMwibytjn+28YPe9mUNoUvcb0u6mjxmn+wupHfELXADRuSZ8CF5eRk9pE+SrbrCn6wyoaFY/vdBSxsnNh37HXpCEEcOm19pbQNPfuVktRmU910zhQntm58SVhyNIlBOA0LGllRNxZndwHdTlcqbIE+HRDn7Fnj3uf0xu+9cOvPkIalluKsySbDKQXJyg3p9QQZJIiFpp6jXit+DHmf7d9mZ0G7eoKFtI2yqLDT68mYxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADAAOAAxAEYAMwBCADMAQwAtAEQANQA0ADMALQA0AEEANwAwAC0AOAA3ADcANgAtADkAMgA1AEEARAAxADgARQA2ADgAQwBGAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIvqDlcIY1iqcCAgfQgIICmE7Jw2F3UXilr+Ig+EAVrb2B3zG3rYosQY3iikLJ73ztGs/qiNCr21CxKeoj4mBzLFX+oi4DhvJBDp7PkTIF9z7CKzw7XcVwgmLqfBHYh9lp+lrLk2c3wmJllb06MKtblY7OYp9sNr5f3vB6J4uIE6+R+70oLmB2BhcToytfETjbeyKuFGS+3YhoHwCloMNTu73uXmBDwoPz+Wot7Fq3aZm1Sc5A5Qz68BZhvOz+zR4twH11c79yzlMHzdqpD1aRCLdbXtVrqrjEk7tuwqWQmWAOuPvRAN7oksqO2Gw7w8gx1kqkRKYkYuzrj4benZPsZwT8qXZPCZ5iM+iYImvPQkPxSTmM0O3gxbtK1/Xu0cCZSpNy1yJQo0fyzEMMCbLKYVWjK+0ymNww7bd3ubWW358oLE2U+6Oe7mmtXgZzSVH74vaes/ce1zEm+paItCqfHXe1fo4Qo7s3jfTrRohYw7LWD+uVObdKi8Dg7fUy8/DXomgWn4qP8I33n6Y0LCMrzKUoIe6zhsWBpFobwprlz/jWvASkbdp8ou16Vx6jTf3EwXCnWcRmXXNuPFPOo5znBLs98raCe0546bbcq7jSZr5Sg11qBX5N+N3Bv/eup7qQKAnivAvBOAx6533LzR3fZfe7AN0dOEC2D079Vg0t0o+JBPd7mLxIF54BnHoy5OlRCg0g0ol6R9iN3HlgUbMJWL2dFEoU+kjMVNTUKykEh/Q4Zh/ug9lnyObHsDTzZwr3qe0L308lh9Ko20e/aCFS8YLtTv1qlewKtz/BIxck8vDBsY61hrymbVvlxDD2ESuzt8qJXp5vBF1dfaBFTO5enxBJYVIF2JyeSwDAPOJiYTdsz9ssVolmx6p9yKSTuhuFISyU4xOOcU4wOzAfMAcGBSsOAwIaBBSPRDVaFWhKRqBSQvxQV/NpiUuTawQUxxNV8/5sOf5HrarXJESyg2NwXl4CAgfQ\",\r\n \"password\": \"Password\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f33d8812-2695-4e7c-bf79-e53c1677c7c8" + "f61053ce-7481-4c04-a1e6-377b76fb3074" ], "If-Match": [ "*" @@ -219,7 +219,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -236,31 +236,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACwY=\"" + "\"AAAAAAAAPS8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7b1e9904-3053-4e12-ab51-7dd2ead4b665" + "5f1d87dc-5b98-40d5-b8d3-2d6c66d02ee2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "911358ae-74ae-45fc-babf-c0fe20e1b9cb" + "1f055650-300f-4e9c-a064-7f01cdfe78f1" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193432Z:911358ae-74ae-45fc-babf-c0fe20e1b9cb" + "WESTUS:20200721T164141Z:1f055650-300f-4e9c-a064-7f01cdfe78f1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:32 GMT" + "Tue, 21 Jul 2020 16:41:41 GMT" ], "Content-Length": [ "433" @@ -272,17 +272,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8581\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5439\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg1ODE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd1efe21-1b93-4126-a072-f112b23f9e9d" + "9f81017b-6629-448d-b454-e684a5f8f752" ], "Accept-Language": [ "en-US" @@ -291,7 +291,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -302,31 +302,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACwQ=\"" + "\"AAAAAAAAPS0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c2c31f17-abd2-45b8-939b-90cbcb0d21d1" + "0199758a-9baa-4693-949b-2ac533bc34aa" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "2c7b06d0-db1b-4293-a707-03d5f015945b" + "85e934f6-df17-4d80-9338-f3064e519be2" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193431Z:2c7b06d0-db1b-4293-a707-03d5f015945b" + "WESTUS:20200721T164140Z:85e934f6-df17-4d80-9338-f3064e519be2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:30 GMT" + "Tue, 21 Jul 2020 16:41:40 GMT" ], "Content-Length": [ "433" @@ -338,17 +338,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8581\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5439\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg1ODE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "970e8639-a46b-4938-94c7-3fb36a956c6d" + "bec02abf-7c48-457f-a7ba-086527bbaadc" ], "Accept-Language": [ "en-US" @@ -357,7 +357,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -368,31 +368,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACwQ=\"" + "\"AAAAAAAAPS0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e3c560aa-4fcb-4275-9ab4-cd7401aa255f" + "2e227af3-f8b1-4b3e-abcd-d9579a02bc66" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "b357ecd4-9284-4da7-aaaa-9f8a654d1dc8" + "b1e29ef9-72b5-4fb5-8f87-998f4fc4b37e" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193431Z:b357ecd4-9284-4da7-aaaa-9f8a654d1dc8" + "WESTUS:20200721T164141Z:b1e29ef9-72b5-4fb5-8f87-998f4fc4b37e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:31 GMT" + "Tue, 21 Jul 2020 16:41:41 GMT" ], "Content-Length": [ "433" @@ -404,17 +404,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8581\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5439\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg1ODE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "370968b3-013a-4a30-b1b1-409e77bb541b" + "aaa025e7-d8ea-42ac-8d5b-7498e413e0c6" ], "Accept-Language": [ "en-US" @@ -423,7 +423,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -434,31 +434,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACwQ=\"" + "\"AAAAAAAAPS0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "67dc88a2-0a92-4013-93b0-44108d1d864a" + "cfea42c8-00a8-474f-95d0-9fa87c84aab6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "ac9b3b74-1266-49a3-b36c-5d236f5803a7" + "53eb6ab5-3ef9-479e-bc3e-75ba36bb9bbc" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193431Z:ac9b3b74-1266-49a3-b36c-5d236f5803a7" + "WESTUS:20200721T164141Z:53eb6ab5-3ef9-479e-bc3e-75ba36bb9bbc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:31 GMT" + "Tue, 21 Jul 2020 16:41:41 GMT" ], "Content-Length": [ "433" @@ -470,17 +470,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8581\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5439\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg1ODE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f4c7a76-f902-4c99-afda-856eb103f899" + "2f5c130d-19d3-422c-b54b-00c3dd8f2f72" ], "Accept-Language": [ "en-US" @@ -489,7 +489,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -500,31 +500,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACwY=\"" + "\"AAAAAAAAPS8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "71bead74-eb88-42a1-b452-da6c1f9bc4cc" + "2acd521b-5fa9-44f8-827f-b796f81af184" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "8fa1796a-e0be-4c57-bdf2-db30437d71f3" + "973fa7ed-56fe-4e19-b9f2-61dd6d53e7a3" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193432Z:8fa1796a-e0be-4c57-bdf2-db30437d71f3" + "WESTUS:20200721T164142Z:973fa7ed-56fe-4e19-b9f2-61dd6d53e7a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:32 GMT" + "Tue, 21 Jul 2020 16:41:42 GMT" ], "Content-Length": [ "433" @@ -536,17 +536,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8581\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5439\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg1ODE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9063c7bf-acb1-4c59-aff3-a828c930bc37" + "7b899b81-ae3c-43f2-b6bc-1cce22f87335" ], "Accept-Language": [ "en-US" @@ -555,7 +555,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -569,25 +569,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e4d473d-c836-4778-b494-ec82ce6e64e8" + "480c5fe3-b4bc-4e07-a3b0-42261489500e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-correlation-request-id": [ - "2e6a24d3-051b-44b4-bf85-6279094b29c3" + "5aa1de4b-440b-45b0-bd04-84e2ad01e34b" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193433Z:2e6a24d3-051b-44b4-bf85-6279094b29c3" + "WESTUS:20200721T164142Z:5aa1de4b-440b-45b0-bd04-84e2ad01e34b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:33 GMT" + "Tue, 21 Jul 2020 16:41:42 GMT" ], "Content-Length": [ "87" @@ -603,13 +603,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8581?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczg1ODE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8eeca28d-9d5b-4f5d-b744-baf81edf439a" + "6c530d1f-a021-4bc7-8dd1-74147cba77e5" ], "If-Match": [ "*" @@ -621,7 +621,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -635,7 +635,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "77050f90-a202-44a5-ae7d-47b44d275853" + "9eead4e9-95b9-4926-9be0-9ed77326a502" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -644,16 +644,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "58aecc0a-a0bc-4db9-a98a-ea586fac6da7" + "1bb37cbd-6312-4d91-8946-99b487f57208" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193433Z:58aecc0a-a0bc-4db9-a98a-ea586fac6da7" + "WESTUS:20200721T164142Z:1bb37cbd-6312-4d91-8946-99b487f57208" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:33 GMT" + "Tue, 21 Jul 2020 16:41:42 GMT" ], "Expires": [ "-1" @@ -668,7 +668,7 @@ ], "Names": { "": [ - "ps8581" + "ps5439" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/DiagnosticCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/DiagnosticCrudTest.json index 006b57334ab6..fc27bd559382 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/DiagnosticCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/DiagnosticCrudTest.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e4e3a72-a556-4a73-873c-37a7f688dfb8" + "6ffe4731-20a6-4f11-9798-2b40ea3815a1" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -30,25 +30,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f9a457a2-ea5c-4b2c-9170-b1e1d07d3867" + "4c025c77-780e-47b0-8549-2d7f3e121588" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11998" ], "x-ms-correlation-request-id": [ - "e04dc2e5-d7b2-4061-bd99-b88ecfd23af7" + "06558bc6-f692-4e26-80ee-bd2aba434e87" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193316Z:e04dc2e5-d7b2-4061-bd99-b88ecfd23af7" + "WESTUS:20200721T164030Z:06558bc6-f692-4e26-80ee-bd2aba434e87" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:15 GMT" + "Tue, 21 Jul 2020 16:40:30 GMT" ], "Content-Length": [ "34" @@ -70,7 +70,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29b37164-9f93-45b9-8013-caabfd8d14b1" + "e4815268-0ad8-4e76-b441-8f6e3d919f48" ], "Accept-Language": [ "en-US" @@ -79,7 +79,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -93,25 +93,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4e0c5d60-6e29-443f-bac4-31c29b8e00a8" + "6ab7ab11-ff4c-4fb3-a16b-83a5090d3b84" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11995" ], "x-ms-correlation-request-id": [ - "4b6fc2b1-91fc-4114-a1a2-cf471e0a921c" + "35709db1-0dcd-49a0-adc1-f9906ee3f99c" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193323Z:4b6fc2b1-91fc-4114-a1a2-cf471e0a921c" + "WESTUS:20200721T164036Z:35709db1-0dcd-49a0-adc1-f9906ee3f99c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:23 GMT" + "Tue, 21 Jul 2020 16:40:36 GMT" ], "Content-Length": [ "34" @@ -127,13 +127,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4801?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM0ODAxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps3806?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMzODA2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps1433\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"011661c3-b3bc-450b-9767-d5275b8fd058\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps1386\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"91456f2b-efd7-4190-9b37-71137e3eb705\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "030d4ccb-f91c-44df-bbb0-91651356f3c4" + "93baa819-a06a-4d2b-8edb-4876e9b819b2" ], "Accept-Language": [ "en-US" @@ -142,7 +142,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,31 +159,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACpA=\"" + "\"AAAAAAAAPLw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "13162d28-7959-4a27-8b7a-716cb07e17d3" + "7953463f-ad27-419e-97c9-3861cee2a073" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "0d4ade0e-24bb-4265-b989-c80c268deb76" + "e8cdc266-30e7-48de-992a-f16e53997e88" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193320Z:0d4ade0e-24bb-4265-b989-c80c268deb76" + "WESTUS:20200721T164033Z:e8cdc266-30e7-48de-992a-f16e53997e88" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:19 GMT" + "Tue, 21 Jul 2020 16:40:33 GMT" ], "Content-Length": [ "505" @@ -195,17 +195,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4801\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps4801\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps1433\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5eab27ffa2ca601230023164}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps3806\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps3806\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps1386\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5f171a81a2ca600fe4c296cc}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", "StatusCode": 201 }, { "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2019-12-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps4801\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps3806\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "06fd47fe-b864-4292-8d89-3fde966d6f57" + "8434528f-ecfc-4b00-b10d-a1803da45f3d" ], "Accept-Language": [ "en-US" @@ -214,7 +214,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -231,31 +231,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACpM=\"" + "\"AAAAAAAAPL4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a6d77207-f79b-44cb-8ef1-38496c59f846" + "c4d6ddb5-98da-4518-847f-250589b5e82a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "58284a2a-81b6-4eb0-9985-9228a7fe08d7" + "aa272907-4e43-4717-8f42-2aafe116406e" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193321Z:58284a2a-81b6-4eb0-9985-9228a7fe08d7" + "WESTUS:20200721T164035Z:aa272907-4e43-4717-8f42-2aafe116406e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:21 GMT" + "Tue, 21 Jul 2020 16:40:34 GMT" ], "Content-Length": [ "1398" @@ -267,17 +267,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4801\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps3806\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 100.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}", "StatusCode": 201 }, { "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2019-12-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps4801\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps3806\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "14f48451-4c40-4036-b0e9-7b8595d1d208" + "cbbc7990-8228-4251-989d-27bc26b2ddaa" ], "If-Match": [ "*" @@ -289,7 +289,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -306,31 +306,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACpY=\"" + "\"AAAAAAAAPME=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f74f476-ac66-4d77-a522-b8558c698dce" + "af7a22a5-8708-4a04-bd41-b368a8d4aefc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-correlation-request-id": [ - "d9aea4bf-b126-4c20-97c6-4c5733586625" + "fceb01bb-d582-40c7-ace8-c39f1aabc7e1" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193322Z:d9aea4bf-b126-4c20-97c6-4c5733586625" + "WESTUS:20200721T164035Z:fceb01bb-d582-40c7-ace8-c39f1aabc7e1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:22 GMT" + "Tue, 21 Jul 2020 16:40:35 GMT" ], "Content-Length": [ "1057" @@ -342,7 +342,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4801\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps3806\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}", "StatusCode": 200 }, { @@ -352,7 +352,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "034c8789-b13a-4315-b552-bb6b4ca68847" + "6a7dbc4e-7578-49eb-8a5a-d2949a1ebdbe" ], "Accept-Language": [ "en-US" @@ -361,7 +361,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -372,31 +372,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACpY=\"" + "\"AAAAAAAAPME=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1ef14389-0fa2-4bc3-bf27-8fba055fb13d" + "5b3d53d5-a32b-477a-b7a8-c58ad94a3809" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11997" ], "x-ms-correlation-request-id": [ - "f44feb1d-eff7-407e-8d6d-71f5d9250b23" + "c585ec17-7a97-4130-b1c9-28c99ae81323" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193322Z:f44feb1d-eff7-407e-8d6d-71f5d9250b23" + "WESTUS:20200721T164035Z:c585ec17-7a97-4130-b1c9-28c99ae81323" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:22 GMT" + "Tue, 21 Jul 2020 16:40:35 GMT" ], "Content-Length": [ "1057" @@ -408,7 +408,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4801\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps3806\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}", "StatusCode": 200 }, { @@ -418,7 +418,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c33947d-33e8-4245-8bfe-c7af6117fbc6" + "4ab37b99-8bf4-411f-ace7-8ea85806f4a0" ], "Accept-Language": [ "en-US" @@ -427,7 +427,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -438,31 +438,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACpY=\"" + "\"AAAAAAAAPME=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ab2e5bab-d68f-450a-8b75-5f0059aded72" + "50dde091-b28c-4bde-9ab1-355db49870c0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11996" ], "x-ms-correlation-request-id": [ - "9d1760ef-1886-4aa8-adb7-c5df22b8aeaa" + "d09c27b9-ce42-488d-884b-3ccfb077bfa5" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193322Z:9d1760ef-1886-4aa8-adb7-c5df22b8aeaa" + "WESTUS:20200721T164036Z:d09c27b9-ce42-488d-884b-3ccfb077bfa5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:22 GMT" + "Tue, 21 Jul 2020 16:40:35 GMT" ], "Content-Length": [ "1057" @@ -474,7 +474,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4801\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"applicationinsights\",\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"httpCorrelationProtocol\": \"Legacy\",\r\n \"logClientIp\": true,\r\n \"loggerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps3806\",\r\n \"sampling\": {\r\n \"samplingType\": \"fixed\",\r\n \"percentage\": 50.0\r\n },\r\n \"frontend\": {\r\n \"request\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n },\r\n \"response\": {\r\n \"headers\": [\r\n \"Content-Type\",\r\n \"UserAgent\"\r\n ],\r\n \"body\": {\r\n \"bytes\": 100\r\n }\r\n }\r\n },\r\n \"backend\": null\r\n }\r\n}", "StatusCode": 200 }, { @@ -484,7 +484,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f653dc70-c66c-4369-bd01-944ce46d509e" + "83703d1d-7a0f-4b6a-bf87-c8d2c3bbbd2f" ], "If-Match": [ "*" @@ -496,7 +496,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -510,25 +510,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f7abc154-267f-4178-9fac-dc06fdb9f79a" + "f82c4431-c56d-428c-b921-3f1911910469" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "5ef57028-c2e6-43ef-a700-b46bf34f5d2c" + "a9b5c81e-a8d0-4e76-be65-b568fd8eda50" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193323Z:5ef57028-c2e6-43ef-a700-b46bf34f5d2c" + "WESTUS:20200721T164036Z:a9b5c81e-a8d0-4e76-be65-b568fd8eda50" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:22 GMT" + "Tue, 21 Jul 2020 16:40:35 GMT" ], "Expires": [ "-1" @@ -547,7 +547,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48b05946-133b-443f-b7ab-2f1e042437b5" + "ce49890b-ce18-4df7-ba6a-3c57359222aa" ], "If-Match": [ "*" @@ -559,7 +559,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -573,25 +573,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2445cca2-394c-4451-9df2-36c78f683817" + "5edc8fd6-d9f1-4e7a-8a0b-7a5416839cd7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14998" ], "x-ms-correlation-request-id": [ - "b9bd0c5b-11ff-4f0b-b93b-2f2707ac64a5" + "2d9297a2-00dd-49b2-9371-8f90a21e6d7d" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193323Z:b9bd0c5b-11ff-4f0b-b93b-2f2707ac64a5" + "WESTUS:20200721T164036Z:2d9297a2-00dd-49b2-9371-8f90a21e6d7d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:23 GMT" + "Tue, 21 Jul 2020 16:40:36 GMT" ], "Expires": [ "-1" @@ -601,13 +601,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps4801?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM0ODAxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps3806?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMzODA2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "411c73ba-8212-4ba8-81a0-5621ff52ba5e" + "af79edf3-a95b-47e5-a46f-ef4b0745184e" ], "If-Match": [ "*" @@ -619,7 +619,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -633,25 +633,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5b781af6-495d-44e4-97d2-4e492953850d" + "57b41a75-f57e-43c7-a33c-1787efe57a4d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14997" ], "x-ms-correlation-request-id": [ - "612134e6-8cc9-417c-9eae-becafddcef8f" + "2ac009d2-d36a-47e9-a2ac-637d23e9dc30" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193323Z:612134e6-8cc9-417c-9eae-becafddcef8f" + "WESTUS:20200721T164036Z:2ac009d2-d36a-47e9-a2ac-637d23e9dc30" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:23 GMT" + "Tue, 21 Jul 2020 16:40:36 GMT" ], "Expires": [ "-1" @@ -670,7 +670,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fcfe74e8-1a43-4d7a-a295-9b2bd2ce5f80" + "9646ef27-e9a9-4bbe-b13a-8873dddb3c56" ], "Accept-Language": [ "en-US" @@ -679,7 +679,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -693,25 +693,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5a04030d-6563-455a-82a1-4fdd24cdc01c" + "f79168fa-3aab-45ff-8ca7-d1fb500acd7c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11994" ], "x-ms-correlation-request-id": [ - "7a1ba0dc-8554-4613-a08c-141be058cba8" + "0b66134b-b538-4fd5-b58e-4cd42fae438c" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193323Z:7a1ba0dc-8554-4613-a08c-141be058cba8" + "WESTUS:20200721T164037Z:0b66134b-b538-4fd5-b58e-4cd42fae438c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:23 GMT" + "Tue, 21 Jul 2020 16:40:36 GMT" ], "Content-Length": [ "505" @@ -723,17 +723,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5eab27ffa2ca601230023163\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5eab27ffa2ca601230023163\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5eab27ffa2ca601230023164\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171a81a2ca600fe4c296cb\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5f171a81a2ca600fe4c296cb\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5f171a81a2ca600fe4c296cc\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5eab27ffa2ca601230023163?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVlYWIyN2ZmYTJjYTYwMTIzMDAyMzE2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171a81a2ca600fe4c296cb?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVmMTcxYTgxYTJjYTYwMGZlNGMyOTZjYj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "84d8f931-4894-4397-9de5-8d8efbfbf852" + "e91059cc-5efc-4e30-b3fd-5343f40f8c18" ], "If-Match": [ "*" @@ -745,7 +745,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -759,25 +759,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9d2dc737-d3d9-496e-ad89-e0132e00f822" + "5005d94d-980c-439a-93b3-c7e3f7e6896c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14994" + "14996" ], "x-ms-correlation-request-id": [ - "955b26f3-4832-4579-a857-ad86310a9e40" + "fbf9be15-6fbf-4dcf-a410-bc0c4dcd1de6" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193325Z:955b26f3-4832-4579-a857-ad86310a9e40" + "WESTUS:20200721T164037Z:fbf9be15-6fbf-4dcf-a410-bc0c4dcd1de6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:25 GMT" + "Tue, 21 Jul 2020 16:40:37 GMT" ], "Expires": [ "-1" @@ -792,8 +792,8 @@ ], "Names": { "": [ - "ps4801", - "ps1433" + "ps3806", + "ps1386" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GatewayCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GatewayCrudTest.json new file mode 100644 index 000000000000..6a2cc9e49ad5 --- /dev/null +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GatewayCrudTest.json @@ -0,0 +1,1718 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91b3f803-ecf5-47d4-a305-a9c303d9d8fc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c982be26-a096-4e48-b06f-9c6059aa5f19" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "90ce59dc-bc94-4ec4-8656-3a664e8faf4c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164145Z:90ce59dc-bc94-4ec4-8656-3a664e8faf4c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:45 GMT" + ], + "Content-Length": [ + "34" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c0b03c4a-fddf-494e-aede-2081d653e53e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fa36f2b0-63ff-4223-b1c6-157a31755f5d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "d4abfed1-6351-4a05-901c-bc36be59ed22" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164146Z:d4abfed1-6351-4a05-901c-bc36be59ed22" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:46 GMT" + ], + "Content-Length": [ + "573" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps5610\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps3781\",\r\n \"heartbeat\": []\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps3781\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0fbd8cca-ad2d-4e34-8b45-1deb074610ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "202" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"ND0AAAAAAAA=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dd32cfe8-bd06-4aa2-947e-eab0f2009241" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "7fce697a-dea1-4d8d-9ddb-0e4c858c7a27" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164146Z:7fce697a-dea1-4d8d-9ddb-0e4c858c7a27" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:46 GMT" + ], + "Content-Length": [ + "475" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps5610\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps3781\",\r\n \"heartbeat\": null\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d913fbb-332b-4a8a-ace9-3054d2faae30" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"ND0AAAAAAAA=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e521c888-fa29-42fa-837b-eb17801cf2fa" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "5f7907dd-ecd0-4882-b383-d3981d6542dd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164146Z:5f7907dd-ecd0-4882-b383-d3981d6542dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:46 GMT" + ], + "Content-Length": [ + "473" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps5610\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps3781\",\r\n \"heartbeat\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "898dd3ea-96d4-44a5-876a-d0973325aaf3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"ND0AAAAAAAA=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1bc5d986-bb56-4b4e-9f9b-69c8dea24209" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "5ddb4dab-99f4-4502-9e5b-b67d508a6061" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164147Z:5ddb4dab-99f4-4502-9e5b-b67d508a6061" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:46 GMT" + ], + "Content-Length": [ + "473" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps5610\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps3781\",\r\n \"heartbeat\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73b9a789-3cf2-4153-af44-446cdeb95c6d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"NT0AAAAAAAA=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8cd9e91e-6c0a-4656-b2bf-08a43fbf6b0f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "4cdb877a-140d-4cc2-a3d8-904c5b742de4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164147Z:4cdb877a-140d-4cc2-a3d8-904c5b742de4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:47 GMT" + ], + "Content-Length": [ + "473" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps5610\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps1923\",\r\n \"heartbeat\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6e321f0-7bf0-4f22-8459-b9e5bb5173b1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"Nj0AAAAAAAA=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b0ae19d9-ed02-4c98-bebb-d31eb653b8f7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "93b5859e-f86c-4bd9-ae57-31ea5ffd8d96" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164148Z:93b5859e-f86c-4bd9-ae57-31ea5ffd8d96" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:47 GMT" + ], + "Content-Length": [ + "473" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps5610\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps4428\",\r\n \"heartbeat\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "103268e3-82d9-41ab-b6d1-59278995b7cf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"Nz0AAAAAAAA=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4fea2ffb-d2e5-4b07-867d-2a30b411d2f1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "a4e4775e-ab53-482f-8179-619c6d286de2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164148Z:a4e4775e-ab53-482f-8179-619c6d286de2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:48 GMT" + ], + "Content-Length": [ + "465" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps5610\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps3976\",\r\n \"district\": null,\r\n \"countryOrRegion\": null\r\n },\r\n \"description\": \"ps4428\",\r\n \"heartbeat\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "617b6bee-562e-4ba8-8cfa-5869063d7f61" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b387b76b-22fc-47e1-9118-fd8e5634272d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "e0a5990c-3b5c-4319-9eea-050826e863bf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164151Z:e0a5990c-3b5c-4319-9eea-050826e863bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:51 GMT" + ], + "Content-Length": [ + "83" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Gateway not found.\",\r\n \"details\": null\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps1923\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4c7165b2-ff6d-45c6-8e88-4a11686468e8" + ], + "If-Match": [ + "*" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "202" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e512184e-f455-4475-93d0-006255d6d98f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "84ad2547-e53b-4342-bb10-ed3c494a3e09" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164147Z:84ad2547-e53b-4342-bb10-ed3c494a3e09" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:47 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4428\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d18e86f7-4abb-4cec-87bd-0a3712716fc6" + ], + "If-Match": [ + "*" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "57" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "30c32a0c-f5f8-4253-bd22-c0de273b2b25" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "687d14a9-04b2-4619-881b-d3d758200250" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164147Z:687d14a9-04b2-4619-881b-d3d758200250" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:47 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps3976\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "194cadd9-b8a4-4ad9-9d76-fae65c87b79c" + ], + "If-Match": [ + "*" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "107" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "848fa248-795e-411b-8f76-3ffd9c6139d8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "c51a6567-61b6-40e0-af34-f9c8d04c898a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164148Z:c51a6567-61b6-40e0-af34-f9c8d04c898a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:48 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/listKeys?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7cf6f63-f05e-45c4-acf3-9489b8777e02" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"Nz0AAAAAAAA=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "19804bb1-63ce-455b-b284-4fdc012ec918" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "464a5601-88d2-4cfc-ac64-2648f59b71b7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164148Z:464a5601-88d2-4cfc-ac64-2648f59b71b7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:48 GMT" + ], + "Content-Length": [ + "205" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"primary\": \"3VmgDEOZhND27l/meKJGhphSaMQjhfint88SqfE5/jofBm/oeFuHCn7RYCuk8mXKmmczVYsTEE8wW74G9Q5AwQ==\",\r\n \"secondary\": \"Eyma/lCxpEIOHJ1H60M32kEVUZWeojoGpwzMH1LmiCfBN8lSCJvrVs/P3VcaH6oePJjH4XgtvSBsRDi3JGcLPw==\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e3024ca2-8fe9-4962-ae15-26aab8020e73" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "83aa55d7-2afa-4e0d-b507-eb6b5f23b4c2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "64baf6eb-b5a1-40e5-b62e-8158692bbe49" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164148Z:64baf6eb-b5a1-40e5-b62e-8158692bbe49" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:48 GMT" + ], + "Content-Length": [ + "729" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/apis/echo-api?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestMethod": "PUT", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "20d04600-771e-4673-9374-83065f1f1a1b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAPIk=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7158eeb7-ef9e-44cb-b81e-ac227c324236" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "e82f4d1b-c5d9-404b-bcbc-2bd3f41e585a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164149Z:e82f4d1b-c5d9-404b-bcbc-2bd3f41e585a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:48 GMT" + ], + "Content-Length": [ + "619" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/apis?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4cee81f-671e-44ae-96e4-7de74e89396f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "eac8279d-d1b5-4d12-898f-b05fd562327a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "f246e43f-c71b-45b5-8463-f9890389d7b5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164149Z:f246e43f-c71b-45b5-8463-f9890389d7b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:48 GMT" + ], + "Content-Length": [ + "754" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/apis?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7da58f2f-92f9-4adb-91f5-e1175111e962" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "63cc7303-5bc1-47f0-a45c-2eae325d73bb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "84a76df2-d736-4446-b821-60ef0115caa5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164149Z:84a76df2-d736-4446-b821-60ef0115caa5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:49 GMT" + ], + "Content-Length": [ + "34" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/apis/echo-api?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd0eb0a7-9203-45a1-9bd3-d63be966ccf5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7f71b12e-3f4e-4f25-bcd3-72bc51fc7d52" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "e0d073d8-dd2b-4852-bb0e-e0f9054f9cbe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164149Z:e0d073d8-dd2b-4852-bb0e-e0f9054f9cbe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps3580?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczM1ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")] + "RequestBody": "{\r\n \"properties\": {\r\n \"data\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAgpyA5NFrZbjwICB9AEggKQpSy2W1iM8pd8/WyI0+q4uvY6SpvRXTpUfBLl7jlNCPOt847nq5zqQggOQSaqP/4zi08CcmQzaQRmHf5FfMMeYJDp6rGLS8ouyt5ElwMHBZWrsuF49dwi5S73AtBRX128CXCc+qKOlgnXM9PpW+LSJ9J4SWS9B2wC0YQfIGtC/niuLcHDVP+zGwXd+fT06nmNR3SzjfzEfHROM/TyOWHMWAlas6/LXIqXpRSl6igWK7SuMDxWZvdr/QC1ahsptkkF7nHq1RC57o6ru7wxkaANwFQXXhBuh9uQ32Szg2nemfLP7jTcOHcUPK32tU7TuGT5osXMbAVHelPFGzNEPAEb6mNfla2cuILVX/QTqqPqjxTGGn8qBf2TtDSHedBSaRqPO62hRbzAfpeSagG6iFWKGeGCvo8LwVnx3pZM36Tu5GBNhdKhOGZvtXeiZH7XoMAER1O8dJblKfffhzl4MG7BCcT5nftU6NpS3TfRC9hvGX9iqZKjZd6Npvycmo+qlld6g86QDNq28NEHLz0xG809IUunp5DxKptZhEHwZhU0EmATucmjZhrDDvembG58gaU/PSBRlwVNjK+h//Gm4jCAQ6l0iR5COqScNnxr9p5ZhmJvKJQ1OpFw0zXgeWi6MTOpNfMwibytjn+28YPe9mUNoUvcb0u6mjxmn+wupHfELXADRuSZ8CF5eRk9pE+SrbrCn6wyoaFY/vdBSxsnNh37HXpCEEcOm19pbQNPfuVktRmU910zhQntm58SVhyNIlBOA0LGllRNxZndwHdTlcqbIE+HRDn7Fnj3uf0xu+9cOvPkIalluKsySbDKQXJyg3p9QQZJIiFpp6jXit+DHmf7d9mZ0G7eoKFtI2yqLDT68mYxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADAAOAAxAEYAMwBCADMAQwAtAEQANQA0ADMALQA0AEEANwAwAC0AOAA3ADcANgAtADkAMgA1AEEARAAxADgARQA2ADgAQwBGAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIvqDlcIY1iqcCAgfQgIICmE7Jw2F3UXilr+Ig+EAVrb2B3zG3rYosQY3iikLJ73ztGs/qiNCr21CxKeoj4mBzLFX+oi4DhvJBDp7PkTIF9z7CKzw7XcVwgmLqfBHYh9lp+lrLk2c3wmJllb06MKtblY7OYp9sNr5f3vB6J4uIE6+R+70oLmB2BhcToytfETjbeyKuFGS+3YhoHwCloMNTu73uXmBDwoPz+Wot7Fq3aZm1Sc5A5Qz68BZhvOz+zR4twH11c79yzlMHzdqpD1aRCLdbXtVrqrjEk7tuwqWQmWAOuPvRAN7oksqO2Gw7w8gx1kqkRKYkYuzrj4benZPsZwT8qXZPCZ5iM+iYImvPQkPxSTmM0O3gxbtK1/Xu0cCZSpNy1yJQo0fyzEMMCbLKYVWjK+0ymNww7bd3ubWW358oLE2U+6Oe7mmtXgZzSVH74vaes/ce1zEm+paItCqfHXe1fo4Qo7s3jfTrRohYw7LWD+uVObdKi8Dg7fUy8/DXomgWn4qP8I33n6Y0LCMrzKUoIe6zhsWBpFobwprlz/jWvASkbdp8ou16Vx6jTf3EwXCnWcRmXXNuPFPOo5znBLs98raCe0546bbcq7jSZr5Sg11qBX5N+N3Bv/eup7qQKAnivAvBOAx6533LzR3fZfe7AN0dOEC2D079Vg0t0o+JBPd7mLxIF54BnHoy5OlRCg0g0ol6R9iN3HlgUbMJWL2dFEoU+kjMVNTUKykEh/Q4Zh/ug9lnyObHsDTzZwr3qe0L308lh9Ko20e/aCFS8YLtTv1qlewKtz/BIxck8vDBsY61hrymbVvlxDD2ESuzt8qJXp5vBF1dfaBFTO5enxBJYVIF2JyeSwDAPOJiYTdsz9ssVolmx6p9yKSTuhuFISyU4xOOcU4wOzAfMAcGBSsOAwIaBBSPRDVaFWhKRqBSQvxQV/NpiUuTawQUxxNV8/5sOf5HrarXJESyg2NwXl4CAgfQ\",\r\n \"password\": \"Password\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "645a6b8c-16d7-4d66-802c-631ee6a0ad2d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2493" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAPUc=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ed572414-220f-4390-a478-bd399284d325" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "6d3d17b5-b790-495a-a190-826b02cf8345" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164149Z:6d3d17b5-b790-495a-a190-826b02cf8345" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:49 GMT" + ], + "Content-Length": [ + "433" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps3580\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps3580\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps3580?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczM1ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8bc434b4-692b-40a5-804c-0c777df85a01" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"AAAAAAAAPUc=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "807f7f2e-c01f-4136-bd7d-fb84e78270c0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "98535471-f31a-45e2-aca5-57a671794158" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164150Z:98535471-f31a-45e2-aca5-57a671794158" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:49 GMT" + ], + "Content-Length": [ + "433" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps3580\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps3580\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/hostnameConfigurations/ps404?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9ob3N0bmFtZUNvbmZpZ3VyYXRpb25zL3BzNDA0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hostname\": \"contoso.com\",\r\n \"certificateId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps3580\",\r\n \"negotiateClientCertificate\": false\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "42e3bc24-ff63-4415-bf30-5a857f8ad0f0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "291" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"ST0AAAAAAAA=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "62c5255a-3ef3-46a7-b832-37203437ca94" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "9d995e2e-ab81-4669-ad09-74b23bc445f3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164150Z:9d995e2e-ab81-4669-ad09-74b23bc445f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:50 GMT" + ], + "Content-Length": [ + "674" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/hostnameConfigurations/ps404\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/hostnameConfigurations\",\r\n \"name\": \"ps404\",\r\n \"properties\": {\r\n \"hostname\": \"contoso.com\",\r\n \"certificateId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps3580\",\r\n \"negotiateClientCertificate\": false,\r\n \"tls10Enabled\": false,\r\n \"tls11Enabled\": false,\r\n \"http2Enabled\": true\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/hostnameConfigurations/ps404?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9ob3N0bmFtZUNvbmZpZ3VyYXRpb25zL3BzNDA0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d5fe3ef-0355-4df5-8e20-c4c2ff8f912e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"ST0AAAAAAAA=\"" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "eabc7908-1fe4-4b7c-9100-260d6fa2c5e8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "1d0c3a93-95be-40fe-8149-ca17192a061a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164150Z:1d0c3a93-95be-40fe-8149-ca17192a061a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:50 GMT" + ], + "Content-Length": [ + "674" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/hostnameConfigurations/ps404\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/hostnameConfigurations\",\r\n \"name\": \"ps404\",\r\n \"properties\": {\r\n \"hostname\": \"contoso.com\",\r\n \"certificateId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps3580\",\r\n \"negotiateClientCertificate\": false,\r\n \"tls10Enabled\": false,\r\n \"tls11Enabled\": false,\r\n \"http2Enabled\": true\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/hostnameConfigurations?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9ob3N0bmFtZUNvbmZpZ3VyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3fd2cc0d-e7cb-463a-bcbf-068413f6281e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7e97dac5-a916-4eec-a034-369fe2a1e05e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "4ffa8618-f6ba-47be-9bdf-c120edd8f7b0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164150Z:4ffa8618-f6ba-47be-9bdf-c120edd8f7b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:50 GMT" + ], + "Content-Length": [ + "766" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/hostnameConfigurations/ps404\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/hostnameConfigurations\",\r\n \"name\": \"ps404\",\r\n \"properties\": {\r\n \"hostname\": \"contoso.com\",\r\n \"certificateId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps3580\",\r\n \"negotiateClientCertificate\": false,\r\n \"tls10Enabled\": false,\r\n \"tls11Enabled\": false,\r\n \"http2Enabled\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/hostnameConfigurations/ps404?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9ob3N0bmFtZUNvbmZpZ3VyYXRpb25zL3BzNDA0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9eed8c56-cbb6-44f6-abe2-acb58aaa4932" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b415dca0-53a3-468f-97d2-a87c158627cc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "32f18491-ee75-479b-bb70-f6b89aad7b3d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164151Z:32f18491-ee75-479b-bb70-f6b89aad7b3d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps3580?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczM1ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad1081ff-92a3-4bba-9d0c-40e7e7f1e03e" + ], + "If-Match": [ + "*" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "503ed782-9ef2-479c-a7fb-b3fdadb6cdd8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "d7ac27f7-6187-4971-959d-abdafa9fbabd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164151Z:d7ac27f7-6187-4971-959d-abdafa9fbabd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49b8b18a-d36b-4767-ad73-28bf2a164015" + ], + "If-Match": [ + "*" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3e0cb3bc-7c6b-4429-af40-4f77a170b5b2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "591c97e0-d9a1-4a26-ae4a-245a390281b7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200721T164151Z:591c97e0-d9a1-4a26-ae4a-245a390281b7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 16:41:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "": [ + "ps5610", + "ps404", + "ps3580", + "ps3781", + "ps1570", + "ps6437", + "ps8447", + "ps9962", + "ps1923", + "ps4428", + "ps3976" + ] + }, + "Variables": { + "SubscriptionId": "a200340d-6b82-494d-9dbf-687ba6e33f9e" + } +} \ No newline at end of file diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GroupCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GroupCrudTest.json index 3412abc24500..ea7bf7c5c8a6 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GroupCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/GroupCrudTest.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2910913b-3d16-478c-8950-3b9ae6171a3e" + "18a81d11-e5c5-4034-9adb-5b5dfebd03a0" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -30,7 +30,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "82b806eb-3bd7-4488-931a-1fdefa8703dd" + "ba4b026a-7d32-4af1-977d-9ff358975e2c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -39,16 +39,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "61710fa7-18b3-406e-be26-7b02f69e4970" + "4d112701-9c4d-4519-8936-8f705dde7d81" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193340Z:61710fa7-18b3-406e-be26-7b02f69e4970" + "WESTUS:20200721T164051Z:4d112701-9c4d-4519-8936-8f705dde7d81" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:40 GMT" + "Tue, 21 Jul 2020 16:40:50 GMT" ], "Content-Length": [ "1808" @@ -70,7 +70,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21b612a7-a5e1-42ce-9ec6-525e1357730e" + "be5d348e-181e-4b23-aed7-ee1f3c629dad" ], "Accept-Language": [ "en-US" @@ -79,7 +79,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -96,7 +96,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fa819481-4696-4986-b046-7589b09ef20f" + "c4be8367-4b07-473f-a98c-f593afbdd287" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -105,16 +105,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "bace2b0e-e156-4542-b7f4-2236b854366b" + "0ac85734-c3be-4f86-9804-343763e9016b" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193341Z:bace2b0e-e156-4542-b7f4-2236b854366b" + "WESTUS:20200721T164051Z:0ac85734-c3be-4f86-9804-343763e9016b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:40 GMT" + "Tue, 21 Jul 2020 16:40:51 GMT" ], "Content-Length": [ "562" @@ -136,7 +136,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "860f8bc1-4da5-46f7-818f-e40540cfdbcd" + "b6d2f601-d6e4-4345-8ff8-253687ea05a6" ], "Accept-Language": [ "en-US" @@ -145,7 +145,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -162,7 +162,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cc4de721-3fe2-45fd-a672-76bd3c2d85f5" + "d04d8be5-40d8-4180-9c76-a77154117b0c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -171,16 +171,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "8abd1609-776c-4e29-a300-e3a1dff0b4a7" + "0dc76149-af08-4369-8e16-a12019a73466" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193341Z:8abd1609-776c-4e29-a300-e3a1dff0b4a7" + "WESTUS:20200721T164052Z:0dc76149-af08-4369-8e16-a12019a73466" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:40 GMT" + "Tue, 21 Jul 2020 16:40:51 GMT" ], "Content-Length": [ "518" @@ -202,7 +202,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c87283d4-e50c-4640-9275-1b60aa138fcd" + "474474ce-ac4f-42fc-87c8-32fba98e3bff" ], "Accept-Language": [ "en-US" @@ -211,7 +211,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -228,7 +228,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3d8962ae-1502-41b8-81d1-9d37df869b88" + "381b9250-cf56-4dce-968d-d4b4571b570c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -237,16 +237,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "4cc38be2-1318-4c9e-86c6-c3227f188656" + "4463ee72-2755-44de-8b5e-cc097658d42a" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193341Z:4cc38be2-1318-4c9e-86c6-c3227f188656" + "WESTUS:20200721T164052Z:4463ee72-2755-44de-8b5e-cc097658d42a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:40 GMT" + "Tue, 21 Jul 2020 16:40:51 GMT" ], "Content-Length": [ "538" @@ -262,13 +262,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczgyNDY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps7087\",\r\n \"description\": \"ps4372\",\r\n \"type\": \"custom\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps4054\",\r\n \"description\": \"ps3351\",\r\n \"type\": \"custom\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a639b72a-767d-42be-a2a3-e93ebc4f3644" + "da057424-1414-4846-95a1-3ed7b11920dc" ], "Accept-Language": [ "en-US" @@ -277,7 +277,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -294,13 +294,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACqI=\"" + "\"AAAAAAAAPM0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2b0387bd-7110-48f7-ae1e-b3935993042a" + "66c6b88a-0930-4253-9715-d9b8a6f47526" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -309,16 +309,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "01e61249-d652-4057-8a52-efc19253848a" + "3fb6b047-0de3-452b-8e00-fdce6f125483" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193341Z:01e61249-d652-4057-8a52-efc19253848a" + "WESTUS:20200721T164052Z:3fb6b047-0de3-452b-8e00-fdce6f125483" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:41 GMT" + "Tue, 21 Jul 2020 16:40:51 GMT" ], "Content-Length": [ "403" @@ -330,17 +330,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps8246\",\r\n \"properties\": {\r\n \"displayName\": \"ps7087\",\r\n \"description\": \"ps4372\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps4680\",\r\n \"properties\": {\r\n \"displayName\": \"ps4054\",\r\n \"description\": \"ps3351\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczgyNDY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69ab1045-0013-4a2d-86bf-d2eaf1d8afd4" + "3851b9f7-4610-4b9c-8982-f0ceb26610aa" ], "Accept-Language": [ "en-US" @@ -349,7 +349,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -360,13 +360,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACqI=\"" + "\"AAAAAAAAPM0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b13cfd70-e169-460e-acfa-227796bbcfb9" + "3279da16-5ba8-41b0-a6ec-f5914a8088ac" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -375,16 +375,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "d3f1e989-42df-47f7-9f04-c583aa15cff9" + "57c60766-6b8b-415c-840a-d81e9c03905a" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193341Z:d3f1e989-42df-47f7-9f04-c583aa15cff9" + "WESTUS:20200721T164052Z:57c60766-6b8b-415c-840a-d81e9c03905a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:41 GMT" + "Tue, 21 Jul 2020 16:40:51 GMT" ], "Content-Length": [ "403" @@ -396,17 +396,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps8246\",\r\n \"properties\": {\r\n \"displayName\": \"ps7087\",\r\n \"description\": \"ps4372\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps4680\",\r\n \"properties\": {\r\n \"displayName\": \"ps4054\",\r\n \"description\": \"ps3351\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczgyNDY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aecfb223-b8b0-4845-9289-a0af72b2a464" + "cacc481c-0cdb-4959-aebe-4166d43b29f7" ], "Accept-Language": [ "en-US" @@ -415,7 +415,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -426,13 +426,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACqQ=\"" + "\"AAAAAAAAPM8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d6f9c854-f7c3-4ed8-8a77-c439a79188ee" + "58d48fab-44c8-46ca-8505-b583c3365189" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -441,19 +441,19 @@ "11994" ], "x-ms-correlation-request-id": [ - "9f84048c-6ec4-4ffa-9637-295d13d931f2" + "ebe84916-38dd-4d0a-bde3-1eadb2ddb3b3" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193342Z:9f84048c-6ec4-4ffa-9637-295d13d931f2" + "WESTUS:20200721T164053Z:ebe84916-38dd-4d0a-bde3-1eadb2ddb3b3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:41 GMT" + "Tue, 21 Jul 2020 16:40:52 GMT" ], "Content-Length": [ - "403" + "402" ], "Content-Type": [ "application/json; charset=utf-8" @@ -462,17 +462,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps8246\",\r\n \"properties\": {\r\n \"displayName\": \"ps4152\",\r\n \"description\": \"ps7130\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps4680\",\r\n \"properties\": {\r\n \"displayName\": \"ps225\",\r\n \"description\": \"ps7604\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczgyNDY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3aa1511-2cd8-4587-b24a-0e119f30f84e" + "7cfc2039-98c7-4988-9b12-60f2fb1a4dac" ], "Accept-Language": [ "en-US" @@ -481,7 +481,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -495,7 +495,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "78350357-830c-4107-a514-09b32f950b87" + "8f549e4c-31c6-4943-bcdd-d7beb9c4683c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -504,16 +504,16 @@ "11986" ], "x-ms-correlation-request-id": [ - "d4de054c-510a-415f-8ce2-8afe2e592955" + "0dca6e30-a2da-4b9b-91ad-c920a9d3722e" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193347Z:d4de054c-510a-415f-8ce2-8afe2e592955" + "WESTUS:20200721T164058Z:0dca6e30-a2da-4b9b-91ad-c920a9d3722e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:47 GMT" + "Tue, 21 Jul 2020 16:40:57 GMT" ], "Content-Length": [ "81" @@ -529,13 +529,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczgyNDY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps4152\",\r\n \"description\": \"ps7130\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps225\",\r\n \"description\": \"ps7604\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1c0952e3-ea2b-4bc3-ac89-1047125362cc" + "082a6e4f-dbf2-4ba9-852a-f2fb82f003fa" ], "If-Match": [ "*" @@ -547,13 +547,13 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "87" + "86" ] }, "ResponseHeaders": { @@ -567,7 +567,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a1a98e19-7947-48ed-98e6-4ca19076159d" + "fc9cd263-30e6-4c16-8de2-1ffd43b8ef6f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -576,16 +576,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "19691bc9-fda5-4f6d-9c6b-9d1045058415" + "7dc4c04e-2981-4f32-94ea-c0a3df2198af" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193342Z:19691bc9-fda5-4f6d-9c6b-9d1045058415" + "WESTUS:20200721T164053Z:7dc4c04e-2981-4f32-94ea-c0a3df2198af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:41 GMT" + "Tue, 21 Jul 2020 16:40:52 GMT" ], "Expires": [ "-1" @@ -601,7 +601,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c987685d-af17-4543-8697-80538eea6bf5" + "874a6d45-eb3b-4920-b047-869729c36d93" ], "Accept-Language": [ "en-US" @@ -610,7 +610,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -624,7 +624,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5141ac7f-8186-4a27-9cc0-d1d70d012db2" + "6b698b2a-9039-4357-a526-d723d3de3edd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -633,19 +633,19 @@ "11993" ], "x-ms-correlation-request-id": [ - "28747c64-07eb-414d-ad45-b0ddf787b558" + "3e28dabc-e19a-4436-b0b9-da3cf78df62c" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193342Z:28747c64-07eb-414d-ad45-b0ddf787b558" + "WESTUS:20200721T164053Z:3e28dabc-e19a-4436-b0b9-da3cf78df62c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:41 GMT" + "Tue, 21 Jul 2020 16:40:52 GMT" ], "Content-Length": [ - "1285" + "1287" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,17 +654,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 100,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps8246?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzL3BzODI0Nj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps4680?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzL3BzNDY4MD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82953397-72bc-49e9-8e33-5494f3a488f5" + "12446dc8-fd35-4c3e-8236-9392bf1657f6" ], "Accept-Language": [ "en-US" @@ -673,7 +673,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -684,13 +684,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACqQ=\"" + "\"AAAAAAAAPM8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ee6f8ffb-70f2-4323-a2d4-7cbed7d90c3c" + "bdf5a550-5cbb-4a03-9777-58760c25a0f6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -699,19 +699,19 @@ "1197" ], "x-ms-correlation-request-id": [ - "90023d75-8069-4387-9bb4-fbf90d7d9e15" + "69765349-5d3a-4246-9aa5-966706a76a39" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193342Z:90023d75-8069-4387-9bb4-fbf90d7d9e15" + "WESTUS:20200721T164053Z:69765349-5d3a-4246-9aa5-966706a76a39" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:42 GMT" + "Tue, 21 Jul 2020 16:40:52 GMT" ], "Content-Length": [ - "429" + "428" ], "Content-Type": [ "application/json; charset=utf-8" @@ -720,7 +720,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps8246\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"ps8246\",\r\n \"properties\": {\r\n \"displayName\": \"ps4152\",\r\n \"description\": \"ps7130\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps4680\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"ps4680\",\r\n \"properties\": {\r\n \"displayName\": \"ps225\",\r\n \"description\": \"ps7604\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}", "StatusCode": 201 }, { @@ -730,7 +730,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47561433-d4d0-4519-9e9c-1cce5494015f" + "1c41e3cc-7ecf-4ff0-ac70-cc92b52d7eb0" ], "Accept-Language": [ "en-US" @@ -739,7 +739,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -753,7 +753,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "69e5b3d1-384a-4ac7-b93c-ec71fb0cbceb" + "b7868f2f-03ee-4fdf-82f6-8a806fecf121" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -762,19 +762,19 @@ "11992" ], "x-ms-correlation-request-id": [ - "9e9aa760-8099-4135-a751-fb51f539f611" + "fdd35c75-bc09-468e-8862-7697c24d2eb6" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193343Z:9e9aa760-8099-4135-a751-fb51f539f611" + "WESTUS:20200721T164054Z:fdd35c75-bc09-468e-8862-7697c24d2eb6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:42 GMT" + "Tue, 21 Jul 2020 16:40:53 GMT" ], "Content-Length": [ - "2366" + "2365" ], "Content-Type": [ "application/json; charset=utf-8" @@ -783,7 +783,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps8246\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"ps8246\",\r\n \"properties\": {\r\n \"displayName\": \"ps4152\",\r\n \"description\": \"ps7130\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 4\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps4680\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"ps4680\",\r\n \"properties\": {\r\n \"displayName\": \"ps225\",\r\n \"description\": \"ps7604\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 4\r\n}", "StatusCode": 200 }, { @@ -793,7 +793,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09cd2362-8c86-4dbc-9dc5-0137462f6af7" + "ec547191-a638-4afc-95e6-29172952a22e" ], "Accept-Language": [ "en-US" @@ -802,7 +802,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -816,7 +816,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "58353120-693e-4701-9722-65e76ef00c21" + "b89f0d06-3251-482b-a508-f691025e9ee6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -825,16 +825,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "4e9110a1-44f9-42d8-b510-0bda2eb83178" + "ac6fd5d4-7f4b-49de-85db-4c3473636668" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193343Z:4e9110a1-44f9-42d8-b510-0bda2eb83178" + "WESTUS:20200721T164054Z:ac6fd5d4-7f4b-49de-85db-4c3473636668" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:43 GMT" + "Tue, 21 Jul 2020 16:40:53 GMT" ], "Content-Length": [ "1886" @@ -850,13 +850,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps8246?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzL3BzODI0Nj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps4680?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzL3BzNDY4MD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d602128-4882-49e2-8547-19f4347fd3ce" + "747eab8e-7c11-425a-b455-4946512fd4ff" ], "Accept-Language": [ "en-US" @@ -865,7 +865,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -879,7 +879,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8eca5b5c-d050-49c4-9b02-b13902a8ed87" + "114cb7e8-6b6d-4425-b570-df95923d6b93" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -888,16 +888,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "6da751cb-c057-41cc-b1e8-d94ad0217c24" + "3c1fe3f4-7781-4812-ac2f-7a371083993a" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193343Z:6da751cb-c057-41cc-b1e8-d94ad0217c24" + "WESTUS:20200721T164054Z:3c1fe3f4-7781-4812-ac2f-7a371083993a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:43 GMT" + "Tue, 21 Jul 2020 16:40:53 GMT" ], "Expires": [ "-1" @@ -916,7 +916,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d95ac918-a24c-473c-a756-8089f51b8f60" + "ffbf5899-2908-44aa-ac7e-2478073d76b6" ], "Accept-Language": [ "en-US" @@ -925,7 +925,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -939,7 +939,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "824a8fe8-3b62-4fb8-be97-7f97f70e56c9" + "15ffe4b4-6fbd-403c-88ce-57d6ffedc169" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -948,16 +948,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "7869f902-01f0-49ee-a625-92d5bd845759" + "206aac81-3a51-47af-87ae-5baade181b0f" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193344Z:7869f902-01f0-49ee-a625-92d5bd845759" + "WESTUS:20200721T164055Z:206aac81-3a51-47af-87ae-5baade181b0f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:43 GMT" + "Tue, 21 Jul 2020 16:40:54 GMT" ], "Content-Length": [ "664" @@ -973,13 +973,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246/users/1?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczgyNDYvdXNlcnMvMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680/users/1?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODAvdXNlcnMvMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c31edd5-9204-4e5b-a4cb-df66744b11cf" + "ebf7fee9-b8d4-4e67-a2d6-ada9c36252de" ], "Accept-Language": [ "en-US" @@ -988,7 +988,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -999,13 +999,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACq0=\"" + "\"AAAAAAAAPNg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7ff6e659-8256-4f80-aae5-70714171abdb" + "abca5541-da33-42bb-87da-c20fc5fc9ac0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1014,16 +1014,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "a1b86403-b734-452f-a4ec-b2cc11d9d1f2" + "537371b8-b35a-474c-ac9c-b44a6380a7b0" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193344Z:a1b86403-b734-452f-a4ec-b2cc11d9d1f2" + "WESTUS:20200721T164055Z:537371b8-b35a-474c-ac9c-b44a6380a7b0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:44 GMT" + "Tue, 21 Jul 2020 16:40:55 GMT" ], "Content-Length": [ "504" @@ -1035,7 +1035,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T18:52:14.87Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T18:52:14.87Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n }\r\n}", "StatusCode": 201 }, { @@ -1045,7 +1045,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69cd9147-51de-466b-8b33-768dab8cbe03" + "75921ad6-30db-428b-92ea-01ea402f5f03" ], "Accept-Language": [ "en-US" @@ -1054,7 +1054,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1068,7 +1068,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8efdcac0-f326-4893-8246-62fe8ab79ed5" + "4c6ba2cf-2b4c-4fda-b2a8-f260d514af27" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1077,19 +1077,19 @@ "11989" ], "x-ms-correlation-request-id": [ - "c97d414d-2461-43f0-9689-b039e79424de" + "adb37c53-59ae-4ec8-a354-8923747d3e67" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193345Z:c97d414d-2461-43f0-9689-b039e79424de" + "WESTUS:20200721T164056Z:adb37c53-59ae-4ec8-a354-8923747d3e67" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:45 GMT" + "Tue, 21 Jul 2020 16:40:55 GMT" ], "Content-Length": [ - "1715" + "1714" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1098,7 +1098,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups/ps8246\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"ps8246\",\r\n \"properties\": {\r\n \"displayName\": \"ps4152\",\r\n \"description\": \"ps7130\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups/ps4680\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"ps4680\",\r\n \"properties\": {\r\n \"displayName\": \"ps225\",\r\n \"description\": \"ps7604\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}", "StatusCode": 200 }, { @@ -1108,7 +1108,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "264e9d70-b4a9-4ecc-8b06-f6a5d0e72f54" + "2c0ed1e6-2155-4323-9148-207a3c970c57" ], "Accept-Language": [ "en-US" @@ -1117,7 +1117,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1131,7 +1131,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0a343ddd-d879-413d-a03a-b34d0553f30c" + "fa0d17b4-5bb2-410e-bd73-1080139d40c1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1140,16 +1140,16 @@ "11988" ], "x-ms-correlation-request-id": [ - "5f9eb696-6742-4886-9ec6-af3ad1b9b736" + "b68a74cb-1810-4a2b-92b9-e245a0fbb81e" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193346Z:5f9eb696-6742-4886-9ec6-af3ad1b9b736" + "WESTUS:20200721T164057Z:b68a74cb-1810-4a2b-92b9-e245a0fbb81e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:45 GMT" + "Tue, 21 Jul 2020 16:40:56 GMT" ], "Content-Length": [ "1247" @@ -1165,13 +1165,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246/users/1?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczgyNDYvdXNlcnMvMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680/users/1?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODAvdXNlcnMvMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78b0d75a-c80c-419c-9321-ead9cc4f9e3e" + "0ea40bd7-cf74-4d0b-8756-c574785456bb" ], "Accept-Language": [ "en-US" @@ -1180,7 +1180,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1194,7 +1194,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9ab8503d-4073-46b3-919d-20ef5ef0f196" + "b23d9788-3bfb-4ec2-af27-1f5a25c675ee" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1203,16 +1203,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "e09d20fc-4851-4265-af40-2b6123e23cd5" + "bd2fc3d3-f528-42c8-b31a-ffc8ca57d2f9" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193346Z:e09d20fc-4851-4265-af40-2b6123e23cd5" + "WESTUS:20200721T164057Z:bd2fc3d3-f528-42c8-b31a-ffc8ca57d2f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:45 GMT" + "Tue, 21 Jul 2020 16:40:56 GMT" ], "Expires": [ "-1" @@ -1225,13 +1225,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8583?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczg1ODM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps2123?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczIxMjM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps8833\",\r\n \"description\": \"ps6886\",\r\n \"type\": \"external\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps4516\",\r\n \"description\": \"ps3726\",\r\n \"type\": \"external\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5d0cc6e7-6d61-4346-b52d-e58bfe313fc4" + "f75a32ca-75bc-4b0f-b144-d2ec0a140fb0" ], "Accept-Language": [ "en-US" @@ -1240,7 +1240,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1257,13 +1257,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACrQ=\"" + "\"AAAAAAAAPN8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dceefb32-67b1-476e-9766-0818e5361132" + "404803d1-4926-4b23-8774-2ba9b9691f5c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1272,16 +1272,16 @@ "1195" ], "x-ms-correlation-request-id": [ - "35ad5d9c-1a2c-4da3-997d-047cc4ee9d6a" + "d829c2a7-880f-43ee-9fe9-3420164c0311" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193347Z:35ad5d9c-1a2c-4da3-997d-047cc4ee9d6a" + "WESTUS:20200721T164057Z:d829c2a7-880f-43ee-9fe9-3420164c0311" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:46 GMT" + "Tue, 21 Jul 2020 16:40:56 GMT" ], "Content-Length": [ "417" @@ -1293,17 +1293,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8583\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps8583\",\r\n \"properties\": {\r\n \"displayName\": \"ps8833\",\r\n \"description\": \"ps6886\",\r\n \"builtIn\": false,\r\n \"type\": \"external\",\r\n \"externalId\": \"aad:///groups/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps2123\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps2123\",\r\n \"properties\": {\r\n \"displayName\": \"ps4516\",\r\n \"description\": \"ps3726\",\r\n \"builtIn\": false,\r\n \"type\": \"external\",\r\n \"externalId\": \"aad:///groups/\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8583?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczg1ODM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps2123?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczIxMjM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3301515-72ad-4c10-9a74-196b3830264b" + "d366f20d-ee70-4f86-af8c-18c56e7e1e09" ], "Accept-Language": [ "en-US" @@ -1312,7 +1312,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1323,13 +1323,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACrQ=\"" + "\"AAAAAAAAPN8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "24da983c-fdcc-42fd-8bd1-b23a249896d1" + "5dabdbde-45fc-499b-a80e-3435ce4e63b0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1338,16 +1338,16 @@ "11987" ], "x-ms-correlation-request-id": [ - "47b6e509-8d2d-49c2-ab91-3abd562af766" + "f7d2d5b8-b3a4-40bd-9822-e4596de16ef4" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193347Z:47b6e509-8d2d-49c2-ab91-3abd562af766" + "WESTUS:20200721T164057Z:f7d2d5b8-b3a4-40bd-9822-e4596de16ef4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:46 GMT" + "Tue, 21 Jul 2020 16:40:56 GMT" ], "Content-Length": [ "405" @@ -1359,17 +1359,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8583\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps8583\",\r\n \"properties\": {\r\n \"displayName\": \"ps8833\",\r\n \"description\": \"ps6886\",\r\n \"builtIn\": false,\r\n \"type\": \"external\",\r\n \"externalId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps2123\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps2123\",\r\n \"properties\": {\r\n \"displayName\": \"ps4516\",\r\n \"description\": \"ps3726\",\r\n \"builtIn\": false,\r\n \"type\": \"external\",\r\n \"externalId\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8583?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczg1ODM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps2123?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczIxMjM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb7e634d-b6ab-4166-8b8d-1bec3727f3ce" + "667d216c-5947-4125-9cc3-b2201c053373" ], "Accept-Language": [ "en-US" @@ -1378,7 +1378,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1392,7 +1392,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c4508461-af04-4459-86f6-64e0473428a4" + "7b66a210-2339-4858-be25-8a0f63408bdf" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1401,16 +1401,16 @@ "11985" ], "x-ms-correlation-request-id": [ - "e1338bf8-6b41-4e3b-a20e-8f861308a05a" + "18571117-e38b-44ea-9252-655bdcd7df2c" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193348Z:e1338bf8-6b41-4e3b-a20e-8f861308a05a" + "WESTUS:20200721T164058Z:18571117-e38b-44ea-9252-655bdcd7df2c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:47 GMT" + "Tue, 21 Jul 2020 16:40:57 GMT" ], "Content-Length": [ "81" @@ -1426,13 +1426,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8246?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczgyNDY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dfb56903-6d94-45b0-820a-945ddf718633" + "014a5d47-c599-48b3-8984-9a8578042b9f" ], "If-Match": [ "*" @@ -1444,7 +1444,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1458,7 +1458,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b3a9cbfd-71eb-4f78-af13-d371440d875c" + "38e388f8-0cfb-4d46-9243-d86983a925f7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1467,16 +1467,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "9c28b294-ab6b-4952-a908-36313c998fc3" + "215db46f-e7d6-49ad-9f78-a69d38d322e1" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193347Z:9c28b294-ab6b-4952-a908-36313c998fc3" + "WESTUS:20200721T164058Z:215db46f-e7d6-49ad-9f78-a69d38d322e1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:47 GMT" + "Tue, 21 Jul 2020 16:40:57 GMT" ], "Expires": [ "-1" @@ -1489,13 +1489,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps8583?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczg1ODM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps2123?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczIxMjM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a504a7e0-5207-4de3-8d18-48495f9e6e8a" + "da8d806a-f3a4-49db-8d7b-d8ee65246786" ], "If-Match": [ "*" @@ -1507,7 +1507,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1521,7 +1521,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5822cc4e-36c4-4bd2-a2f4-709cdcfb23f9" + "ee637c56-c8ed-4bbe-a6d7-db90d7e0d356" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1530,16 +1530,16 @@ "14996" ], "x-ms-correlation-request-id": [ - "6355c301-53ae-411b-9289-c4cd0389fcc6" + "7e221242-8dd5-42fe-b267-6286d6657fd5" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193348Z:6355c301-53ae-411b-9289-c4cd0389fcc6" + "WESTUS:20200721T164058Z:7e221242-8dd5-42fe-b267-6286d6657fd5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:47 GMT" + "Tue, 21 Jul 2020 16:40:57 GMT" ], "Expires": [ "-1" @@ -1554,14 +1554,14 @@ ], "Names": { "": [ - "ps8246", - "ps8583", - "ps7087", - "ps4372", - "ps4152", - "ps7130", - "ps8833", - "ps6886" + "ps4680", + "ps2123", + "ps4054", + "ps3351", + "ps225", + "ps7604", + "ps4516", + "ps3726" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderAadB2CCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderAadB2CCrudTest.json index 11607f52105c..7d3665eb36b0 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderAadB2CCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderAadB2CCrudTest.json @@ -4,10 +4,10 @@ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2019-12-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\",\r\n \"clientId\": \"ps9606\",\r\n \"clientSecret\": \"ps2311\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\",\r\n \"clientId\": \"ps5232\",\r\n \"clientSecret\": \"ps7442\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9df8ad8a-a9b2-410c-ae97-3c2d5abc1415" + "95b5f9e7-16de-4cbc-a884-7c555c189c28" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,13 +33,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACp8=\"" + "\"AAAAAAAAPMo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e80c7555-2b14-4cb9-823a-a1682e4b5bb6" + "c539b953-8588-4c25-9bb8-814339dc08ba" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -48,16 +48,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "27f9c616-d1cd-4c2d-89f0-8222180adfa2" + "cd8ad993-2fc4-43da-9245-816182ac568f" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193336Z:27f9c616-d1cd-4c2d-89f0-8222180adfa2" + "WESTUS:20200721T164047Z:cd8ad993-2fc4-43da-9245-816182ac568f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:35 GMT" + "Tue, 21 Jul 2020 16:40:47 GMT" ], "Content-Length": [ "583" @@ -69,7 +69,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps9606\",\r\n \"clientSecret\": \"ps2311\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps5232\",\r\n \"clientSecret\": \"ps7442\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\"\r\n }\r\n}", "StatusCode": 201 }, { @@ -79,7 +79,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3dbd04d2-f554-47d7-99fe-8b3750affb1a" + "6602845c-587d-48a9-b0df-3ba152da2ce7" ], "Accept-Language": [ "en-US" @@ -88,7 +88,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -99,31 +99,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACp8=\"" + "\"AAAAAAAAPMo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b9dc2ddd-7a28-492d-b266-2ab7858e294d" + "96476592-b51f-449e-a653-52e1c306cff2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "b89f22aa-a982-4c80-901f-7bb90fd19fc0" + "0cce1e70-29ca-4045-b21b-81f6e5689c12" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193336Z:b89f22aa-a982-4c80-901f-7bb90fd19fc0" + "WESTUS:20200721T164047Z:0cce1e70-29ca-4045-b21b-81f6e5689c12" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:35 GMT" + "Tue, 21 Jul 2020 16:40:47 GMT" ], "Content-Length": [ "552" @@ -135,7 +135,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps9606\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps5232\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -145,7 +145,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25cb905d-6450-438f-989b-262fd7ac97fb" + "e5a9f58a-0903-4847-840e-11d1d6710203" ], "Accept-Language": [ "en-US" @@ -154,7 +154,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -165,31 +165,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACqA=\"" + "\"AAAAAAAAPMs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "336861f2-82ec-44be-af1d-a45722c16cb7" + "28fe4f5f-07e4-4642-9dfa-ee3667c5e00b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "292c22f8-45d6-42ec-8f3e-c078220af863" + "7f821adc-7ebb-4ee4-af8a-89c05b60b1e5" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193336Z:292c22f8-45d6-42ec-8f3e-c078220af863" + "WESTUS:20200721T164048Z:7f821adc-7ebb-4ee4-af8a-89c05b60b1e5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:35 GMT" + "Tue, 21 Jul 2020 16:40:48 GMT" ], "Content-Length": [ "609" @@ -201,7 +201,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps9606\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\",\r\n \"profileEditingPolicyName\": \"B2C_1_profileediting\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps5232\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\",\r\n \"profileEditingPolicyName\": \"B2C_1_profileediting\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -211,7 +211,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "488fed9a-9185-4a27-9798-302d55adbe64" + "f709d48b-0154-4c4f-b0a4-c7640b2e1a75" ], "Accept-Language": [ "en-US" @@ -220,7 +220,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -234,25 +234,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7dc898ae-3930-4ab1-8233-d4e7c86936fe" + "adb50c89-83df-4a88-9036-0730c6fd3504" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "3df8ed42-461d-405b-932e-5aef4a6ee176" + "d49d7b99-6d48-49a7-be2e-e5eba1366b39" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193337Z:3df8ed42-461d-405b-932e-5aef4a6ee176" + "WESTUS:20200721T164048Z:d49d7b99-6d48-49a7-be2e-e5eba1366b39" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:36 GMT" + "Tue, 21 Jul 2020 16:40:48 GMT" ], "Content-Length": [ "92" @@ -274,7 +274,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58f723d6-5ab6-4178-8c60-6c7d09148e7d" + "6557b96b-9fb3-402d-8d12-1f0bd1b50d10" ], "Accept-Language": [ "en-US" @@ -283,7 +283,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -297,25 +297,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "97538610-b320-4f20-a84a-8a7f7a1fbc39" + "0ae572b0-49a3-4d6d-8fa5-f51809e58e16" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "23eb8fee-cb30-480b-b560-8bb4b50d34cd" + "7fa0051e-ea70-4777-9652-a88ae811ea71" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193337Z:23eb8fee-cb30-480b-b560-8bb4b50d34cd" + "WESTUS:20200721T164048Z:7fa0051e-ea70-4777-9652-a88ae811ea71" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:36 GMT" + "Tue, 21 Jul 2020 16:40:48 GMT" ], "Content-Length": [ "92" @@ -337,7 +337,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "640391af-f11b-4624-add8-4fae8c65239e" + "41dac2fa-3594-4dc6-9023-94bd12fdd5e4" ], "Accept-Language": [ "en-US" @@ -346,7 +346,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -357,13 +357,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACp8=\"" + "\"AAAAAAAAPMo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4ae0e16c-d872-4065-8c36-fa7233901b58" + "534eab47-f5fb-4d60-b76c-7b79147789b0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -372,16 +372,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "b60b9700-5793-440a-86d7-c13e1b7bc9c7" + "177bf4ab-4f7a-4855-ab63-b8ade3b33823" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193336Z:b60b9700-5793-440a-86d7-c13e1b7bc9c7" + "WESTUS:20200721T164047Z:177bf4ab-4f7a-4855-ab63-b8ade3b33823" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:35 GMT" + "Tue, 21 Jul 2020 16:40:47 GMT" ], "Content-Length": [ "25" @@ -393,7 +393,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"clientSecret\": \"ps2311\"\r\n}", + "ResponseBody": "{\r\n \"clientSecret\": \"ps7442\"\r\n}", "StatusCode": 200 }, { @@ -403,7 +403,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83f5ef3f-677e-4d80-bce8-bb5ec6ff586c" + "c3dcdb77-c6f1-4047-8756-c8aeb6edf7dd" ], "Accept-Language": [ "en-US" @@ -412,7 +412,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -423,13 +423,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACqA=\"" + "\"AAAAAAAAPMs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a1a5cd22-e9b7-446f-93dd-f75ffdd0c3a5" + "bee64852-81ca-44a7-adee-adaeeccf0b7b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -438,16 +438,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "1ddbe3dc-5e12-4e85-9c83-bd0121f439af" + "6aabdfd3-19e9-4506-9aa5-0efa35cc98ac" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193336Z:1ddbe3dc-5e12-4e85-9c83-bd0121f439af" + "WESTUS:20200721T164048Z:6aabdfd3-19e9-4506-9aa5-0efa35cc98ac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:36 GMT" + "Tue, 21 Jul 2020 16:40:48 GMT" ], "Content-Length": [ "25" @@ -459,7 +459,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"clientSecret\": \"ps2311\"\r\n}", + "ResponseBody": "{\r\n \"clientSecret\": \"ps7442\"\r\n}", "StatusCode": 200 }, { @@ -469,7 +469,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6e0e9bd-c8f6-431f-97e4-bedf08039910" + "2a8fd0ca-cd9d-4ec8-a53c-1492b73be2bf" ], "Accept-Language": [ "en-US" @@ -478,7 +478,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -492,25 +492,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3053339b-b876-45b9-bcbb-dcd6aba9ecd6" + "dcad5760-fd65-494b-9e28-7e4a58c4fa79" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "327ffb4d-7ce6-4c88-b0e0-0467b8689c2e" + "57fe3fa0-00cf-4ac9-8ff9-cbe180d7b3d8" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193336Z:327ffb4d-7ce6-4c88-b0e0-0467b8689c2e" + "WESTUS:20200721T164047Z:57fe3fa0-00cf-4ac9-8ff9-cbe180d7b3d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:35 GMT" + "Tue, 21 Jul 2020 16:40:47 GMT" ], "Content-Length": [ "652" @@ -522,7 +522,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps9606\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"AadB2C\",\r\n \"properties\": {\r\n \"clientId\": \"ps5232\",\r\n \"type\": \"aadB2C\",\r\n \"authority\": \"login.microsoftonline.com\",\r\n \"allowedTenants\": [\r\n \"alzaslon.onmicrosoft.com\"\r\n ],\r\n \"signupPolicyName\": \"B2C_1_signuppolicy\",\r\n \"signinPolicyName\": \"B2C_1_signinpolicy\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { @@ -532,7 +532,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"profileEditingPolicyName\": \"B2C_1_profileediting\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3a424f00-ec3d-4bd0-be5a-91f4bd5ce5e8" + "904ca949-876b-4a65-9daa-2178b482685b" ], "If-Match": [ "*" @@ -544,7 +544,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,7 +564,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "083c735e-cf42-43b3-8229-f10924076166" + "a59db6f3-30b9-4da4-9074-a43ddfda9e75" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -573,16 +573,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "cb93fb70-95f5-41be-aed6-5d490e81201b" + "f47a327e-44a4-4469-88fd-3dd97907248b" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193336Z:cb93fb70-95f5-41be-aed6-5d490e81201b" + "WESTUS:20200721T164048Z:f47a327e-44a4-4469-88fd-3dd97907248b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:35 GMT" + "Tue, 21 Jul 2020 16:40:48 GMT" ], "Expires": [ "-1" @@ -598,7 +598,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eab49b82-b631-48ed-a4b6-03c2de9ac47d" + "ea70ba1a-5a8d-4ebc-a9b5-a7dc740d4c23" ], "If-Match": [ "*" @@ -610,7 +610,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -624,7 +624,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "65c33a6e-d7bf-44d7-a60d-f9a561885411" + "43be1868-1f47-4a67-8a1d-b378ae58ea3f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -633,16 +633,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "b950e84d-63c8-488b-aea6-5cb8452e2cd6" + "bca1b7f0-d659-430a-b2cf-4b72643a2de3" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193337Z:b950e84d-63c8-488b-aea6-5cb8452e2cd6" + "WESTUS:20200721T164048Z:bca1b7f0-d659-430a-b2cf-4b72643a2de3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:36 GMT" + "Tue, 21 Jul 2020 16:40:48 GMT" ], "Expires": [ "-1" @@ -661,7 +661,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1bd2c66d-c498-4c12-91f1-0193923c2fdb" + "3a0cfdbc-753d-4e3e-b595-b0d28964a5a8" ], "If-Match": [ "*" @@ -673,7 +673,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -687,7 +687,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "90d3359b-dde7-45e7-8177-52d732c8ff61" + "c832cffe-b6a2-4145-b08a-800dd6c2e404" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -696,16 +696,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "22db9c17-5003-42d7-9ac7-195ef63450b5" + "d7afa06a-167c-4c41-8d9d-0331aa645214" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193337Z:22db9c17-5003-42d7-9ac7-195ef63450b5" + "WESTUS:20200721T164048Z:d7afa06a-167c-4c41-8d9d-0331aa645214" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:36 GMT" + "Tue, 21 Jul 2020 16:40:48 GMT" ], "Expires": [ "-1" @@ -717,8 +717,8 @@ ], "Names": { "": [ - "ps9606", - "ps2311" + "ps5232", + "ps7442" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderCrudTest.json index 7bcda296af80..1bf0c1b3bfcd 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/IdentityProviderCrudTest.json @@ -4,10 +4,10 @@ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2019-12-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"clientId\": \"ps7061\",\r\n \"clientSecret\": \"ps2572\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"clientId\": \"ps1122\",\r\n \"clientSecret\": \"ps4771\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "88fe5384-472d-47be-988b-fa77efd809d3" + "db007ae9-4c57-46b2-af7f-26e72749bddd" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,13 +33,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACik=\"" + "\"AAAAAAAAPE0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "25aac983-67ad-4318-a161-2cf01ab9706b" + "e751adad-d4e8-41dc-a1e8-2a9734713186" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -48,16 +48,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "d1300a41-1429-41b8-be76-d466c1f1bf5f" + "7bf11c17-2e22-433b-b6dc-6138dd6b5fed" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193011Z:d1300a41-1429-41b8-be76-d466c1f1bf5f" + "WESTUS:20200721T163640Z:7bf11c17-2e22-433b-b6dc-6138dd6b5fed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:30:10 GMT" + "Tue, 21 Jul 2020 16:36:39 GMT" ], "Content-Length": [ "381" @@ -69,7 +69,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps7061\",\r\n \"clientSecret\": \"ps2572\",\r\n \"type\": \"facebook\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps1122\",\r\n \"clientSecret\": \"ps4771\",\r\n \"type\": \"facebook\"\r\n }\r\n}", "StatusCode": 201 }, { @@ -79,7 +79,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d1f8a13-f27d-4b6c-8f7a-19d354ccaa4c" + "a78da227-df05-4266-8286-31c52c444f28" ], "Accept-Language": [ "en-US" @@ -88,7 +88,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACik=\"" + "\"AAAAAAAAPE0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "69d08ed1-8c85-473b-9c29-380b72bfc311" + "1a7a63c5-c2af-4c45-9682-84e9b4c8e234" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -114,16 +114,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "4f06153a-d65c-45a0-88a1-fa750696391f" + "39ccd953-5735-4bee-9e57-f2ada35add12" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193012Z:4f06153a-d65c-45a0-88a1-fa750696391f" + "WESTUS:20200721T163641Z:39ccd953-5735-4bee-9e57-f2ada35add12" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:30:11 GMT" + "Tue, 21 Jul 2020 16:36:40 GMT" ], "Content-Length": [ "350" @@ -135,7 +135,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps7061\",\r\n \"type\": \"facebook\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps1122\",\r\n \"type\": \"facebook\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -145,7 +145,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d3d0b18-b38a-41cb-b7fc-3c6d42a89bdc" + "84449941-4f4a-40dc-a47e-80460ee38b10" ], "Accept-Language": [ "en-US" @@ -154,7 +154,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -165,13 +165,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACio=\"" + "\"AAAAAAAAPE4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9a76e17d-2301-45f4-9225-ba2f63d404f0" + "7384e70c-c340-4cbf-9a46-eb20c39c2be8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -180,16 +180,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "71fadf02-92f9-47f6-b920-ac7d6ef039c7" + "e7fbdc00-eb2b-4bc1-9aa7-5cd341b58c10" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193012Z:71fadf02-92f9-47f6-b920-ac7d6ef039c7" + "WESTUS:20200721T163642Z:e7fbdc00-eb2b-4bc1-9aa7-5cd341b58c10" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:30:11 GMT" + "Tue, 21 Jul 2020 16:36:42 GMT" ], "Content-Length": [ "350" @@ -201,7 +201,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps7061\",\r\n \"type\": \"facebook\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps1122\",\r\n \"type\": \"facebook\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -211,7 +211,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25432c2e-8896-42c4-b82c-5cdf8d95d294" + "64842fe3-2459-45af-af7f-03c5edecf418" ], "Accept-Language": [ "en-US" @@ -220,7 +220,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -234,7 +234,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "100c19f8-9a2f-46a4-a88e-d763bea42ac3" + "d1307c9a-4b68-4561-86ab-25c03bf12030" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -243,16 +243,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "1a674e70-b777-4f15-8b82-1563dde42575" + "c5f050b1-3794-4fb0-aed9-571bd8871ff2" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193013Z:1a674e70-b777-4f15-8b82-1563dde42575" + "WESTUS:20200721T163642Z:c5f050b1-3794-4fb0-aed9-571bd8871ff2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:30:12 GMT" + "Tue, 21 Jul 2020 16:36:42 GMT" ], "Content-Length": [ "92" @@ -274,7 +274,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44aada45-d5b1-404f-8303-47917228c980" + "6dff80ce-3074-4abf-9838-984692529da7" ], "Accept-Language": [ "en-US" @@ -283,7 +283,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -297,7 +297,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e39752f3-0d1f-4efc-92ac-d4bc4fe92d48" + "0a0cdf03-597e-48ba-8f35-bfb3ba3871bc" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -306,16 +306,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "1aeac7fb-d499-4e8d-9869-447534d745fe" + "55d59ab5-ab6c-48b6-9617-973ea2fe312d" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193013Z:1aeac7fb-d499-4e8d-9869-447534d745fe" + "WESTUS:20200721T163642Z:55d59ab5-ab6c-48b6-9617-973ea2fe312d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:30:12 GMT" + "Tue, 21 Jul 2020 16:36:42 GMT" ], "Content-Length": [ "92" @@ -337,7 +337,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64102333-9a1b-45e2-b3f8-ac4fe0dbb13f" + "c6454070-262c-4bda-9418-040f078d17d6" ], "Accept-Language": [ "en-US" @@ -346,7 +346,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -357,13 +357,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACik=\"" + "\"AAAAAAAAPE0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f82a62f-d7bc-4944-9585-e3194b399a75" + "394dc85a-bfa1-4e5e-9d0f-679c84109d59" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -372,16 +372,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "f57e5fd3-ac21-4a11-b546-124d1abc26bc" + "8686f08d-d29b-43f5-a3e0-41394fb04dee" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193012Z:f57e5fd3-ac21-4a11-b546-124d1abc26bc" + "WESTUS:20200721T163641Z:8686f08d-d29b-43f5-a3e0-41394fb04dee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:30:11 GMT" + "Tue, 21 Jul 2020 16:36:40 GMT" ], "Content-Length": [ "25" @@ -393,7 +393,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"clientSecret\": \"ps2572\"\r\n}", + "ResponseBody": "{\r\n \"clientSecret\": \"ps4771\"\r\n}", "StatusCode": 200 }, { @@ -403,7 +403,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7bf77311-846b-449b-a766-6e49af5e933d" + "6baac71b-3b11-4fd3-950d-61ac6ad597a9" ], "Accept-Language": [ "en-US" @@ -412,7 +412,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -423,13 +423,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACio=\"" + "\"AAAAAAAAPE4=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cbf85524-2583-408a-9c52-25219ae89014" + "2595d0a0-5867-4079-b8a1-88063bcb4665" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -438,16 +438,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "80d24ad6-431a-4515-acaf-8445d9b4643a" + "6988f4be-554b-4c59-9eda-70c0cba56a38" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193012Z:80d24ad6-431a-4515-acaf-8445d9b4643a" + "WESTUS:20200721T163642Z:6988f4be-554b-4c59-9eda-70c0cba56a38" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:30:12 GMT" + "Tue, 21 Jul 2020 16:36:42 GMT" ], "Content-Length": [ "25" @@ -459,7 +459,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"clientSecret\": \"ps4074\"\r\n}", + "ResponseBody": "{\r\n \"clientSecret\": \"ps2526\"\r\n}", "StatusCode": 200 }, { @@ -469,7 +469,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5f3a3c6-75a5-4b9d-bb8a-473416cd1466" + "861a8c7a-6f34-4f68-8d27-0faf85b190c5" ], "Accept-Language": [ "en-US" @@ -478,7 +478,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -492,7 +492,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "899eb4a1-562e-4a9b-8aa3-d695fbb7bbe0" + "9deafbbb-8f34-46c9-afe6-5c75ba5b5760" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -501,16 +501,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "1a91beec-7b2f-4e8b-af31-fa68d59ea5b2" + "f46bf53d-08b6-4d14-be53-4209783dae18" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193012Z:1a91beec-7b2f-4e8b-af31-fa68d59ea5b2" + "WESTUS:20200721T163641Z:f46bf53d-08b6-4d14-be53-4209783dae18" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:30:11 GMT" + "Tue, 21 Jul 2020 16:36:40 GMT" ], "Content-Length": [ "426" @@ -522,17 +522,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps7061\",\r\n \"type\": \"facebook\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"ps1122\",\r\n \"type\": \"facebook\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2019-12-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps4074\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps2526\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dcfcb6d9-f9d5-4a12-af49-004647c6551e" + "870385ea-77b6-410b-aaa6-d0de075eab80" ], "If-Match": [ "*" @@ -544,7 +544,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,7 +564,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "27a0b3e6-b377-4319-8d7c-0d92bb12e177" + "996f5b65-1b9c-4c44-8af8-085b661f1e05" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -573,16 +573,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "ed5fb60c-7286-45b2-b0f8-55a93d75358c" + "b1616352-2110-4e1b-980e-7a4f99b53b27" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193012Z:ed5fb60c-7286-45b2-b0f8-55a93d75358c" + "WESTUS:20200721T163642Z:b1616352-2110-4e1b-980e-7a4f99b53b27" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:30:11 GMT" + "Tue, 21 Jul 2020 16:36:42 GMT" ], "Expires": [ "-1" @@ -598,7 +598,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48d18f5f-51c3-42dd-b7fb-ef80372c21f4" + "ebbb707f-4dfe-45d0-9b51-2f1e83aa54e8" ], "If-Match": [ "*" @@ -610,7 +610,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -624,7 +624,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "661d6b18-1c9d-4d08-80a6-3723c601a43c" + "8516ded8-7ce5-45a9-97a9-c69065251254" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -633,16 +633,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "52a72c4c-ec17-4aa1-a9a2-136b4ebf1b1e" + "cb135994-6f57-4b3d-aa8b-3a8cb9d7b67a" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193013Z:52a72c4c-ec17-4aa1-a9a2-136b4ebf1b1e" + "WESTUS:20200721T163642Z:cb135994-6f57-4b3d-aa8b-3a8cb9d7b67a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:30:12 GMT" + "Tue, 21 Jul 2020 16:36:42 GMT" ], "Expires": [ "-1" @@ -661,7 +661,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36770810-f394-476e-b530-3ded0848048e" + "dc715e90-e74a-4307-a009-949df59ece89" ], "If-Match": [ "*" @@ -673,7 +673,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -687,7 +687,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "24f775f1-008a-4576-933a-96710246e2c6" + "06da2aa8-31de-4465-8ebd-cafc2e997a42" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -696,16 +696,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "9fbbaee0-a10c-46b2-af12-b013a577e12b" + "ed623c70-1763-4693-9cc0-fae60a05c76f" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193013Z:9fbbaee0-a10c-46b2-af12-b013a577e12b" + "WESTUS:20200721T163642Z:ed623c70-1763-4693-9cc0-fae60a05c76f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:30:12 GMT" + "Tue, 21 Jul 2020 16:36:42 GMT" ], "Expires": [ "-1" @@ -717,9 +717,9 @@ ], "Names": { "": [ - "ps7061", - "ps2572", - "ps4074" + "ps1122", + "ps4771", + "ps2526" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/LoggerCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/LoggerCrudTest.json index 24da5cb4f143..8393a67d3258 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/LoggerCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/LoggerCrudTest.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps5774?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM1Nzc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMyMDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")] - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps1005\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"Endpoint=sb://vifedoeventhub.servicebus.windows.net/;SharedAccessKeyName=manage;SharedAccessKey=GQmdXBfPkD/lY7/X1LDAWxDBVszam4GidL+4h0l85TY=;EntityPath=test\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps2857\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"Endpoint=sb://vifedoeventhub.servicebus.windows.net/;SharedAccessKeyName=manage;SharedAccessKey=GQmdXBfPkD/lY7/X1LDAWxDBVszam4GidL+4h0l85TY=;EntityPath=test\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dff2fbe2-0b1d-43bf-a079-7cb787d16874" + "bbf3b8d7-d00f-429c-989d-d2ac6eb015a6" ], "Accept-Language": [ "en-US" @@ -17,7 +17,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34,31 +34,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACyM=\"" + "\"AAAAAAAAPWk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5342bf8d-53b8-4e70-9fb7-12ce69f4005b" + "dedbc3b7-5f45-4d66-b733-85eab5d88eb7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1191" ], "x-ms-correlation-request-id": [ - "55f24658-0c27-481e-af24-7c1407be0434" + "a2d94baa-853d-483f-ab22-7f3cd0d060df" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193458Z:55f24658-0c27-481e-af24-7c1407be0434" + "WESTUS:20200721T164214Z:a2d94baa-853d-483f-ab22-7f3cd0d060df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:57 GMT" + "Tue, 21 Jul 2020 16:42:14 GMT" ], "Content-Length": [ "526" @@ -70,17 +70,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps5774\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps5774\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps1005\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5eab2861a2ca60123002319e}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps2099\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps2857\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5f171ae6a2ca600fe4c29712}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps5774?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM1Nzc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMyMDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps6995\",\r\n \"isBuffered\": false\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps2470\",\r\n \"isBuffered\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2a9a55c5-28d8-4328-8148-09169e9954d0" + "946083ca-73f5-40f4-bbfa-e377b9ab9eb2" ], "If-Match": [ "*" @@ -92,7 +92,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -112,25 +112,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7f37d3d3-bc27-4bba-a172-0ccd1d3973fe" + "69ca2fce-4385-417c-b9b5-3365fe976641" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1190" ], "x-ms-correlation-request-id": [ - "a50da820-5885-4c38-957c-5a968cddd5a7" + "19aefcdd-38e3-4e4c-a7d2-06bfeb773928" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193458Z:a50da820-5885-4c38-957c-5a968cddd5a7" + "WESTUS:20200721T164215Z:19aefcdd-38e3-4e4c-a7d2-06bfeb773928" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:58 GMT" + "Tue, 21 Jul 2020 16:42:14 GMT" ], "Expires": [ "-1" @@ -140,13 +140,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps5774?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM1Nzc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMyMDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa5ef118-f1fb-41a2-ad56-948f09c2ee32" + "f4cfee96-fb30-4d2d-bbce-659b13530d63" ], "Accept-Language": [ "en-US" @@ -155,7 +155,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -166,31 +166,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACyU=\"" + "\"AAAAAAAAPWs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d3de9a98-ffbc-4c1c-834d-3a67d3e7eedc" + "c2ba7841-d1d6-4ad0-96f5-f65a2575d49d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11982" ], "x-ms-correlation-request-id": [ - "2828dae3-ea7a-455b-aca1-f128eefc1f81" + "326bce72-543a-4858-8412-6fa592db1daa" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193459Z:2828dae3-ea7a-455b-aca1-f128eefc1f81" + "WESTUS:20200721T164215Z:326bce72-543a-4858-8412-6fa592db1daa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:58 GMT" + "Tue, 21 Jul 2020 16:42:14 GMT" ], "Content-Length": [ "527" @@ -202,17 +202,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps5774\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps5774\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps6995\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5eab2861a2ca60123002319e}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps2099\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps2470\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5f171ae6a2ca600fe4c29712}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps5774?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM1Nzc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMyMDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12f3739d-d211-413f-bee4-6236bc3d8a86" + "4db1811e-40de-4f5f-af25-35ba460237b2" ], "Accept-Language": [ "en-US" @@ -221,7 +221,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -232,31 +232,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACyU=\"" + "\"AAAAAAAAPWs=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d5b428cb-4661-442b-861d-e611ee2fca92" + "2c53fd65-eef9-4e9f-b8ce-4b7a4143f3fc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11980" ], "x-ms-correlation-request-id": [ - "96cbc2af-7356-4d8d-88d6-4e9b7b9bd29d" + "8a88332e-99f5-405c-9ed4-69823c6c24ed" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193459Z:96cbc2af-7356-4d8d-88d6-4e9b7b9bd29d" + "WESTUS:20200721T164216Z:8a88332e-99f5-405c-9ed4-69823c6c24ed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:58 GMT" + "Tue, 21 Jul 2020 16:42:15 GMT" ], "Content-Length": [ "527" @@ -268,17 +268,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps5774\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps5774\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps6995\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5eab2861a2ca60123002319e}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps2099\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps2470\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5f171ae6a2ca600fe4c29712}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps5774?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM1Nzc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMyMDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aecf7081-3e74-4013-829a-a4343226f395" + "9ecd3527-9ed0-4743-b8ed-350666582d9d" ], "Accept-Language": [ "en-US" @@ -287,7 +287,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -301,25 +301,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b34c5b3a-c09c-427f-99e3-5d8f097d3d9e" + "dd02c32b-bb0b-4fab-a2e5-f99a389b3d7d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11979" ], "x-ms-correlation-request-id": [ - "d75d98c3-4fe2-4e26-8bfe-185eb8a9e107" + "9ae5f774-9cb0-4f64-8804-2b53bc211af5" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193502Z:d75d98c3-4fe2-4e26-8bfe-185eb8a9e107" + "WESTUS:20200721T164219Z:9ae5f774-9cb0-4f64-8804-2b53bc211af5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:35:01 GMT" + "Tue, 21 Jul 2020 16:42:18 GMT" ], "Content-Length": [ "82" @@ -341,7 +341,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d931fd5-9849-4b92-b3de-861d1a8c2a08" + "2716cf04-f29f-4701-991b-c10b776bef78" ], "Accept-Language": [ "en-US" @@ -350,7 +350,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -364,25 +364,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fca7061f-8c21-4df7-a2b5-d479f11d43c8" + "d2ffe6bc-95d7-42de-8978-0682ec143ba4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11981" ], "x-ms-correlation-request-id": [ - "8fcc8c3f-7471-4477-b837-003954f7bbe6" + "f42d59f2-29c7-4539-b9f4-73eff450ff45" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193459Z:8fcc8c3f-7471-4477-b837-003954f7bbe6" + "WESTUS:20200721T164216Z:f42d59f2-29c7-4539-b9f4-73eff450ff45" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:58 GMT" + "Tue, 21 Jul 2020 16:42:15 GMT" ], "Content-Length": [ "627" @@ -394,17 +394,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps5774\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps5774\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps6995\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5eab2861a2ca60123002319e}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps2099\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps2470\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5f171ae6a2ca600fe4c29712}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps6345?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM2MzQ1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps10?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps9135\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"c7d92a9f-7cd0-425a-9b98-6f19536e4cab\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps9053\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"a8481030-6708-4619-a1a2-fd813f8a9773\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "225756c9-8d8a-4bed-a8e2-a9cc6c69d327" + "ebdd984a-13c2-455e-a7e5-00438db19492" ], "Accept-Language": [ "en-US" @@ -413,7 +413,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -430,34 +430,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACyo=\"" + "\"AAAAAAAAPXA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f958ec6f-a3b7-4cfc-b228-ec59f82bd650" + "346859c0-6c3b-411f-8e16-e060579e5499" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1189" ], "x-ms-correlation-request-id": [ - "e247ebdd-9dbc-48b7-a3d1-3be2c4e1d3bf" + "71da3038-8a4e-48f2-9a26-a16410b96634" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193502Z:e247ebdd-9dbc-48b7-a3d1-3be2c4e1d3bf" + "WESTUS:20200721T164219Z:71da3038-8a4e-48f2-9a26-a16410b96634" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:35:01 GMT" + "Tue, 21 Jul 2020 16:42:18 GMT" ], "Content-Length": [ - "505" + "501" ], "Content-Type": [ "application/json; charset=utf-8" @@ -466,17 +466,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps6345\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps6345\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps9135\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5eab2866a2ca6012300231a2}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps10\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps10\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps9053\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5f171aeba2ca600fe4c29716}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps5774?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM1Nzc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMyMDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3057ec4-1a05-446e-bca0-63ab91ceecab" + "3d30c326-1057-4513-836c-aed3fcdaa732" ], "If-Match": [ "*" @@ -488,7 +488,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -502,25 +502,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "11697051-82cd-47b7-92cb-03bcc037d9ec" + "0cc8f6a0-5981-408f-be27-687ee97ad874" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14996" ], "x-ms-correlation-request-id": [ - "e8969d80-d6de-4a88-b103-e6a463ae7dc6" + "1e36ad02-cbe8-49cf-90be-08961df3cea0" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193502Z:e8969d80-d6de-4a88-b103-e6a463ae7dc6" + "WESTUS:20200721T164219Z:1e36ad02-cbe8-49cf-90be-08961df3cea0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:35:01 GMT" + "Tue, 21 Jul 2020 16:42:18 GMT" ], "Expires": [ "-1" @@ -533,13 +533,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps6345?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM2MzQ1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps10?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb52d4b1-dd59-4e45-9bb8-9ed8f70909da" + "f420dd10-00fd-4cbe-ac5a-59881ba1616e" ], "If-Match": [ "*" @@ -551,7 +551,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -565,25 +565,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4b6cbb9d-5bfe-43c9-bd0b-35dbd8830ed6" + "00a72db7-6c6e-4ff1-ac47-6fc9ef13935f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14995" ], "x-ms-correlation-request-id": [ - "e4a411db-28fc-43bc-a752-f1bfc52d018a" + "68913cdb-166a-445c-abd2-64cc1fd4f29d" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193502Z:e4a411db-28fc-43bc-a752-f1bfc52d018a" + "WESTUS:20200721T164219Z:68913cdb-166a-445c-abd2-64cc1fd4f29d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:35:02 GMT" + "Tue, 21 Jul 2020 16:42:19 GMT" ], "Expires": [ "-1" @@ -596,13 +596,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps6345?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM2MzQ1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps10?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3af9f7c7-2935-4b09-850a-74b731f97407" + "e39f2f81-e3bc-4438-b729-8849a4054a6e" ], "Accept-Language": [ "en-US" @@ -611,7 +611,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -625,25 +625,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "31290412-8d16-4433-acfe-a5005af50fc3" + "e20e6a33-26ee-42ff-9c77-123ca70ef5d1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11978" ], "x-ms-correlation-request-id": [ - "04009a8f-c8a6-4f6b-89f3-e7f5acfffac6" + "afd8b5c1-9298-4bf3-a18e-82fb90bbc030" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193503Z:04009a8f-c8a6-4f6b-89f3-e7f5acfffac6" + "WESTUS:20200721T164219Z:afd8b5c1-9298-4bf3-a18e-82fb90bbc030" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:35:02 GMT" + "Tue, 21 Jul 2020 16:42:19 GMT" ], "Content-Length": [ "82" @@ -665,7 +665,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0342a5f8-9e90-4227-b12b-7f48f336e08f" + "fc8e6061-30c6-4969-a5cc-e92ff1ccd5d1" ], "Accept-Language": [ "en-US" @@ -674,7 +674,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -688,25 +688,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6db782ee-6917-4602-8607-f6aca0981a12" + "d4d7c0dc-d716-4244-ba22-cdff788dffb2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11977" ], "x-ms-correlation-request-id": [ - "c07a3beb-5a4d-4b36-8b89-662f5310e830" + "66dd85ea-39b1-4378-9b39-47a6d3270470" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193503Z:c07a3beb-5a4d-4b36-8b89-662f5310e830" + "WESTUS:20200721T164220Z:66dd85ea-39b1-4378-9b39-47a6d3270470" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:35:02 GMT" + "Tue, 21 Jul 2020 16:42:19 GMT" ], "Content-Length": [ "973" @@ -718,17 +718,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5eab2861a2ca60123002319d\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5eab2861a2ca60123002319d\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5eab2861a2ca60123002319e\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5eab2866a2ca6012300231a1\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5eab2866a2ca6012300231a1\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5eab2866a2ca6012300231a2\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171ae6a2ca600fe4c29711\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5f171ae6a2ca600fe4c29711\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5f171ae6a2ca600fe4c29712\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171aeba2ca600fe4c29715\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5f171aeba2ca600fe4c29715\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5f171aeba2ca600fe4c29716\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5eab2861a2ca60123002319d?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVlYWIyODYxYTJjYTYwMTIzMDAyMzE5ZD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171ae6a2ca600fe4c29711?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVmMTcxYWU2YTJjYTYwMGZlNGMyOTcxMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "662ecf4a-06b6-4843-80cc-251947efce60" + "855adfb8-0f87-4eb1-b4e1-61906bc81d71" ], "If-Match": [ "*" @@ -740,7 +740,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -754,25 +754,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5a43f4f6-430e-4dc7-a8a7-1afbf9f674c7" + "1d242caf-a968-446b-a9cf-f984b3609c1a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14994" ], "x-ms-correlation-request-id": [ - "d9c99621-b69b-429f-95ca-982d26bfd25b" + "74bab8d7-e731-466c-9a94-4ab2fad07c22" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193504Z:d9c99621-b69b-429f-95ca-982d26bfd25b" + "WESTUS:20200721T164220Z:74bab8d7-e731-466c-9a94-4ab2fad07c22" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:35:03 GMT" + "Tue, 21 Jul 2020 16:42:19 GMT" ], "Expires": [ "-1" @@ -785,13 +785,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5eab2866a2ca6012300231a1?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVlYWIyODY2YTJjYTYwMTIzMDAyMzFhMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171aeba2ca600fe4c29715?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVmMTcxYWViYTJjYTYwMGZlNGMyOTcxNT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2bd18a1-cf21-4332-807d-a663bc4aa6bc" + "8c37fe9b-ed22-4cb5-8dbd-9ae10c1e2c94" ], "If-Match": [ "*" @@ -803,7 +803,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -817,25 +817,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7d0fb1fa-e49d-4e61-bce4-9c00e65e3d42" + "4be6222b-268f-409a-8d2c-f7940ca86fa9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14993" ], "x-ms-correlation-request-id": [ - "07a6da6b-2119-4654-94ba-4367d41500d5" + "d8e15bef-529f-4a94-be62-aef8d33d3ecd" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193504Z:07a6da6b-2119-4654-94ba-4367d41500d5" + "WESTUS:20200721T164220Z:d8e15bef-529f-4a94-be62-aef8d33d3ecd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:35:03 GMT" + "Tue, 21 Jul 2020 16:42:20 GMT" ], "Expires": [ "-1" @@ -850,11 +850,11 @@ ], "Names": { "": [ - "ps5774", - "ps6345", - "ps1005", - "ps6995", - "ps9135" + "ps2099", + "ps10", + "ps2857", + "ps2470", + "ps9053" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OpenIdConnectProviderCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OpenIdConnectProviderCrudTest.json index 461fa996ba27..4b2c66fbe27f 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OpenIdConnectProviderCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OpenIdConnectProviderCrudTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps9140\",\r\n \"description\": \"ps2101\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9505\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "343b8612-6c2c-4678-999d-db1ef7cd553e" + "ef37f4a9-7aef-4fe0-b415-6a32799263db" ], "Accept-Language": [ "en-US" @@ -16,13 +16,13 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "238" + "237" ] }, "ResponseHeaders": { @@ -33,13 +33,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADCY=\"" + "\"AAAAAAAAPnI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d6c3a0e0-94ee-4470-bd05-8c0677bcbdd3" + "af77b17d-33c3-437f-9e57-2608dc3af8fd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -48,19 +48,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "82a4b5e6-306e-444e-b4e3-046f97f370a5" + "f24711d8-e813-47f6-aed9-c1199b7043df" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194004Z:82a4b5e6-306e-444e-b4e3-046f97f370a5" + "WESTUS:20200721T164733Z:f24711d8-e813-47f6-aed9-c1199b7043df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:04 GMT" + "Tue, 21 Jul 2020 16:47:33 GMT" ], "Content-Length": [ - "515" + "512" ], "Content-Type": [ "application/json; charset=utf-8" @@ -69,17 +69,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps9234\",\r\n \"properties\": {\r\n \"displayName\": \"ps9140\",\r\n \"description\": \"ps2101\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9505\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps214\",\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8016cf55-e145-4103-b840-b315a97b33e7" + "e87cf74d-270a-470b-b3c7-25e1b864a4bc" ], "Accept-Language": [ "en-US" @@ -88,7 +88,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADCY=\"" + "\"AAAAAAAAPnI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f8eddb57-41d0-4a90-bc92-36af80c6751c" + "3ae0ed39-a4bb-4180-9d0f-e2b8bd531766" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -114,19 +114,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "a95b62ae-00fa-47dc-9d47-7dde6bb777c6" + "55737691-948b-424e-88e2-f16cc89b0c23" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194005Z:a95b62ae-00fa-47dc-9d47-7dde6bb777c6" + "WESTUS:20200721T164733Z:55737691-948b-424e-88e2-f16cc89b0c23" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:04 GMT" + "Tue, 21 Jul 2020 16:47:33 GMT" ], "Content-Length": [ - "515" + "512" ], "Content-Type": [ "application/json; charset=utf-8" @@ -135,17 +135,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps9234\",\r\n \"properties\": {\r\n \"displayName\": \"ps9140\",\r\n \"description\": \"ps2101\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9505\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps214\",\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad38559c-aa2d-4025-9244-7d33729102c0" + "3a03fa26-36c1-4198-8f70-35bca5e561d5" ], "Accept-Language": [ "en-US" @@ -154,7 +154,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -165,13 +165,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADCY=\"" + "\"AAAAAAAAPnI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8510bf99-422e-45b0-9236-13fbb4395e80" + "20e5f4f8-a09d-4901-a125-cee501bce9bf" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -180,19 +180,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "44c1356b-6280-4ffd-9bbd-17a331c1d8ac" + "2452d072-315c-4fbb-bf12-5326ecd19613" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194005Z:44c1356b-6280-4ffd-9bbd-17a331c1d8ac" + "WESTUS:20200721T164734Z:2452d072-315c-4fbb-bf12-5326ecd19613" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:04 GMT" + "Tue, 21 Jul 2020 16:47:33 GMT" ], "Content-Length": [ - "515" + "512" ], "Content-Type": [ "application/json; charset=utf-8" @@ -201,17 +201,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps9234\",\r\n \"properties\": {\r\n \"displayName\": \"ps9140\",\r\n \"description\": \"ps2101\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9505\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps214\",\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdff35f4-7298-4dd4-87dd-5cbcd445e832" + "6f22ceb8-a53b-48fc-a630-18723efa7dc8" ], "Accept-Language": [ "en-US" @@ -220,7 +220,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -231,13 +231,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADDs=\"" + "\"AAAAAAAAPoc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "496efa85-7efc-4f49-85d5-978cca39fcce" + "b2628fbd-16d4-473a-b10a-5e0c9c47c0f3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -246,19 +246,19 @@ "11993" ], "x-ms-correlation-request-id": [ - "508b2211-1097-467e-b6f8-8bd183a8d9b3" + "3c2a648e-ce0b-4462-a391-33b548f98091" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194037Z:508b2211-1097-467e-b6f8-8bd183a8d9b3" + "WESTUS:20200721T164808Z:3c2a648e-ce0b-4462-a391-33b548f98091" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:36 GMT" + "Tue, 21 Jul 2020 16:48:08 GMT" ], "Content-Length": [ - "515" + "512" ], "Content-Type": [ "application/json; charset=utf-8" @@ -267,17 +267,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps9234\",\r\n \"properties\": {\r\n \"displayName\": \"ps9140\",\r\n \"description\": \"ps2101\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9505\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps214\",\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff3c4487-8947-4bf3-8a7e-202ef636c703" + "54212c98-7e4b-4540-88ea-d676c3010954" ], "Accept-Language": [ "en-US" @@ -286,7 +286,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -297,13 +297,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADDs=\"" + "\"AAAAAAAAPoc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "175a017e-b7c7-4802-9cc3-394919d12812" + "da6ede01-5fa9-49ae-ac57-68f6f86cbc40" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -312,19 +312,19 @@ "11992" ], "x-ms-correlation-request-id": [ - "1be82cd8-4132-4673-b460-162ed0b83aaa" + "7bf7dde9-d7a8-4355-9074-1d507779e97a" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194037Z:1be82cd8-4132-4673-b460-162ed0b83aaa" + "WESTUS:20200721T164808Z:7bf7dde9-d7a8-4355-9074-1d507779e97a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:36 GMT" + "Tue, 21 Jul 2020 16:48:08 GMT" ], "Content-Length": [ - "515" + "512" ], "Content-Type": [ "application/json; charset=utf-8" @@ -333,17 +333,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps9234\",\r\n \"properties\": {\r\n \"displayName\": \"ps9140\",\r\n \"description\": \"ps2101\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9505\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps214\",\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab4ca26c-58d3-4225-823e-2ca6ccb311d3" + "51f328d3-e9d2-44de-b903-ed7476580503" ], "Accept-Language": [ "en-US" @@ -352,7 +352,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -366,7 +366,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4a33e5bc-f450-44fd-81c7-354aa6097dc9" + "3f250568-a73d-479e-94fd-cb3e4ca91d9b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -375,16 +375,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "ed1e8159-21eb-4c6e-8908-b37e73af5153" + "24dd91e1-c856-40ee-b969-d38abc42bdde" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194038Z:ed1e8159-21eb-4c6e-8908-b37e73af5153" + "WESTUS:20200721T164809Z:24dd91e1-c856-40ee-b969-d38abc42bdde" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:37 GMT" + "Tue, 21 Jul 2020 16:48:09 GMT" ], "Content-Length": [ "97" @@ -400,13 +400,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7d3f2c1-1402-42c9-97ca-b6d3aae0a032" + "708691e6-fbe2-4c94-acb8-977a5ac3f4be" ], "Accept-Language": [ "en-US" @@ -415,7 +415,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -429,7 +429,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8af0b23f-8662-4907-91b1-93e823885d69" + "7818a890-99ac-4437-bc06-208a482e95c1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -438,16 +438,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "5a72433c-adfe-42c1-bebc-c886bf7ca16c" + "182a256f-ad97-437f-9a38-a497954c26d5" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194038Z:5a72433c-adfe-42c1-bebc-c886bf7ca16c" + "WESTUS:20200721T164809Z:182a256f-ad97-437f-9a38-a497954c26d5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:37 GMT" + "Tue, 21 Jul 2020 16:48:09 GMT" ], "Content-Length": [ "97" @@ -463,13 +463,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders?$filter=substringof('ps9140',properties/displayName)&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnM/JGZpbHRlcj1zdWJzdHJpbmdvZigncHM5MTQwJyxwcm9wZXJ0aWVzL2Rpc3BsYXlOYW1lKSZhcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders?$filter=substringof('ps8048',properties/displayName)&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnM/JGZpbHRlcj1zdWJzdHJpbmdvZigncHM4MDQ4Jyxwcm9wZXJ0aWVzL2Rpc3BsYXlOYW1lKSZhcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0757ece-4006-4d87-8513-4a55b9b7b924" + "d6d525df-96e8-4a1f-92dc-d3717ada4952" ], "Accept-Language": [ "en-US" @@ -478,7 +478,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -492,7 +492,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2f2860c0-274f-4d37-85ee-0b98bc069082" + "ed77e26c-246d-48f4-a418-0c22610b3123" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -501,19 +501,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "5f30d561-ba58-4e9a-afbb-35926da0e8bc" + "64a85af7-3377-404c-8bb7-21243d5c2125" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194005Z:5f30d561-ba58-4e9a-afbb-35926da0e8bc" + "WESTUS:20200721T164733Z:64a85af7-3377-404c-8bb7-21243d5c2125" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:04 GMT" + "Tue, 21 Jul 2020 16:47:33 GMT" ], "Content-Length": [ - "599" + "596" ], "Content-Type": [ "application/json; charset=utf-8" @@ -522,7 +522,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps9234\",\r\n \"properties\": {\r\n \"displayName\": \"ps9140\",\r\n \"description\": \"ps2101\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9505\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps214\",\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { @@ -532,7 +532,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4a89997-3339-4fbf-9237-7ec4bfd531b1" + "9b779053-7834-4e20-b515-ca38161ac936" ], "Accept-Language": [ "en-US" @@ -541,7 +541,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -555,7 +555,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cbe80ea2-8b2e-4f80-807c-2d72002457ed" + "5e011acb-91df-47ac-babf-19354c03bf14" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -564,19 +564,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "52290c85-dc0d-4c66-aeb8-587b4332c4aa" + "e92b2ff9-c808-4aa7-b4e4-9ec8335a2356" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194005Z:52290c85-dc0d-4c66-aeb8-587b4332c4aa" + "WESTUS:20200721T164734Z:e92b2ff9-c808-4aa7-b4e4-9ec8335a2356" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:05 GMT" + "Tue, 21 Jul 2020 16:47:34 GMT" ], "Content-Length": [ - "599" + "596" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585,17 +585,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps9234\",\r\n \"properties\": {\r\n \"displayName\": \"ps9140\",\r\n \"description\": \"ps2101\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps9505\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps214\",\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234/listSecrets?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0L2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214/listSecrets?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQvbGlzdFNlY3JldHM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc3ba044-597e-4d2b-b6a8-1a006bf405bf" + "122a9cdd-0e10-4ef3-86ba-226e6072dac9" ], "Accept-Language": [ "en-US" @@ -604,7 +604,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -615,13 +615,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADCY=\"" + "\"AAAAAAAAPnI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "207fe8ba-5304-47b5-ad76-1c88d624a517" + "2637de32-5039-4ad5-9714-b15693aa046d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -630,16 +630,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "39c878c7-f9be-43e5-815a-c3f82bd95fbe" + "1c161a1d-6d6c-43d9-ba45-8f750a2e540a" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194005Z:39c878c7-f9be-43e5-815a-c3f82bd95fbe" + "WESTUS:20200721T164734Z:1c161a1d-6d6c-43d9-ba45-8f750a2e540a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:05 GMT" + "Tue, 21 Jul 2020 16:47:34 GMT" ], "Content-Length": [ "21" @@ -655,13 +655,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234/listSecrets?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0L2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214/listSecrets?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQvbGlzdFNlY3JldHM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bc0cc39-b713-4b4b-a0fb-d1adf8c32e8e" + "af4dd7a2-8f2d-48e3-a58c-3ce1a7dbbba9" ], "Accept-Language": [ "en-US" @@ -670,7 +670,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -681,13 +681,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADDs=\"" + "\"AAAAAAAAPoc=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dee45734-d0f2-4f49-9d67-539d083926ad" + "aa7e9760-5e3f-4c69-af03-b1b3b66677cf" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -696,16 +696,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "2014878f-2cc8-43ae-9ea8-30063282d599" + "f8779db9-23db-4fee-9a8a-2b7071a345d6" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194037Z:2014878f-2cc8-43ae-9ea8-30063282d599" + "WESTUS:20200721T164808Z:f8779db9-23db-4fee-9a8a-2b7071a345d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:36 GMT" + "Tue, 21 Jul 2020 16:48:08 GMT" ], "Content-Length": [ "25" @@ -717,17 +717,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"clientSecret\": \"ps8189\"\r\n}", + "ResponseBody": "{\r\n \"clientSecret\": \"ps5046\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8888?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4ODg4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"openapifromFile\",\r\n \"value\": \"openapi: 3.0.1\\r\\nservers:\\r\\n - url: 'https://developer.uspto.gov/ds-api'\\r\\ninfo:\\r\\n description: >-\\r\\n The Data Set API (DSAPI) allows the public users to discover and search\\r\\n USPTO exported data sets. This is a generic API that allows USPTO users to\\r\\n make any CSV based data files searchable through API. With the help of GET\\r\\n call, it returns the list of data fields that are searchable. With the help\\r\\n of POST call, data can be fetched based on the filters on the field names.\\r\\n Please note that POST call is used to search the actual data. The reason for\\r\\n the POST call is that it allows users to specify any complex search criteria\\r\\n without worry about the GET size limitations as well as encoding of the\\r\\n input parameters.\\r\\n version: 1.0.0\\r\\n title: USPTO Data Set API\\r\\n contact:\\r\\n name: Open Data Portal\\r\\n url: 'https://developer.uspto.gov'\\r\\n email: developer@uspto.gov\\r\\ntags:\\r\\n - name: metadata\\r\\n description: Find out about the data sets\\r\\n - name: search\\r\\n description: Search a data set\\r\\npaths:\\r\\n /:\\r\\n get:\\r\\n tags:\\r\\n - metadata\\r\\n operationId: list-data-sets\\r\\n summary: List available data sets\\r\\n responses:\\r\\n '200':\\r\\n description: Returns a list of data sets\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n $ref: '#/components/schemas/dataSetList'\\r\\n example:\\r\\n {\\r\\n \\\"total\\\": 2,\\r\\n \\\"apis\\\": [\\r\\n {\\r\\n \\\"apiKey\\\": \\\"oa_citations\\\",\\r\\n \\\"apiVersionNumber\\\": \\\"v1\\\",\\r\\n \\\"apiUrl\\\": \\\"https://developer.uspto.gov/ds-api/oa_citations/v1/fields\\\",\\r\\n \\\"apiDocumentationUrl\\\": \\\"https://developer.uspto.gov/ds-api-docs/index.html?url=https://developer.uspto.gov/ds-api/swagger/docs/oa_citations.json\\\"\\r\\n },\\r\\n {\\r\\n \\\"apiKey\\\": \\\"cancer_moonshot\\\",\\r\\n \\\"apiVersionNumber\\\": \\\"v1\\\",\\r\\n \\\"apiUrl\\\": \\\"https://developer.uspto.gov/ds-api/cancer_moonshot/v1/fields\\\",\\r\\n \\\"apiDocumentationUrl\\\": \\\"https://developer.uspto.gov/ds-api-docs/index.html?url=https://developer.uspto.gov/ds-api/swagger/docs/cancer_moonshot.json\\\"\\r\\n }\\r\\n ]\\r\\n }\\r\\n /{dataset}/{version}/fields:\\r\\n get:\\r\\n tags:\\r\\n - metadata\\r\\n summary: >-\\r\\n Provides the general information about the API and the list of fields\\r\\n that can be used to query the dataset.\\r\\n description: >-\\r\\n This GET API returns the list of all the searchable field names that are\\r\\n in the oa_citations. Please see the 'fields' attribute which returns an\\r\\n array of field names. Each field or a combination of fields can be\\r\\n searched using the syntax options shown below.\\r\\n operationId: list-searchable-fields\\r\\n parameters:\\r\\n - name: dataset\\r\\n in: path\\r\\n description: 'Name of the dataset.'\\r\\n required: true\\r\\n example: \\\"oa_citations\\\"\\r\\n schema:\\r\\n type: string\\r\\n - name: version\\r\\n in: path\\r\\n description: Version of the dataset.\\r\\n required: true\\r\\n example: \\\"v1\\\"\\r\\n schema:\\r\\n type: string\\r\\n responses:\\r\\n '200':\\r\\n description: >-\\r\\n The dataset API for the given version is found and it is accessible\\r\\n to consume.\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n type: string\\r\\n '404':\\r\\n description: >-\\r\\n The combination of dataset name and version is not found in the\\r\\n system or it is not published yet to be consumed by public.\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n type: string\\r\\n /{dataset}/{version}/records:\\r\\n post:\\r\\n tags:\\r\\n - search\\r\\n summary: >-\\r\\n Provides search capability for the data set with the given search\\r\\n criteria.\\r\\n description: >-\\r\\n This API is based on Solr/Lucense Search. The data is indexed using\\r\\n SOLR. This GET API returns the list of all the searchable field names\\r\\n that are in the Solr Index. Please see the 'fields' attribute which\\r\\n returns an array of field names. Each field or a combination of fields\\r\\n can be searched using the Solr/Lucene Syntax. Please refer\\r\\n https://lucene.apache.org/core/3_6_2/queryparsersyntax.html#Overview for\\r\\n the query syntax. List of field names that are searchable can be\\r\\n determined using above GET api.\\r\\n operationId: perform-search\\r\\n parameters:\\r\\n - name: version\\r\\n in: path\\r\\n description: Version of the dataset.\\r\\n required: true\\r\\n schema:\\r\\n type: string\\r\\n default: v1\\r\\n - name: dataset\\r\\n in: path\\r\\n description: 'Name of the dataset. In this case, the default value is oa_citations'\\r\\n required: true\\r\\n schema:\\r\\n type: string\\r\\n default: oa_citations\\r\\n responses:\\r\\n '200':\\r\\n description: successful operation\\r\\n content:\\r\\n application/json:\\r\\n schema:\\r\\n type: array\\r\\n items:\\r\\n type: object\\r\\n additionalProperties:\\r\\n type: object\\r\\n '404':\\r\\n description: No matching record found for the given criteria.\\r\\n requestBody:\\r\\n content:\\r\\n application/x-www-form-urlencoded:\\r\\n schema:\\r\\n type: object\\r\\n properties:\\r\\n criteria:\\r\\n description: >-\\r\\n Uses Lucene Query Syntax in the format of\\r\\n propertyName:value, propertyName:[num1 TO num2] and date\\r\\n range format: propertyName:[yyyyMMdd TO yyyyMMdd]. In the\\r\\n response please see the 'docs' element which has the list of\\r\\n record objects. Each record structure would consist of all\\r\\n the fields and their corresponding values.\\r\\n type: string\\r\\n default: '*:*'\\r\\n start:\\r\\n description: Starting record number. Default value is 0.\\r\\n type: integer\\r\\n default: 0\\r\\n rows:\\r\\n description: >-\\r\\n Specify number of rows to be returned. If you run the search\\r\\n with default values, in the response you will see 'numFound'\\r\\n attribute which will tell the number of records available in\\r\\n the dataset.\\r\\n type: integer\\r\\n default: 100\\r\\n required:\\r\\n - criteria\\r\\ncomponents:\\r\\n schemas:\\r\\n dataSetList:\\r\\n type: object\\r\\n properties:\\r\\n total:\\r\\n type: integer\\r\\n apis:\\r\\n type: array\\r\\n items:\\r\\n type: object\\r\\n properties:\\r\\n apiKey:\\r\\n type: string\\r\\n description: To be used as a dataset parameter value\\r\\n apiVersionNumber:\\r\\n type: string\\r\\n description: To be used as a version parameter value\\r\\n apiUrl:\\r\\n type: string\\r\\n format: uriref\\r\\n description: \\\"The URL describing the dataset's fields\\\"\\r\\n apiDocumentationUrl:\\r\\n type: string\\r\\n format: uriref\\r\\n description: A URL to the API console for each API\",\r\n \"format\": \"openapi\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8df36b43-c6f4-49db-80f7-f918898a7434" + "73ba190c-0c2d-4e9a-b3f9-ba0900038c7f" ], "Accept-Language": [ "en-US" @@ -736,7 +736,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -753,13 +753,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8888?api-version=2019-12-01&asyncId=5eab2995a2ca6012300231e8&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711?api-version=2019-12-01&asyncId=5f171c26a2ca600fe4c2975c&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8a4ce165-d066-46eb-ae13-697ed3dff9f7" + "fd612285-0f19-424c-b7ec-839717776688" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -768,16 +768,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "7d700635-34c8-4964-b638-94d239f0b0a7" + "d5065b7a-c048-42d6-a779-5865233598c5" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194006Z:7d700635-34c8-4964-b638-94d239f0b0a7" + "WESTUS:20200721T164734Z:d5065b7a-c048-42d6-a779-5865233598c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:05 GMT" + "Tue, 21 Jul 2020 16:47:34 GMT" ], "Expires": [ "-1" @@ -790,8 +790,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8888?api-version=2019-12-01&asyncId=5eab2995a2ca6012300231e8&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4ODg4P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZWFiMjk5NWEyY2E2MDEyMzAwMjMxZTgmYXN5bmNDb2RlPTIwMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711?api-version=2019-12-01&asyncId=5f171c26a2ca600fe4c2975c&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzExP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWMyNmEyY2E2MDBmZTRjMjk3NWMmYXN5bmNDb2RlPTIwMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -799,7 +799,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -810,13 +810,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADCc=\"" + "\"AAAAAAAAPnM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f0ab58a3-b7b7-437d-aa6b-d254dbcad3a9" + "12e4de5a-f4e8-4bbe-aca2-5992afd3b8e2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -825,16 +825,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "75a272ba-0d8f-4ffb-b0b6-5c02b6575a47" + "6b790212-91bd-4ee0-8b39-39c1f91382b2" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194036Z:75a272ba-0d8f-4ffb-b0b6-5c02b6575a47" + "WESTUS:20200721T164804Z:6b790212-91bd-4ee0-8b39-39c1f91382b2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:35 GMT" + "Tue, 21 Jul 2020 16:48:04 GMT" ], "Content-Length": [ "1381" @@ -846,17 +846,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8888\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8888\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7711\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8888?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4ODg4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c309ac6-79b1-459b-9416-5e3f747df130" + "03607d99-408e-4b3d-9d7b-b09fb9ec2f29" ], "Accept-Language": [ "en-US" @@ -865,7 +865,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -876,13 +876,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADCc=\"" + "\"AAAAAAAAPnM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "582f0248-728c-4e10-bc4c-e28f89fb3536" + "ef3980e6-edf3-4552-a5cf-4cc425b12f9e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -891,16 +891,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "a438b0f0-380f-4717-9eb5-67a4fcc2d813" + "7d376350-fe9a-4ee1-9440-1daf0544b84a" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194036Z:a438b0f0-380f-4717-9eb5-67a4fcc2d813" + "WESTUS:20200721T164805Z:7d376350-fe9a-4ee1-9440-1daf0544b84a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:35 GMT" + "Tue, 21 Jul 2020 16:48:04 GMT" ], "Content-Length": [ "1381" @@ -912,17 +912,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8888\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8888\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7711\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8888%3Brev%3D1?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4ODg4JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711%3Brev%3D1?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzExJTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"authenticationSettings\": {\r\n \"openid\": {\r\n \"openidProviderId\": \"ps9234\",\r\n \"bearerTokenSendingMethods\": [\r\n \"query\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"authenticationSettings\": {\r\n \"openid\": {\r\n \"openidProviderId\": \"ps214\",\r\n \"bearerTokenSendingMethods\": [\r\n \"query\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"type\": \"http\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": \"\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5c5d952f-5c56-40ce-aecf-bc0ed7bb2d63" + "234c4c37-5b50-4ab5-bbd6-483e83c7cab2" ], "If-Match": [ "*" @@ -934,13 +934,13 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1276" + "1275" ] }, "ResponseHeaders": { @@ -951,13 +951,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADDc=\"" + "\"AAAAAAAAPoM=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3e6878b6-d3af-4b69-93c2-95626067c7ee" + "b06973e7-cae7-459b-b8bc-0b4701f0f1f4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -966,19 +966,19 @@ "1197" ], "x-ms-correlation-request-id": [ - "3fdae47c-5d73-4744-8816-c10115311335" + "0f247c43-ade3-4432-8fe1-f147629e1450" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194036Z:3fdae47c-5d73-4744-8816-c10115311335" + "WESTUS:20200721T164807Z:0f247c43-ade3-4432-8fe1-f147629e1450" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:35 GMT" + "Tue, 21 Jul 2020 16:48:07 GMT" ], "Content-Length": [ - "1519" + "1518" ], "Content-Type": [ "application/json; charset=utf-8" @@ -987,17 +987,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8888\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8888\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": {\r\n \"openidProviderId\": \"ps9234\",\r\n \"bearerTokenSendingMethods\": [\r\n \"query\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7711\",\r\n \"properties\": {\r\n \"displayName\": \"USPTO Data Set API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"https://developer.uspto.gov/ds-api\",\r\n \"path\": \"openapifromFile\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": {\r\n \"openidProviderId\": \"ps214\",\r\n \"bearerTokenSendingMethods\": [\r\n \"query\"\r\n ]\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true,\r\n \"apiVersion\": \"\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps8189\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps5046\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d843387a-fa7f-45f8-a3e9-78f635a8102e" + "011b5086-3364-4e04-884b-d5e70c405f8e" ], "If-Match": [ "*" @@ -1009,7 +1009,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1029,7 +1029,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1eb711b1-2688-4356-b856-a1e02348d9b2" + "6318700a-08ab-4a32-a6cd-9ef8c6214a0e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1038,16 +1038,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "126f53cc-ba6b-4c36-bc44-06928e0fd63f" + "e0e18dff-b2cf-4412-b707-a2dfe2b661de" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194037Z:126f53cc-ba6b-4c36-bc44-06928e0fd63f" + "WESTUS:20200721T164808Z:e0e18dff-b2cf-4412-b707-a2dfe2b661de" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:36 GMT" + "Tue, 21 Jul 2020 16:48:07 GMT" ], "Expires": [ "-1" @@ -1057,13 +1057,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8888?deleteRevisions=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4ODg4P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711?deleteRevisions=true&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzExP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf5084b4-3fee-4ef8-b5aa-841a9f1457f5" + "fe2c48c2-cf07-470c-9272-8379a30bdc0d" ], "If-Match": [ "*" @@ -1075,7 +1075,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1089,7 +1089,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "77be8615-97cf-4d0a-b567-42a0db60e5a6" + "0dfd68e7-ac4b-49be-9429-125db1292dc3" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1098,16 +1098,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "f835bc46-f0f9-453e-b0cc-35213b0dafdc" + "38739df0-78d7-45f5-bf74-d7f170dde856" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194037Z:f835bc46-f0f9-453e-b0cc-35213b0dafdc" + "WESTUS:20200721T164808Z:38739df0-78d7-45f5-bf74-d7f170dde856" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:36 GMT" + "Tue, 21 Jul 2020 16:48:08 GMT" ], "Expires": [ "-1" @@ -1120,13 +1120,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8888?deleteRevisions=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4ODg4P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711?deleteRevisions=true&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzExP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f0dd022b-2dd8-4c3f-86c7-2bae02e0ff44" + "d87d97ef-3945-49ef-b879-c8b58e873586" ], "If-Match": [ "*" @@ -1138,7 +1138,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1152,7 +1152,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f8f2298e-001e-4865-8a70-fe7a08e06b7e" + "1d9a9076-ca95-4260-8894-53c7aaae644c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1161,16 +1161,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "337a3b2e-b51d-4fbc-bbbe-2ae3c904660f" + "64bf4388-d251-4c84-b9c3-54cc19a575a8" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194038Z:337a3b2e-b51d-4fbc-bbbe-2ae3c904660f" + "WESTUS:20200721T164809Z:64bf4388-d251-4c84-b9c3-54cc19a575a8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:37 GMT" + "Tue, 21 Jul 2020 16:48:09 GMT" ], "Expires": [ "-1" @@ -1180,13 +1180,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8dc00c06-3994-4fe2-8d14-ce2d7bfe1292" + "71022dd2-14ca-40bd-8c6e-cf062cb3fec3" ], "If-Match": [ "*" @@ -1198,7 +1198,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1212,7 +1212,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "664f437e-9ceb-4e90-9ad3-f554d28212cd" + "be73a1ce-e138-4a85-b3ed-e8921df6c2e5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1221,16 +1221,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "57ed1a63-a761-433e-8366-1c7088d5c43d" + "292978a5-be48-4f0b-886e-b2ee93a4339c" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194037Z:57ed1a63-a761-433e-8366-1c7088d5c43d" + "WESTUS:20200721T164809Z:292978a5-be48-4f0b-886e-b2ee93a4339c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:37 GMT" + "Tue, 21 Jul 2020 16:48:08 GMT" ], "Expires": [ "-1" @@ -1243,13 +1243,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps9234?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHM5MjM0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6fd93d22-32ee-45ae-9859-c30ec6f0c504" + "ca606590-4a08-43fd-88ee-5ca902be2c18" ], "If-Match": [ "*" @@ -1261,7 +1261,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1275,7 +1275,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ba912561-d3e4-4695-9a0b-8b2746d0d9d1" + "9ec0cfa1-28cc-4b48-9739-1825c5eb1401" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1284,16 +1284,16 @@ "14996" ], "x-ms-correlation-request-id": [ - "5d54c379-32cf-4ec3-8fcd-b62d36e3826d" + "b392a62c-1c53-42f3-a86e-cfce743ff0c1" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194038Z:5d54c379-32cf-4ec3-8fcd-b62d36e3826d" + "WESTUS:20200721T164809Z:b392a62c-1c53-42f3-a86e-cfce743ff0c1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:37 GMT" + "Tue, 21 Jul 2020 16:48:09 GMT" ], "Expires": [ "-1" @@ -1305,12 +1305,12 @@ ], "Names": { "": [ - "ps9234", - "ps8888", - "ps9140", - "ps9505", - "ps2101", - "ps8189" + "ps214", + "ps7711", + "ps8048", + "ps991", + "ps1003", + "ps5046" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OperationsCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OperationsCrudTest.json index 7d658cfa92a7..3ed1d213e2be 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OperationsCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/OperationsCrudTest.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ae6d674-2cda-4b07-a079-31953fd241ed" + "952a4f0a-56ac-4edb-9ca6-29338902648d" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -30,25 +30,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "27b8a4ef-5bb1-4a2f-be44-742bd3009f0c" + "7264b6b7-b403-45a2-a6d8-3a40c2f4929b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11989" ], "x-ms-correlation-request-id": [ - "b4b61041-f974-4988-9039-6bd6bf042e75" + "2c24647c-0259-4b48-9a15-e4645a27ee88" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193445Z:b4b61041-f974-4988-9039-6bd6bf042e75" + "WESTUS:20200721T164202Z:2c24647c-0259-4b48-9a15-e4645a27ee88" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:45 GMT" + "Tue, 21 Jul 2020 16:42:02 GMT" ], "Content-Length": [ "729" @@ -70,7 +70,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c1dd90d-5021-4e14-96f2-6dd4a4f69699" + "1cfeca14-bb8c-46b6-a7e0-c0519a5ef6f7" ], "Accept-Language": [ "en-US" @@ -79,7 +79,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -93,25 +93,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bf78368e-22b6-402f-b27e-435cc0137272" + "c4dbf2df-de59-43d4-b44e-99537248f8e1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11988" ], "x-ms-correlation-request-id": [ - "68689bff-3839-459a-a015-a61fde355f26" + "296b6985-87d4-40b8-a69d-6024960055d7" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193445Z:68689bff-3839-459a-a015-a61fde355f26" + "WESTUS:20200721T164202Z:296b6985-87d4-40b8-a69d-6024960055d7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:45 GMT" + "Tue, 21 Jul 2020 16:42:02 GMT" ], "Content-Length": [ "7423" @@ -133,7 +133,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb2ef313-b6e6-44ee-9b5b-3cae57539be3" + "0fe5ecf7-246f-43a7-af8c-352b82b40e05" ], "Accept-Language": [ "en-US" @@ -142,7 +142,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -153,31 +153,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACnY=\"" + "\"AAAAAAAAPJA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2f0ffb25-fe2e-4304-b571-d361df6c645f" + "fd97c7e2-f891-4de1-82b1-499df65279ab" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11987" ], "x-ms-correlation-request-id": [ - "f3d721da-3e23-4366-9a87-b29218575503" + "214985f1-7ac1-4676-866d-7c3ca6adb3c6" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193446Z:f3d721da-3e23-4366-9a87-b29218575503" + "WESTUS:20200721T164203Z:214985f1-7ac1-4676-866d-7c3ca6adb3c6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:45 GMT" + "Tue, 21 Jul 2020 16:42:03 GMT" ], "Content-Length": [ "1269" @@ -199,7 +199,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "588517b6-cba6-4a88-8cdf-35b7fe28d036" + "5d3b94ba-eb26-43be-9001-674d041b9d99" ], "Accept-Language": [ "en-US" @@ -208,7 +208,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -225,25 +225,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f59189c5-dc6a-49fb-bbaf-da12b8ed37b9" + "31562778-119b-4fcb-a2cd-7707cdf3e651" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11986" ], "x-ms-correlation-request-id": [ - "be8772d6-7700-4b1d-833d-450c0f9d8fb2" + "6d8e297a-4d00-474c-8af0-12fe7bd8e0a0" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193446Z:be8772d6-7700-4b1d-833d-450c0f9d8fb2" + "WESTUS:20200721T164203Z:6d8e297a-4d00-474c-8af0-12fe7bd8e0a0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:45 GMT" + "Tue, 21 Jul 2020 16:42:03 GMT" ], "Content-Length": [ "892" @@ -265,7 +265,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ccc11508-4a27-449d-8f7f-61540c7edfe6" + "8bf56f55-1574-4802-a238-12bbf747977a" ], "Accept-Language": [ "en-US" @@ -274,7 +274,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -291,25 +291,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "111996bf-dc64-4b97-971f-02bd4aa286f6" + "793064f0-3d61-4a22-919d-b3ff2817aa9c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11985" ], "x-ms-correlation-request-id": [ - "89c8eabd-5dd2-4d91-8089-d5d1cc6e0994" + "966977e2-6d73-4cb2-b931-8a9deed08bf3" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193446Z:89c8eabd-5dd2-4d91-8089-d5d1cc6e0994" + "WESTUS:20200721T164203Z:966977e2-6d73-4cb2-b931-8a9deed08bf3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:46 GMT" + "Tue, 21 Jul 2020 16:42:03 GMT" ], "Content-Length": [ "902" @@ -331,7 +331,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d008b8d-2f7c-4337-ad7e-58a788b993df" + "7306b9d4-62a5-48d2-8887-49e34c45a161" ], "Accept-Language": [ "en-US" @@ -340,7 +340,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -357,25 +357,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1675a094-8277-4842-a11c-059515f31b4f" + "558d67fe-05a5-4cd7-b006-c744cb3d106d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11984" ], "x-ms-correlation-request-id": [ - "95049791-2bee-4f0c-8492-a1c46cc1828b" + "b1aee6d6-b2ce-41e4-9f69-3266a454738b" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193446Z:95049791-2bee-4f0c-8492-a1c46cc1828b" + "WESTUS:20200721T164203Z:b1aee6d6-b2ce-41e4-9f69-3266a454738b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:46 GMT" + "Tue, 21 Jul 2020 16:42:03 GMT" ], "Content-Length": [ "897" @@ -397,7 +397,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "529c872c-d6c4-4de7-bb5d-01bd2dbf6ed1" + "4c7506c4-69c6-47ff-8b12-6a31bed9b7f2" ], "Accept-Language": [ "en-US" @@ -406,7 +406,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -423,25 +423,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8b4886ab-c0c1-49b1-9bad-aceb23cb372c" + "90a10ff4-222d-4163-8fed-1d0480fad4d5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11983" ], "x-ms-correlation-request-id": [ - "a720c7ab-6c92-475c-ba8e-cd06149353f4" + "ee27a150-aa02-488d-9c15-fcc4398cbdb4" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193447Z:a720c7ab-6c92-475c-ba8e-cd06149353f4" + "WESTUS:20200721T164204Z:ee27a150-aa02-488d-9c15-fcc4398cbdb4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:46 GMT" + "Tue, 21 Jul 2020 16:42:03 GMT" ], "Content-Length": [ "1476" @@ -463,7 +463,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3f5732f-47b4-43af-9b9b-319d2738e62c" + "5a6b9e32-c1a1-4e0b-8c32-5bdc7af09381" ], "Accept-Language": [ "en-US" @@ -472,7 +472,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -489,25 +489,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "96b2c70e-1b31-4730-b7bb-7bf123a1697a" + "e4ddfa40-08f5-434f-9041-a27bf75b9119" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11982" ], "x-ms-correlation-request-id": [ - "ef12964d-bc9b-4ee4-820e-2c8aa5536cf3" + "025a0129-1bc7-4299-8bca-912a95582af6" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193447Z:ef12964d-bc9b-4ee4-820e-2c8aa5536cf3" + "WESTUS:20200721T164204Z:025a0129-1bc7-4299-8bca-912a95582af6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:46 GMT" + "Tue, 21 Jul 2020 16:42:03 GMT" ], "Content-Length": [ "1553" @@ -523,13 +523,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps648?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczY0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps438?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczQzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"rid\",\r\n \"description\": \"Resource identifier\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"query\",\r\n \"description\": \"Query string\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps1322\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps5354\",\r\n \"description\": \"ps6705\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps3221\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps3221\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps684\",\r\n \"description\": \"ps5134\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps7323\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps7323\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps2520\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps2744\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps4540\",\r\n \"sample\": \"ps5512\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"displayName\": \"ps4302\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/resource/{rid}?q={query}\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"rid\",\r\n \"description\": \"Resource identifier\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"query\",\r\n \"description\": \"Query string\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps6872\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps2149\",\r\n \"description\": \"ps9272\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps6452\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps6452\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps8901\",\r\n \"description\": \"ps9433\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps4132\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps4132\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps7193\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps5168\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps1997\",\r\n \"sample\": \"ps1402\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"displayName\": \"ps2519\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/resource/{rid}?q={query}\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e3d6d563-1008-4852-9f70-658951d3109e" + "8118a9ac-ca59-43ed-9f7a-0d5dcdef15d6" ], "Accept-Language": [ "en-US" @@ -538,13 +538,13 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1565" + "1566" ] }, "ResponseHeaders": { @@ -555,34 +555,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACxo=\"" + "\"AAAAAAAAPWA=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3303b70f-efd1-4214-812f-194e484ee8fe" + "dcad0a36-5caf-46f6-8c01-d13a190b0e1b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "c8bbe83f-e87e-4698-93ed-a0fda956234b" + "6fc67636-589c-4cf0-9832-df65a7008de6" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193448Z:c8bbe83f-e87e-4698-93ed-a0fda956234b" + "WESTUS:20200721T164205Z:6fc67636-589c-4cf0-9832-df65a7008de6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:47 GMT" + "Tue, 21 Jul 2020 16:42:05 GMT" ], "Content-Length": [ - "1802" + "1803" ], "Content-Type": [ "application/json; charset=utf-8" @@ -591,17 +591,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps648\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps648\",\r\n \"properties\": {\r\n \"displayName\": \"ps4302\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/resource/{rid}?q={query}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"rid\",\r\n \"description\": \"Resource identifier\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"query\",\r\n \"description\": \"Query string\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps1322\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps5354\",\r\n \"description\": \"ps6705\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps3221\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps3221\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps684\",\r\n \"description\": \"ps5134\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps7323\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps7323\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps2520\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps2744\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps4540\",\r\n \"sample\": \"ps5512\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps438\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps438\",\r\n \"properties\": {\r\n \"displayName\": \"ps2519\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/resource/{rid}?q={query}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"rid\",\r\n \"description\": \"Resource identifier\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"query\",\r\n \"description\": \"Query string\",\r\n \"type\": \"string\",\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps6872\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps2149\",\r\n \"description\": \"ps9272\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps6452\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps6452\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps8901\",\r\n \"description\": \"ps9433\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps4132\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps4132\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps7193\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps5168\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps1997\",\r\n \"sample\": \"ps1402\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps648?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczY0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps438?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczQzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"xrid\",\r\n \"description\": \"Resource identifier modified\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"xquery\",\r\n \"description\": \"Query string modified\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps5508\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps7309\",\r\n \"description\": \"ps7509\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps4718\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps4718\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps8217\",\r\n \"description\": \"ps1547\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps3561\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps3561\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps6411\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps7737\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps7928\",\r\n \"sample\": \"ps5087\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"displayName\": \"ps309\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource/{xrid}?q={xquery}\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"xrid\",\r\n \"description\": \"Resource identifier modified\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"xquery\",\r\n \"description\": \"Query string modified\",\r\n \"type\": \"string\",\r\n \"required\": false,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps166\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps2955\",\r\n \"description\": \"ps2375\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps3663\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps3663\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps7\",\r\n \"description\": \"ps5913\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps6860\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps6860\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps7248\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps6566\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps4759\",\r\n \"sample\": \"ps1570\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"displayName\": \"ps6140\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource/{xrid}?q={xquery}\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dd9d7f29-1633-49a2-a3e3-c26477d3ec85" + "0980ff52-8612-45fb-9aea-3c2b7cf94890" ], "If-Match": [ "*" @@ -613,13 +613,13 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1594" + "1591" ] }, "ResponseHeaders": { @@ -633,25 +633,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e1149d1-5496-47eb-aad3-c5cf8d3090ef" + "d0482c39-e0fb-454f-8415-41e2bc6d2541" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1195" ], "x-ms-correlation-request-id": [ - "309c0ef5-41e6-4234-9f77-a5cd1b05a820" + "8c2f5c11-8814-4820-bb3a-673bed0058a0" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193449Z:309c0ef5-41e6-4234-9f77-a5cd1b05a820" + "WESTUS:20200721T164206Z:8c2f5c11-8814-4820-bb3a-673bed0058a0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:48 GMT" + "Tue, 21 Jul 2020 16:42:06 GMT" ], "Expires": [ "-1" @@ -661,13 +661,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps648?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczY0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps438?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczQzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fb5afa1-4284-4696-9937-3b5995882514" + "cc05b3da-6ff7-4d50-b19f-50b82c686cb6" ], "Accept-Language": [ "en-US" @@ -676,7 +676,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -687,34 +687,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACxw=\"" + "\"AAAAAAAAPWI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ebb307b9-7bf3-4ebf-8e89-d0c48df98699" + "ced03f0e-8892-4160-9b45-ee099b181a4b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11981" ], "x-ms-correlation-request-id": [ - "e32f3567-517f-4ccc-a51b-cab4a441a9a1" + "03a0fe37-abe5-43f9-9f1f-a20b67432986" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193449Z:e32f3567-517f-4ccc-a51b-cab4a441a9a1" + "WESTUS:20200721T164207Z:03a0fe37-abe5-43f9-9f1f-a20b67432986" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:49 GMT" + "Tue, 21 Jul 2020 16:42:06 GMT" ], "Content-Length": [ - "1885" + "1882" ], "Content-Type": [ "application/json; charset=utf-8" @@ -723,17 +723,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps648\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps648\",\r\n \"properties\": {\r\n \"displayName\": \"ps309\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource/{xrid}?q={xquery}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"xrid\",\r\n \"description\": \"Resource identifier modified\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"xquery\",\r\n \"description\": \"Query string modified\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps5508\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps7309\",\r\n \"description\": \"ps7509\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps4718\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps4718\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps8217\",\r\n \"description\": \"ps1547\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps3561\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps3561\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps6411\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps7737\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps7928\",\r\n \"sample\": \"ps5087\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps438\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps438\",\r\n \"properties\": {\r\n \"displayName\": \"ps6140\",\r\n \"method\": \"PUT\",\r\n \"urlTemplate\": \"/resource/{xrid}?q={xquery}\",\r\n \"templateParameters\": [\r\n {\r\n \"name\": \"xrid\",\r\n \"description\": \"Resource identifier modified\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"xquery\",\r\n \"description\": \"Query string modified\",\r\n \"type\": \"string\",\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"ps166\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps2955\",\r\n \"description\": \"ps2375\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps3663\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps3663\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps7\",\r\n \"description\": \"ps5913\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps6860\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps6860\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps7248\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps6566\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps4759\",\r\n \"sample\": \"ps1570\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps648?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczY0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps438?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczQzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aae45861-7159-46a6-801a-316f0f265cf8" + "96dcddd7-e893-4750-bd09-29a435f2c19c" ], "Accept-Language": [ "en-US" @@ -742,7 +742,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -756,25 +756,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f8c62c76-f7be-4014-b27f-188569c90f3f" + "e57ecc49-ba78-492a-8cae-d20869575e35" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11980" ], "x-ms-correlation-request-id": [ - "35353450-d0a9-490c-b043-fe5bf7447034" + "3f9437b5-bea5-487c-b348-8a087880e298" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193450Z:35353450-d0a9-490c-b043-fe5bf7447034" + "WESTUS:20200721T164207Z:3f9437b5-bea5-487c-b348-8a087880e298" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:49 GMT" + "Tue, 21 Jul 2020 16:42:07 GMT" ], "Content-Length": [ "85" @@ -790,13 +790,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps648?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczY0OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps438?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczQzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b951aff-3dc4-49b5-a506-8a38bee46576" + "2b7f803f-35e9-4af9-b1c4-59eca2b67f9c" ], "If-Match": [ "*" @@ -808,7 +808,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -822,25 +822,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "29b5cfd7-5df3-4ed1-a972-b3af2340cdbe" + "4fe7392e-bf71-419a-b2da-6d3904ee8aa2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14997" ], "x-ms-correlation-request-id": [ - "197e7a5d-e8b1-4761-81b1-082bd7bae10a" + "dc9fe601-db26-4dde-adb5-166de075c0b9" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193450Z:197e7a5d-e8b1-4761-81b1-082bd7bae10a" + "WESTUS:20200721T164207Z:dc9fe601-db26-4dde-adb5-166de075c0b9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:49 GMT" + "Tue, 21 Jul 2020 16:42:06 GMT" ], "Expires": [ "-1" @@ -855,33 +855,33 @@ ], "Names": { "": [ - "ps648", - "ps4302", - "ps1322", - "ps4621", - "ps684", - "ps5134", - "ps7323", - "ps5354", - "ps6705", - "ps3221", - "ps2520", - "ps2744", - "ps4540", - "ps5512", - "ps309", - "ps5508", - "ps9896", - "ps8217", - "ps1547", - "ps3561", - "ps7309", - "ps7509", - "ps4718", - "ps6411", - "ps7737", - "ps7928", - "ps5087" + "ps438", + "ps2519", + "ps6872", + "ps7633", + "ps8901", + "ps9433", + "ps4132", + "ps2149", + "ps9272", + "ps6452", + "ps7193", + "ps5168", + "ps1997", + "ps1402", + "ps6140", + "ps166", + "ps6777", + "ps7", + "ps5913", + "ps6860", + "ps2955", + "ps2375", + "ps3663", + "ps7248", + "ps6566", + "ps4759", + "ps1570" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PolicyCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PolicyCrudTest.json index 7fa98c69d082..f9bec0de810f 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PolicyCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PolicyCrudTest.json @@ -7,7 +7,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n bbyby\\r\\n \\r\\n \\r\\n \\r\\n xxbbcczc\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"xml\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3a32b2c2-f14b-4617-9973-55a1a5c08a01" + "6870004a-c4b9-4635-a07f-5d2b38a8f88b" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,31 +33,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACkE=\"" + "\"AAAAAAAAPFo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "13c6bf2b-a257-4fdf-9e57-8e73bc7a697f" + "fc9fb0a8-74b9-45df-8e73-32628213e6d3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "2fba6cc7-c795-41ee-b2bc-5b39beb7cc4f" + "86d1784e-3b00-48c5-8e68-be8373e8933b" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193230Z:2fba6cc7-c795-41ee-b2bc-5b39beb7cc4f" + "WESTUS:20200721T163912Z:86d1784e-3b00-48c5-8e68-be8373e8933b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:29 GMT" + "Tue, 21 Jul 2020 16:39:12 GMT" ], "Content-Length": [ "890" @@ -70,7 +70,7 @@ ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\tbbyby\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\txxbbcczc\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", - "StatusCode": 200 + "StatusCode": 201 }, { "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?api-version=2019-12-01", @@ -79,7 +79,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"bbybyxxbbcczc\",\r\n \"format\": \"xml\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8e01be2b-4ca7-47a4-b6b3-2fe2b33d0745" + "bf6a1f82-939b-449a-9287-c620632e7698" ], "Accept-Language": [ "en-US" @@ -88,7 +88,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -105,31 +105,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACl4=\"" + "\"AAAAAAAAPHg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6463b03b-dc7d-4708-9212-9fa6c419f393" + "4cc3336d-8ad1-496b-b195-8bf959b3a8fe" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-correlation-request-id": [ - "f42df919-42fd-4a89-9041-4bc44fb0ee8e" + "e64f9678-55e7-41d5-9084-62b912849a86" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193236Z:f42df919-42fd-4a89-9041-4bc44fb0ee8e" + "WESTUS:20200721T163919Z:e64f9678-55e7-41d5-9084-62b912849a86" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:35 GMT" + "Tue, 21 Jul 2020 16:39:19 GMT" ], "Content-Length": [ "890" @@ -151,7 +151,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "940d668c-bf12-4ebe-ac31-77316704d339" + "052c8ed7-b665-4c67-891d-d1cccdcfe854" ], "Accept-Language": [ "en-US" @@ -160,7 +160,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -171,31 +171,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACkE=\"" + "\"AAAAAAAAPFo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c0d1e08a-cf88-4e01-9eda-2f1fa4dbdd53" + "e71a79c8-b4d5-4111-8251-8b1616115637" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11994" ], "x-ms-correlation-request-id": [ - "7338f3ed-358d-4c14-9e1e-6c01c342a118" + "4cf937af-5e5e-4fbe-8b1a-9e8088b8acad" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193230Z:7338f3ed-358d-4c14-9e1e-6c01c342a118" + "WESTUS:20200721T163912Z:4cf937af-5e5e-4fbe-8b1a-9e8088b8acad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:30 GMT" + "Tue, 21 Jul 2020 16:39:12 GMT" ], "Content-Length": [ "890" @@ -217,7 +217,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3bb28d1-ee65-4bcf-80be-a6fe7bb42e05" + "328c3ae4-6f7d-4d66-ae41-99ed12169734" ], "Accept-Language": [ "en-US" @@ -226,7 +226,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -240,25 +240,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c798eef6-1009-4666-ae17-6a0647d36312" + "a91d2fd9-68c7-44c3-83d1-771705c1e9c6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" ], "x-ms-correlation-request-id": [ - "dcf90c61-57e1-484d-b64a-b9eb3c190fb6" + "3dbb2675-a05b-4913-8148-93b321c6f861" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193231Z:dcf90c61-57e1-484d-b64a-b9eb3c190fb6" + "WESTUS:20200721T163913Z:3dbb2675-a05b-4913-8148-93b321c6f861" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:30 GMT" + "Tue, 21 Jul 2020 16:39:13 GMT" ], "Content-Length": [ "97" @@ -280,7 +280,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "154f8faa-884b-43d1-bc28-01cb96e28407" + "56fd3a1b-01f8-4a0d-9238-9ec88f11edd5" ], "Accept-Language": [ "en-US" @@ -289,7 +289,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -300,31 +300,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACl4=\"" + "\"AAAAAAAAPHg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c0c8007c-6bd1-48d5-865b-bead9cba6d86" + "1135f5bc-f389-4bb3-a341-b8c6675496a0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11982" ], "x-ms-correlation-request-id": [ - "29bf7525-664b-49fc-aed3-b125098b8119" + "1fbadd3f-2591-4f19-9033-708a0e2dbd52" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193236Z:29bf7525-664b-49fc-aed3-b125098b8119" + "WESTUS:20200721T163919Z:1fbadd3f-2591-4f19-9033-708a0e2dbd52" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:35 GMT" + "Tue, 21 Jul 2020 16:39:19 GMT" ], "Content-Length": [ "890" @@ -346,7 +346,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4164fbcb-196b-43ab-aa49-d22266e65595" + "61066a41-3f47-4c49-85ac-f39cef3c633d" ], "Accept-Language": [ "en-US" @@ -355,7 +355,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -369,25 +369,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1be631a2-d4b8-43cf-918c-785157d3cf2d" + "499bc741-1278-4478-8054-c0210d838c27" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11981" ], "x-ms-correlation-request-id": [ - "5327613b-ec98-4005-8478-d626b4424ca4" + "3d98c302-a18a-4787-a30c-6bf8fe2e9c88" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193236Z:5327613b-ec98-4005-8478-d626b4424ca4" + "WESTUS:20200721T163920Z:3d98c302-a18a-4787-a30c-6bf8fe2e9c88" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:36 GMT" + "Tue, 21 Jul 2020 16:39:19 GMT" ], "Content-Length": [ "97" @@ -409,7 +409,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "262eb373-aedf-4507-90bb-3a198ef4706a" + "cbcc52ac-66ad-40ff-bfb8-b203a95aa579" ], "If-Match": [ "*" @@ -421,7 +421,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -435,25 +435,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d3598708-6988-4438-b127-a7f9955e1087" + "f5d9e1ba-b4bd-4a33-bc4d-ddd021e2b4f7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "b66ccf0e-e8fc-4b6b-b324-e5f03cacada3" + "2c32f88f-33d4-482b-898d-b68debecb077" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193230Z:b66ccf0e-e8fc-4b6b-b324-e5f03cacada3" + "WESTUS:20200721T163913Z:2c32f88f-33d4-482b-898d-b68debecb077" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:30 GMT" + "Tue, 21 Jul 2020 16:39:12 GMT" ], "Expires": [ "-1" @@ -472,7 +472,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd0c4b13-23e1-4800-9e7f-74471f600885" + "81f57e02-82ee-4bce-8143-241f62a7e3b2" ], "If-Match": [ "*" @@ -484,7 +484,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -498,25 +498,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "206f7fec-371d-42d6-b559-8fa53cb20927" + "0723166a-a3d5-4e3e-8420-8c5a5432b05a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14993" ], "x-ms-correlation-request-id": [ - "f013739b-68ed-479c-a64e-e1378324cca5" + "b7eef759-80c9-439c-ab3a-11ff1497f175" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193236Z:f013739b-68ed-479c-a64e-e1378324cca5" + "WESTUS:20200721T163919Z:b7eef759-80c9-439c-ab3a-11ff1497f175" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:36 GMT" + "Tue, 21 Jul 2020 16:39:19 GMT" ], "Expires": [ "-1" @@ -535,7 +535,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f1312ed-4199-45db-af60-4016684cea1e" + "b79f0c3d-407a-4210-8141-2bb86d4211e9" ], "Accept-Language": [ "en-US" @@ -544,7 +544,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -558,25 +558,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9ab91c16-559a-4292-99c5-cd1a69ee4f57" + "c658d954-eafe-4d6c-858d-692fda7a0209" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11992" ], "x-ms-correlation-request-id": [ - "ab7321f3-e945-481a-80b6-ddcdd3974d4f" + "10de509d-5602-43b3-93bc-c65170ff4129" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193231Z:ab7321f3-e945-481a-80b6-ddcdd3974d4f" + "WESTUS:20200721T163913Z:10de509d-5602-43b3-93bc-c65170ff4129" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:30 GMT" + "Tue, 21 Jul 2020 16:39:13 GMT" ], "Content-Length": [ "670" @@ -598,7 +598,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "813fbf3f-cbfc-4d7e-8752-b14e3fb261cc" + "5fdc56ff-94c9-4577-bc9c-b804428f6a31" ], "Accept-Language": [ "en-US" @@ -607,7 +607,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -621,25 +621,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "185b1efe-c340-4c11-b568-e2116226a625" + "dfd1fd87-b788-4617-9a03-dde14484e424" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11980" ], "x-ms-correlation-request-id": [ - "60b96d3d-c7bd-467e-8765-22398e8e4006" + "6ddd58f8-0cd3-477b-8efa-63ecd5a00f20" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193236Z:60b96d3d-c7bd-467e-8765-22398e8e4006" + "WESTUS:20200721T163920Z:6ddd58f8-0cd3-477b-8efa-63ecd5a00f20" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:36 GMT" + "Tue, 21 Jul 2020 16:39:20 GMT" ], "Content-Length": [ "670" @@ -661,7 +661,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"xml\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "94b01625-b93b-45d8-b7e9-2f2ded803749" + "dea2335b-b1df-4708-abf5-f9059c013528" ], "If-Match": [ "*" @@ -673,7 +673,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -690,31 +690,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACkg=\"" + "\"AAAAAAAAPGE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b132a0c0-78ba-4cca-89fc-eaa56aee27f9" + "c0d9d1c8-8c2a-402e-b964-e1b3a83d19ed" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "a50b6ea9-0020-4f1c-b595-62019a657915" + "846f3906-490e-45d7-98ad-4bb2744e5349" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193232Z:a50b6ea9-0020-4f1c-b595-62019a657915" + "WESTUS:20200721T163914Z:846f3906-490e-45d7-98ad-4bb2744e5349" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:31 GMT" + "Tue, 21 Jul 2020 16:39:14 GMT" ], "Content-Length": [ "578" @@ -736,7 +736,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\",\r\n \"format\": \"xml\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ff471096-1050-4363-b76a-6717fe3b1198" + "0649d75b-a3a9-4a8c-850f-c204c172344d" ], "If-Match": [ "*" @@ -748,7 +748,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -765,31 +765,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACmU=\"" + "\"AAAAAAAAPH8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "df1a9406-8c09-433a-b37c-ec15f623d480" + "cf3e18df-5763-4e6c-b676-9023d21ea5af" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-correlation-request-id": [ - "6ef0e0f2-b9d7-4143-a89d-14ed07acce95" + "cb58bf16-3d91-476c-b74a-85b85418165c" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193237Z:6ef0e0f2-b9d7-4143-a89d-14ed07acce95" + "WESTUS:20200721T163920Z:cb58bf16-3d91-476c-b74a-85b85418165c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:36 GMT" + "Tue, 21 Jul 2020 16:39:20 GMT" ], "Content-Length": [ "578" @@ -811,7 +811,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "967c2f54-0d3d-4d02-9526-d7accfc222d3" + "cb455f06-e52e-4ae9-ab1c-89a9b21ea0b2" ], "Accept-Language": [ "en-US" @@ -820,7 +820,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -831,31 +831,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACkg=\"" + "\"AAAAAAAAPGE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "12e26d5a-1b23-47d2-b5b4-be20eb72a314" + "57f9ccb3-41ca-4e06-a9d2-14d5d751f610" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11991" ], "x-ms-correlation-request-id": [ - "6bbd5543-aa98-401c-869f-e895ae6e3ce9" + "0ec2f7ad-bf0a-42eb-a082-3f180e793540" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193232Z:6bbd5543-aa98-401c-869f-e895ae6e3ce9" + "WESTUS:20200721T163915Z:0ec2f7ad-bf0a-42eb-a082-3f180e793540" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:31 GMT" + "Tue, 21 Jul 2020 16:39:14 GMT" ], "Content-Length": [ "578" @@ -877,7 +877,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf4e520a-44b4-4ee6-84d3-02ffe961a732" + "433b4eaa-ce6e-48e3-bc0b-26944e565e12" ], "Accept-Language": [ "en-US" @@ -886,7 +886,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -900,25 +900,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3c391e1f-bd2b-4ac6-be05-860fd29b228e" + "05eae91a-bb69-457a-ba18-5d6b55914247" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11990" ], "x-ms-correlation-request-id": [ - "2ca4e37e-82a3-4b67-ad87-144c6072b3c4" + "5c2a723a-0643-4779-81c0-3f9079689251" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193232Z:2ca4e37e-82a3-4b67-ad87-144c6072b3c4" + "WESTUS:20200721T163915Z:5c2a723a-0643-4779-81c0-3f9079689251" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:32 GMT" + "Tue, 21 Jul 2020 16:39:15 GMT" ], "Content-Length": [ "97" @@ -940,7 +940,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "702b7786-765c-4016-9635-e4ac4127a4d7" + "c529f451-3b50-45ac-98da-e677f57a2d19" ], "Accept-Language": [ "en-US" @@ -949,7 +949,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -963,25 +963,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4611712b-f0e1-4d5d-9c8e-8650dc5df4c8" + "6fa4747a-60e4-4143-a9dc-477300e0ce30" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11978" ], "x-ms-correlation-request-id": [ - "c81ea783-65b1-4faa-afa7-c9d082937f38" + "552af7ad-ee3e-4b40-9399-e5be13c5e338" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193237Z:c81ea783-65b1-4faa-afa7-c9d082937f38" + "WESTUS:20200721T163920Z:552af7ad-ee3e-4b40-9399-e5be13c5e338" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:37 GMT" + "Tue, 21 Jul 2020 16:39:20 GMT" ], "Content-Length": [ "97" @@ -1003,7 +1003,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "421ff921-07bb-4ded-a5f3-937b0c0b7534" + "addabd9e-4d6e-4f73-9f0a-7d410d4a855f" ], "If-Match": [ "*" @@ -1015,7 +1015,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1029,25 +1029,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "79cb9ffb-d683-43cc-8d18-9ae4feadcb47" + "882d360a-a507-46d4-ad73-106ea6cf27a6" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14996" ], "x-ms-correlation-request-id": [ - "6c3471d0-c084-4d51-9aa9-3f31db5946d9" + "85f495e0-413e-4d63-af44-697485ad6a99" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193232Z:6c3471d0-c084-4d51-9aa9-3f31db5946d9" + "WESTUS:20200721T163915Z:85f495e0-413e-4d63-af44-697485ad6a99" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:32 GMT" + "Tue, 21 Jul 2020 16:39:15 GMT" ], "Expires": [ "-1" @@ -1066,7 +1066,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08b5a742-1c7f-4637-9a08-ed4d0d25d577" + "ca9cfeed-4c1c-4c06-923a-33ac0a1a260d" ], "If-Match": [ "*" @@ -1078,7 +1078,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1092,25 +1092,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0bcd4a23-1795-4fa2-902a-cea1e8f8aa26" + "14770ee5-0c19-4374-87ee-47c745347e26" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14994" + "14992" ], "x-ms-correlation-request-id": [ - "a7c0694d-03cc-45a9-b499-4d919fbbe858" + "59a76e20-ca62-4900-a867-4b72af4aaff4" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193237Z:a7c0694d-03cc-45a9-b499-4d919fbbe858" + "WESTUS:20200721T163920Z:59a76e20-ca62-4900-a867-4b72af4aaff4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:36 GMT" + "Tue, 21 Jul 2020 16:39:20 GMT" ], "Expires": [ "-1" @@ -1129,7 +1129,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3c5ce68-d817-4a69-bfd1-42fea896dc51" + "676b4672-d711-49a9-8ebe-9922efbb195b" ], "Accept-Language": [ "en-US" @@ -1138,7 +1138,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1152,25 +1152,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "138e2633-f346-4f51-8385-9277671f40f4" + "b2e1f4a4-d553-4bc7-a41d-53fc3718ad1a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11989" ], "x-ms-correlation-request-id": [ - "46f1a32a-46c6-4934-b91c-4aa8938c065c" + "72edda8c-003a-4b2c-90a5-bc574a4259d3" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193232Z:46f1a32a-46c6-4934-b91c-4aa8938c065c" + "WESTUS:20200721T163915Z:72edda8c-003a-4b2c-90a5-bc574a4259d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:32 GMT" + "Tue, 21 Jul 2020 16:39:15 GMT" ], "Content-Length": [ "729" @@ -1192,7 +1192,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e1c1b6e-0c4e-466a-a939-a1e794b925a6" + "2de330ec-8317-4632-a4b8-2f54070b9c1e" ], "Accept-Language": [ "en-US" @@ -1201,7 +1201,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1215,25 +1215,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "37384fde-9ac3-44ea-aa51-3a1ed0fc8257" + "5fa4809d-dafc-45ad-b65d-02e488258048" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11986" ], "x-ms-correlation-request-id": [ - "5c3bab04-2459-4390-909c-81fe5bbc4ce3" + "9b3b9909-d722-41a3-9ab3-66d62d376856" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193234Z:5c3bab04-2459-4390-909c-81fe5bbc4ce3" + "WESTUS:20200721T163917Z:9b3b9909-d722-41a3-9ab3-66d62d376856" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:33 GMT" + "Tue, 21 Jul 2020 16:39:17 GMT" ], "Content-Length": [ "729" @@ -1255,7 +1255,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f27b641-4b67-4fc4-b06b-814b0c402e5a" + "4de10567-98ef-48fd-9777-036c814fc928" ], "Accept-Language": [ "en-US" @@ -1264,7 +1264,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1278,25 +1278,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "96cf877d-2f92-42a2-8cb3-e0a265c52c0e" + "2645e4bb-437f-44d0-88d5-369463766cfc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11977" ], "x-ms-correlation-request-id": [ - "771f3f35-a5bf-4a2f-aed4-f05c716f9da9" + "b423324a-8e9a-43d0-90d8-4f778707cd25" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193237Z:771f3f35-a5bf-4a2f-aed4-f05c716f9da9" + "WESTUS:20200721T163921Z:b423324a-8e9a-43d0-90d8-4f778707cd25" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:37 GMT" + "Tue, 21 Jul 2020 16:39:20 GMT" ], "Content-Length": [ "729" @@ -1318,7 +1318,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ecafbd92-60de-4c90-9520-fd9520ca87b5" + "d548755b-e4f6-4733-bdde-357f98914780" ], "Accept-Language": [ "en-US" @@ -1327,7 +1327,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1341,25 +1341,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4941040e-2f18-4fbc-b554-33e462da7490" + "ce8c9f7c-314e-43d3-ab2d-249ab195cbff" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11974" ], "x-ms-correlation-request-id": [ - "8dd051e0-d79b-4d2b-a31e-c51718454594" + "e7c1a352-319f-4ca0-aaaf-c268d5f67763" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193238Z:8dd051e0-d79b-4d2b-a31e-c51718454594" + "WESTUS:20200721T163921Z:e7c1a352-319f-4ca0-aaaf-c268d5f67763" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:37 GMT" + "Tue, 21 Jul 2020 16:39:21 GMT" ], "Content-Length": [ "729" @@ -1381,7 +1381,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n version\\r\\n Accept\\r\\n Accept-Charset\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"xml\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9b954863-2ee6-403e-a4fe-a2b469c71280" + "4f295d0f-be80-41dd-91c4-53b05e5abc2f" ], "If-Match": [ "*" @@ -1393,7 +1393,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1410,31 +1410,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAClA=\"" + "\"AAAAAAAAPGk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0ced258a-3f50-4aa1-831e-e03bfd7b1088" + "8b745a78-fbe0-4d09-831e-34305ffad025" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "f2a21d70-60ef-4898-8e18-d86b5a45223a" + "ee3b50c8-b3c4-4703-a22f-9ff57102ff64" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193233Z:f2a21d70-60ef-4898-8e18-d86b5a45223a" + "WESTUS:20200721T163916Z:ee3b50c8-b3c4-4703-a22f-9ff57102ff64" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:33 GMT" + "Tue, 21 Jul 2020 16:39:16 GMT" ], "Content-Length": [ "810" @@ -1456,7 +1456,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"versionAcceptAccept-Charset\",\r\n \"format\": \"xml\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "06fed564-8669-46eb-83c5-c29fdbb5738d" + "f9257991-8e96-4207-9caf-aabc803b267b" ], "If-Match": [ "*" @@ -1468,7 +1468,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1485,31 +1485,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACmw=\"" + "\"AAAAAAAAPIY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b24cb626-a308-48a5-9d0c-5b231ada4650" + "5571c6b5-6b67-472f-840b-9cf0f912e945" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1191" ], "x-ms-correlation-request-id": [ - "00b0ffca-aae5-44ca-a139-26ca1a488cac" + "146cd555-51a9-440c-a3c3-4973f5a528da" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193237Z:00b0ffca-aae5-44ca-a139-26ca1a488cac" + "WESTUS:20200721T163921Z:146cd555-51a9-440c-a3c3-4973f5a528da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:37 GMT" + "Tue, 21 Jul 2020 16:39:21 GMT" ], "Content-Length": [ "810" @@ -1531,7 +1531,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce49a294-b65f-4ab8-8cfa-57df6724e923" + "d3b286d0-8bb5-4219-b16b-534fb2c6f853" ], "Accept-Language": [ "en-US" @@ -1540,7 +1540,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1551,31 +1551,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAClA=\"" + "\"AAAAAAAAPGk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4d5c1966-f392-4210-8aef-c8c0646add19" + "d8f8e143-d7d8-43e2-912e-d21ffbcdfee9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11988" ], "x-ms-correlation-request-id": [ - "f84622e9-79dd-4940-ab06-b6373a352ff8" + "f0398119-1841-4cee-ae33-2b3c8a836956" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193233Z:f84622e9-79dd-4940-ab06-b6373a352ff8" + "WESTUS:20200721T163916Z:f0398119-1841-4cee-ae33-2b3c8a836956" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:33 GMT" + "Tue, 21 Jul 2020 16:39:16 GMT" ], "Content-Length": [ "810" @@ -1597,7 +1597,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94c68cc5-474b-4393-8436-bd4d54989ad6" + "ce612bfd-7bf3-4144-ba44-52a4eb4a885d" ], "Accept-Language": [ "en-US" @@ -1606,7 +1606,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1620,25 +1620,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d7a1ce5a-8b8d-4b3e-a122-7750673b8ec3" + "80ad4990-c08d-467d-a440-2ab95b32c6ad" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11987" ], "x-ms-correlation-request-id": [ - "8df6f8e7-8803-4f06-923e-5b2a555325f1" + "48d85b2d-c75b-49e7-b297-4672fca78a10" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193234Z:8df6f8e7-8803-4f06-923e-5b2a555325f1" + "WESTUS:20200721T163917Z:48d85b2d-c75b-49e7-b297-4672fca78a10" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:33 GMT" + "Tue, 21 Jul 2020 16:39:17 GMT" ], "Content-Length": [ "97" @@ -1660,7 +1660,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5eb39bcc-d354-418e-9364-1e6cc49c1977" + "60511eab-3f4b-4119-b073-8b716394d9c7" ], "Accept-Language": [ "en-US" @@ -1669,7 +1669,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1683,25 +1683,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5f16ecdd-3024-4049-9b07-98a0146e95ed" + "0e1866a4-4310-4173-b6be-829366d03c62" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11975" ], "x-ms-correlation-request-id": [ - "eab3f844-0421-4338-8c61-e7b7b416986f" + "c89c4e65-1594-4b17-b9b0-2b3829033d64" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193238Z:eab3f844-0421-4338-8c61-e7b7b416986f" + "WESTUS:20200721T163921Z:c89c4e65-1594-4b17-b9b0-2b3829033d64" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:37 GMT" + "Tue, 21 Jul 2020 16:39:21 GMT" ], "Content-Length": [ "97" @@ -1723,7 +1723,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e74abed5-9347-47ab-8b6e-d655fe9bc74f" + "2ae47db8-3ced-49e9-b57e-9c0ea28e51e1" ], "If-Match": [ "*" @@ -1735,7 +1735,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1749,25 +1749,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4dc52656-a4d3-4d9a-b803-3e52b6f7d68b" + "39c5cdaa-4cfd-4146-91cd-2db406847c0a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14995" ], "x-ms-correlation-request-id": [ - "388418c4-754e-48aa-a9e9-f4ded26ecf79" + "11d06be4-24b7-412b-b040-584587246a73" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193234Z:388418c4-754e-48aa-a9e9-f4ded26ecf79" + "WESTUS:20200721T163917Z:11d06be4-24b7-412b-b040-584587246a73" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:33 GMT" + "Tue, 21 Jul 2020 16:39:17 GMT" ], "Expires": [ "-1" @@ -1786,7 +1786,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "84a0abbc-4b7c-452f-8d83-37923ae74bc3" + "6f5d3c8e-8b29-42a6-8fee-a06b6e97c24a" ], "If-Match": [ "*" @@ -1798,7 +1798,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1812,25 +1812,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "60d9b2ce-3536-4f08-bc4d-1b517d6210c3" + "9f370028-20b2-4be9-a26a-968e65c0aa18" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14993" + "14991" ], "x-ms-correlation-request-id": [ - "73b2f0cb-3c61-455f-8359-c4367282d274" + "76334216-c4e4-4c33-a38f-de0ca5dbc17b" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193238Z:73b2f0cb-3c61-455f-8359-c4367282d274" + "WESTUS:20200721T163921Z:76334216-c4e4-4c33-a38f-de0ca5dbc17b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:37 GMT" + "Tue, 21 Jul 2020 16:39:21 GMT" ], "Expires": [ "-1" @@ -1849,7 +1849,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e1d4b05-1c0e-49ab-ba68-ce9c70cf7fe0" + "f67c93e0-4cb6-41e9-b2f1-627dc5ab2c30" ], "Accept-Language": [ "en-US" @@ -1858,7 +1858,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1872,25 +1872,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c39a26e1-f605-4a7e-ad94-0d0886afa250" + "f42b0bf5-f69c-4b49-b900-c7423e36f16a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11985" ], "x-ms-correlation-request-id": [ - "44ee7b85-3413-482b-a1dd-153811a20ef5" + "839ea4e6-ddc6-4770-a19b-2aac20b9da8b" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193234Z:44ee7b85-3413-482b-a1dd-153811a20ef5" + "WESTUS:20200721T163917Z:839ea4e6-ddc6-4770-a19b-2aac20b9da8b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:34 GMT" + "Tue, 21 Jul 2020 16:39:17 GMT" ], "Content-Length": [ "7423" @@ -1912,7 +1912,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e570f073-a540-4b67-b7d0-32bedc6368f7" + "5af87219-c9f5-4ecc-a58a-1491d24854f4" ], "Accept-Language": [ "en-US" @@ -1921,7 +1921,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1935,25 +1935,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d81a553b-9f35-4974-a94e-0625bf3e3684" + "22bba85b-9a14-440e-a2ee-dcee33a478f0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11973" ], "x-ms-correlation-request-id": [ - "a120a05f-6054-4c54-bc29-3071ef008b97" + "f012b181-b49b-4165-b6b9-af8672c595e5" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193238Z:a120a05f-6054-4c54-bc29-3071ef008b97" + "WESTUS:20200721T163922Z:f012b181-b49b-4165-b6b9-af8672c595e5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:38 GMT" + "Tue, 21 Jul 2020 16:39:21 GMT" ], "Content-Length": [ "7423" @@ -1975,7 +1975,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"format\": \"xml\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "00192121-7ccf-4ad9-ad05-d9ed47d8db0b" + "c7371af6-73a1-43e0-9678-24ea549cf224" ], "If-Match": [ "*" @@ -1987,7 +1987,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2004,31 +2004,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAClc=\"" + "\"AAAAAAAAPHE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "065a2050-272f-44a5-92ee-b45ceff3f354" + "8a2afbc4-4900-4d10-b04c-15cad078f796" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "879433f1-c885-4eff-84a5-1b3a74e412f6" + "875da729-8bbe-42a1-a3de-870e4ae2b261" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193235Z:879433f1-c885-4eff-84a5-1b3a74e412f6" + "WESTUS:20200721T163918Z:875da729-8bbe-42a1-a3de-870e4ae2b261" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:34 GMT" + "Tue, 21 Jul 2020 16:39:18 GMT" ], "Content-Length": [ "540" @@ -2041,7 +2041,7 @@ ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"format\": \"xml\",\r\n \"value\": \"\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\r\\n\"\r\n }\r\n}", - "StatusCode": 200 + "StatusCode": 201 }, { "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy?api-version=2019-12-01", @@ -2050,7 +2050,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\",\r\n \"format\": \"xml\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9868bd14-37b8-491a-8dab-2d93d6bfe9ce" + "f5467cb1-9507-4f13-9f95-54e34af8a5d7" ], "If-Match": [ "*" @@ -2062,7 +2062,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2079,31 +2079,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACnM=\"" + "\"AAAAAAAAPI0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ef386f2f-53f6-4e40-8fdf-95cf86949e84" + "11eb5a59-dffb-4749-9289-3cc8931a066d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1190" ], "x-ms-correlation-request-id": [ - "17a33399-eb4b-4cc2-8a2c-a7b14b15d148" + "cc2c551e-67ec-426c-ad20-35ee99d1daf3" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193238Z:17a33399-eb4b-4cc2-8a2c-a7b14b15d148" + "WESTUS:20200721T163922Z:cc2c551e-67ec-426c-ad20-35ee99d1daf3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:38 GMT" + "Tue, 21 Jul 2020 16:39:22 GMT" ], "Content-Length": [ "540" @@ -2125,7 +2125,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f4efa17-06b0-4142-8fd5-b20ab80bb78e" + "1d091db1-e953-4d4a-88cd-b9973cda31dd" ], "Accept-Language": [ "en-US" @@ -2134,7 +2134,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -2145,31 +2145,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAClc=\"" + "\"AAAAAAAAPHE=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e311323b-658e-4ac5-9b41-12e24460d09c" + "80a767ce-bbf3-4458-894a-c714a1d6b909" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11984" ], "x-ms-correlation-request-id": [ - "6a31a215-bd9a-4ab8-bbc8-3eaf2e69536f" + "2afd0cb8-dd22-4d4b-a8dc-d24d956f8f4c" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193235Z:6a31a215-bd9a-4ab8-bbc8-3eaf2e69536f" + "WESTUS:20200721T163918Z:2afd0cb8-dd22-4d4b-a8dc-d24d956f8f4c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:35 GMT" + "Tue, 21 Jul 2020 16:39:18 GMT" ], "Content-Length": [ "540" @@ -2191,7 +2191,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d78dd6c8-ae6f-44b9-9ea7-c9e4b4c0086e" + "ce62655f-5c96-4df8-b972-a8bb1fe6f0c1" ], "Accept-Language": [ "en-US" @@ -2200,7 +2200,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -2214,25 +2214,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5b93bd99-1dc7-4fa7-b5a9-263a4acf66fa" + "4252749e-a365-49c9-a52c-5a1afffbebff" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11983" ], "x-ms-correlation-request-id": [ - "a6ead604-86d7-436e-8312-ceb12f2c0565" + "9f01cc2e-8dfc-4f88-833a-f4b67cc6c52b" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193236Z:a6ead604-86d7-436e-8312-ceb12f2c0565" + "WESTUS:20200721T163919Z:9f01cc2e-8dfc-4f88-833a-f4b67cc6c52b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:35 GMT" + "Tue, 21 Jul 2020 16:39:19 GMT" ], "Content-Length": [ "97" @@ -2254,7 +2254,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "670ae252-1297-4e07-b4d1-0eb50fdb91d6" + "eb3682e9-3083-42d2-9fd2-9ed79b969004" ], "Accept-Language": [ "en-US" @@ -2263,7 +2263,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -2277,25 +2277,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5142c67b-08d2-4521-8085-312fc30ed0ae" + "aaf4a3fd-adb1-4810-9fa1-3649dab613c4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11971" ], "x-ms-correlation-request-id": [ - "ebd374d3-8773-4635-8d8b-c3548f5f3e2e" + "6024d2c5-466e-43ee-8e3a-3b86d07bd88e" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193239Z:ebd374d3-8773-4635-8d8b-c3548f5f3e2e" + "WESTUS:20200721T163922Z:6024d2c5-466e-43ee-8e3a-3b86d07bd88e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:38 GMT" + "Tue, 21 Jul 2020 16:39:22 GMT" ], "Content-Length": [ "97" @@ -2317,7 +2317,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3ac311f-c9e5-4f61-8853-d4527bc8aca1" + "75363eea-83fb-4549-a59e-c573f8ae82fb" ], "If-Match": [ "*" @@ -2329,7 +2329,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -2343,25 +2343,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "abe140f5-4cf1-4639-be08-73207db78abb" + "56bb29cf-be58-4e3e-883e-82fda15a5248" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14994" ], "x-ms-correlation-request-id": [ - "95c088df-c221-410a-9249-5aa5f58e2716" + "0f55d4bd-17bf-4467-bd47-86be508234d6" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193235Z:95c088df-c221-410a-9249-5aa5f58e2716" + "WESTUS:20200721T163919Z:0f55d4bd-17bf-4467-bd47-86be508234d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:35 GMT" + "Tue, 21 Jul 2020 16:39:19 GMT" ], "Expires": [ "-1" @@ -2380,7 +2380,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f00cdda2-ddd2-4cfa-b4b8-cf6aaf0b6e73" + "741313b5-a61f-455d-8aea-f401f2f0d751" ], "If-Match": [ "*" @@ -2392,7 +2392,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -2406,25 +2406,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "845f8039-64d9-4bae-b063-5ab22b6fd18b" + "23d24468-25fc-450c-886c-c2da1d217490" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14992" + "14990" ], "x-ms-correlation-request-id": [ - "e9d41072-1782-4f6a-91c8-b1ae0cfb04ef" + "b31c3182-21e2-44ac-8490-d41ed50a6b29" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193239Z:e9d41072-1782-4f6a-91c8-b1ae0cfb04ef" + "WESTUS:20200721T163922Z:b31c3182-21e2-44ac-8490-d41ed50a6b29" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:38 GMT" + "Tue, 21 Jul 2020 16:39:22 GMT" ], "Expires": [ "-1" @@ -2443,7 +2443,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f0c4b4e-8e2e-4eb5-96c7-87238bf16c30" + "d2e4a3c4-1fc6-429a-a61c-c213affba228" ], "Accept-Language": [ "en-US" @@ -2452,7 +2452,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -2463,31 +2463,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACmU=\"" + "\"AAAAAAAAPH8=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89620234-cd29-4846-9cd4-14947e27c4c8" + "25c833a5-f71f-457b-a5c4-6dea5abc08fa" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11979" ], "x-ms-correlation-request-id": [ - "9d1a30bc-5b3b-44cc-b4cc-c5460c36fb05" + "44f71a58-667d-4e8e-8b05-c72bcdc47529" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193237Z:9d1a30bc-5b3b-44cc-b4cc-c5460c36fb05" + "WESTUS:20200721T163920Z:44f71a58-667d-4e8e-8b05-c72bcdc47529" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:36 GMT" + "Tue, 21 Jul 2020 16:39:20 GMT" ], "Content-Length": [ "581" @@ -2509,7 +2509,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76f5f732-6d8a-436c-9cef-3a1aff76b495" + "d5943f7e-6bc3-4a1f-92e9-7d7555ffab54" ], "Accept-Language": [ "en-US" @@ -2518,7 +2518,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -2529,31 +2529,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACmw=\"" + "\"AAAAAAAAPIY=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "85a7c274-ddae-4aab-a442-3fc3e8ec2b57" + "67dd9470-6fa5-44d1-930a-daa871e70b9c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11976" ], "x-ms-correlation-request-id": [ - "1fe91372-39b3-4ad4-8e26-5c2f0c15b432" + "c8b9fbc4-3e09-4791-905e-3c70fe036ca0" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193238Z:1fe91372-39b3-4ad4-8e26-5c2f0c15b432" + "WESTUS:20200721T163921Z:c8b9fbc4-3e09-4791-905e-3c70fe036ca0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:37 GMT" + "Tue, 21 Jul 2020 16:39:21 GMT" ], "Content-Length": [ "813" @@ -2575,7 +2575,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a41be28-b97b-493d-b256-798508074a78" + "2c856066-52dc-4f1d-9ac7-6b2d67bae801" ], "Accept-Language": [ "en-US" @@ -2584,7 +2584,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -2595,31 +2595,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACnM=\"" + "\"AAAAAAAAPI0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1c3dfdfd-9d9e-4bd3-91af-d60903280ea5" + "db5517ee-daba-4fea-b2f2-ae93f983451d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11972" ], "x-ms-correlation-request-id": [ - "75c69916-e745-40ba-8820-d23d59042c7d" + "e76c5f6d-d510-4a76-ad3f-6e5926761884" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193239Z:75c69916-e745-40ba-8820-d23d59042c7d" + "WESTUS:20200721T163922Z:e76c5f6d-d510-4a76-ad3f-6e5926761884" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:38 GMT" + "Tue, 21 Jul 2020 16:39:22 GMT" ], "Content-Length": [ "543" diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ProductCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ProductCrudTest.json index 1811e7fa46a9..f619784f0af3 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ProductCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/ProductCrudTest.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7539b3fb-d4fa-4f6f-bd62-9b705a5dbb42" + "686978b7-6d05-4a3b-a0b6-f33be05586ba" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -30,7 +30,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "54bda830-7812-446b-9c7a-df4cd229d1d6" + "cb4ebee7-9e6b-4e34-9035-5bacb91c9ab7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -39,19 +39,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "d0c7a82c-88c8-4690-abe3-e4ccc6edc4f8" + "13a8a0d9-6406-434e-8401-0374f8903b9e" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193351Z:d0c7a82c-88c8-4690-abe3-e4ccc6edc4f8" + "WESTUS:20200721T164101Z:13a8a0d9-6406-434e-8401-0374f8903b9e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:51 GMT" + "Tue, 21 Jul 2020 16:41:00 GMT" ], "Content-Length": [ - "1285" + "1287" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,17 +60,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 100,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzA2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps2623\",\r\n \"terms\": \"ps9310\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\",\r\n \"displayName\": \"ps6125\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9916\",\r\n \"terms\": \"ps9545\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\",\r\n \"displayName\": \"ps8705\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c7ebedca-b606-4f3f-83bf-09c60b4bce46" + "fbc964b5-acf1-4806-b832-e1ddf2adb2e2" ], "Accept-Language": [ "en-US" @@ -79,7 +79,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACr0=\"" + "\"AAAAAAAAPOg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "61f79f6f-272c-4d66-9f3a-868d1a796666" + "b1018492-42bc-4b19-a5f5-0ea47ef5c940" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -111,16 +111,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "ad422c3c-059c-40b9-b54c-6bb1ca89360f" + "25722b00-8b23-4664-9355-b6dd45fc7296" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193352Z:ad422c3c-059c-40b9-b54c-6bb1ca89360f" + "WESTUS:20200721T164103Z:25722b00-8b23-4664-9355-b6dd45fc7296" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:52 GMT" + "Tue, 21 Jul 2020 16:41:02 GMT" ], "Content-Length": [ "998" @@ -132,17 +132,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps7063\",\r\n \"properties\": {\r\n \"displayName\": \"ps6125\",\r\n \"description\": \"ps2623\",\r\n \"terms\": \"ps9310\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/administrators\",\r\n \"name\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps7899\",\r\n \"properties\": {\r\n \"displayName\": \"ps8705\",\r\n \"description\": \"ps9916\",\r\n \"terms\": \"ps9545\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/administrators\",\r\n \"name\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzA2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2f06082-d9c2-4163-a7fe-cf9b8e874e89" + "5a1a6bfa-bb4a-4804-a1e7-40d3c1891e59" ], "Accept-Language": [ "en-US" @@ -151,7 +151,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -162,13 +162,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACr0=\"" + "\"AAAAAAAAPOg=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ba831416-69c2-4b50-b5ad-2eb46303fa45" + "2271ac6c-2c1f-4ccc-acf2-4bb0b4f22160" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,16 +177,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "6e19223a-13ce-4bd5-98ac-3770c2d9ae60" + "05019791-cc8d-4a95-a221-be930a4d542e" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193352Z:6e19223a-13ce-4bd5-98ac-3770c2d9ae60" + "WESTUS:20200721T164103Z:05019791-cc8d-4a95-a221-be930a4d542e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:52 GMT" + "Tue, 21 Jul 2020 16:41:02 GMT" ], "Content-Length": [ "484" @@ -198,17 +198,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps7063\",\r\n \"properties\": {\r\n \"displayName\": \"ps6125\",\r\n \"description\": \"ps2623\",\r\n \"terms\": \"ps9310\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps7899\",\r\n \"properties\": {\r\n \"displayName\": \"ps8705\",\r\n \"description\": \"ps9916\",\r\n \"terms\": \"ps9545\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzA2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a944b46-2a40-46ea-898c-35c2fdcad264" + "329a610d-4202-4eff-8d6e-cf8f30fd46f9" ], "Accept-Language": [ "en-US" @@ -217,7 +217,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -228,13 +228,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACsU=\"" + "\"AAAAAAAAPPI=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6810965f-6185-498d-8c4d-528f8833fbc2" + "25f93b66-983e-44a1-81e0-34b655a39436" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -243,19 +243,19 @@ "11994" ], "x-ms-correlation-request-id": [ - "54efebb4-e5d6-4490-a8e5-0d585ec1c3fe" + "a2dcb803-bd2a-4698-a436-505673aa6720" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193354Z:54efebb4-e5d6-4490-a8e5-0d585ec1c3fe" + "WESTUS:20200721T164104Z:a2dcb803-bd2a-4698-a436-505673aa6720" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:53 GMT" + "Tue, 21 Jul 2020 16:41:03 GMT" ], "Content-Length": [ - "485" + "484" ], "Content-Type": [ "application/json; charset=utf-8" @@ -264,17 +264,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps7063\",\r\n \"properties\": {\r\n \"displayName\": \"ps2767\",\r\n \"description\": \"ps2703\",\r\n \"terms\": \"ps7717\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps7899\",\r\n \"properties\": {\r\n \"displayName\": \"ps997\",\r\n \"description\": \"ps4812\",\r\n \"terms\": \"ps8394\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063/apis?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzA2My9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899/apis?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe91d449-538f-4827-a9e5-9d318ab3deed" + "521e9d1c-e65a-4611-b928-9674e62d8494" ], "Accept-Language": [ "en-US" @@ -283,7 +283,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -297,7 +297,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0597f95a-6f4b-40b0-9135-8903e0f80af2" + "d661656e-59ab-4fd5-bc00-73ed1f9118d9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -306,16 +306,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "cd9e8e4e-f3d6-4632-b98e-29f63908d8ed" + "ccf7c663-a9f0-493e-9547-2da6793604a4" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193352Z:cd9e8e4e-f3d6-4632-b98e-29f63908d8ed" + "WESTUS:20200721T164103Z:ccf7c663-a9f0-493e-9547-2da6793604a4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:52 GMT" + "Tue, 21 Jul 2020 16:41:02 GMT" ], "Content-Length": [ "34" @@ -331,13 +331,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063/apis?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzA2My9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899/apis?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53ef5adc-1c7a-49e6-a70e-f15c3f64df93" + "3a570a12-a3b7-4ee4-8f08-daf7b33ee11d" ], "Accept-Language": [ "en-US" @@ -346,7 +346,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -360,7 +360,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "86789a91-ebe4-427d-8bfc-6bbfe303ca90" + "d31cfbb4-c948-4ede-96e6-7f7824ac2e6a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -369,16 +369,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "e9fe9a07-248f-4fc6-b1ea-b8984bc2da2b" + "29938d0f-e87d-4ba3-960e-243e4729a6d2" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193353Z:e9fe9a07-248f-4fc6-b1ea-b8984bc2da2b" + "WESTUS:20200721T164104Z:29938d0f-e87d-4ba3-960e-243e4729a6d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:53 GMT" + "Tue, 21 Jul 2020 16:41:03 GMT" ], "Content-Length": [ "754" @@ -390,17 +390,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063/apis?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzA2My9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899/apis?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79083c89-2bfd-4aa8-87ea-7fdb505cf86a" + "391e7589-a4a1-4b70-921d-e28a10bd5cfd" ], "Accept-Language": [ "en-US" @@ -409,7 +409,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -423,7 +423,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aaa603cc-42a8-4c4d-b4a2-f45d534aaa04" + "78ab2b4a-a0d8-4dc6-8e87-363c7945a55d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -432,16 +432,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "e1df293d-3758-4aaf-b105-0eeea236e6e4" + "63a99bef-35d9-4f90-a052-396afda48a19" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193355Z:e1df293d-3758-4aaf-b105-0eeea236e6e4" + "WESTUS:20200721T164106Z:63a99bef-35d9-4f90-a052-396afda48a19" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:55 GMT" + "Tue, 21 Jul 2020 16:41:05 GMT" ], "Content-Length": [ "34" @@ -463,7 +463,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a3ba4b2-846e-411d-bdd8-3de8cc9a0acc" + "3f09bd89-e681-4211-a2e4-0127ae92adab" ], "Accept-Language": [ "en-US" @@ -472,7 +472,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -486,7 +486,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2efc01b4-2e71-44c0-a1c3-f95167856c7d" + "3576bf7d-6197-41b8-9e3c-0dff915f66ef" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -495,16 +495,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "d3a2a720-ea8a-4061-b5e2-aa80f42b93dd" + "b5b4cbf6-3ca8-40d1-a5d9-e4fc44dc353e" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193353Z:d3a2a720-ea8a-4061-b5e2-aa80f42b93dd" + "WESTUS:20200721T164103Z:b5b4cbf6-3ca8-40d1-a5d9-e4fc44dc353e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:52 GMT" + "Tue, 21 Jul 2020 16:41:03 GMT" ], "Content-Length": [ "729" @@ -526,7 +526,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be9f63a2-6894-49ac-9bd8-3cd49ba82984" + "9b05122b-8985-4317-b7a2-085d21414efb" ], "Accept-Language": [ "en-US" @@ -535,7 +535,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -549,7 +549,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "236e48e5-968a-4b93-aa2d-e23275b8a4e9" + "f0a92ed8-0740-4026-83ec-dc664fc8e0c7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -558,16 +558,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "a2c3c37a-b0c6-4203-971a-b447cee826e6" + "e0bdcab6-c9c7-46e7-82c5-24466a3bcd96" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193355Z:a2c3c37a-b0c6-4203-971a-b447cee826e6" + "WESTUS:20200721T164105Z:e0bdcab6-c9c7-46e7-82c5-24466a3bcd96" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:54 GMT" + "Tue, 21 Jul 2020 16:41:04 GMT" ], "Content-Length": [ "729" @@ -583,13 +583,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063/apis/echo-api?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzA2My9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899/apis/echo-api?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OS9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a4754e4-5341-404f-b34d-142418c89100" + "c2cc349d-34f9-4c89-8e87-88f68909d862" ], "Accept-Language": [ "en-US" @@ -598,7 +598,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -609,13 +609,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACm8=\"" + "\"AAAAAAAAPIk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6c96ae46-554a-4604-9663-2a707819d3cb" + "c5df0660-e282-459c-b7c0-f2bd72953e49" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -624,16 +624,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "ed91ef09-8c1f-44f6-a7b9-6d655bf7e55e" + "f34f5afa-1c49-4852-b743-805c261ea6d0" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193353Z:ed91ef09-8c1f-44f6-a7b9-6d655bf7e55e" + "WESTUS:20200721T164104Z:f34f5afa-1c49-4852-b743-805c261ea6d0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:53 GMT" + "Tue, 21 Jul 2020 16:41:03 GMT" ], "Content-Length": [ "619" @@ -645,17 +645,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": null,\r\n \"authenticationSettings\": null,\r\n \"subscriptionKeyParameterNames\": null,\r\n \"isCurrent\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzA2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps2703\",\r\n \"terms\": \"ps7717\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\",\r\n \"displayName\": \"ps2767\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4812\",\r\n \"terms\": \"ps8394\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\",\r\n \"displayName\": \"ps997\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ece3f218-d59c-4113-af88-b91cfc0db34c" + "aa0f1901-ae4a-4655-923b-94af779b67e7" ], "If-Match": [ "*" @@ -667,13 +667,13 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "236" + "235" ] }, "ResponseHeaders": { @@ -687,7 +687,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d36eece0-7e8d-40af-abc2-31607473ea32" + "05e1fab1-4d38-4799-84d6-97cbebac356e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -696,16 +696,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "2b9080b1-1561-4a0b-8674-8e8d89d13eac" + "5b522ac6-105f-4e06-93bc-f0fd0745102b" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193353Z:2b9080b1-1561-4a0b-8674-8e8d89d13eac" + "WESTUS:20200721T164104Z:5b522ac6-105f-4e06-93bc-f0fd0745102b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:53 GMT" + "Tue, 21 Jul 2020 16:41:03 GMT" ], "Expires": [ "-1" @@ -715,13 +715,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?$filter=properties/displayName%20eq%20'ps2767'&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzPyRmaWx0ZXI9cHJvcGVydGllcy9kaXNwbGF5TmFtZSUyMGVxJTIwJ3BzMjc2NycmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?$filter=properties/displayName%20eq%20'ps997'&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzPyRmaWx0ZXI9cHJvcGVydGllcy9kaXNwbGF5TmFtZSUyMGVxJTIwJ3BzOTk3JyZhcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aadcb671-e6c0-49db-8382-2d67f3a983bd" + "35e35a9f-5329-4d2a-aac5-da6e0eb8e77d" ], "Accept-Language": [ "en-US" @@ -730,7 +730,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -744,7 +744,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d104bf20-682d-4813-b9fb-b0d0e53ddeca" + "8463a020-b15f-4288-a097-3f4f33ba1e19" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -753,19 +753,19 @@ "11993" ], "x-ms-correlation-request-id": [ - "710b60d6-6e7e-40b4-962a-d75869977bf4" + "cfc84c25-b841-4a60-a782-48d69e59c6a2" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193354Z:710b60d6-6e7e-40b4-962a-d75869977bf4" + "WESTUS:20200721T164104Z:cfc84c25-b841-4a60-a782-48d69e59c6a2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:53 GMT" + "Tue, 21 Jul 2020 16:41:04 GMT" ], "Content-Length": [ - "581" + "580" ], "Content-Type": [ "application/json; charset=utf-8" @@ -774,7 +774,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps7063\",\r\n \"properties\": {\r\n \"displayName\": \"ps2767\",\r\n \"description\": \"ps2703\",\r\n \"terms\": \"ps7717\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps7899\",\r\n \"properties\": {\r\n \"displayName\": \"ps997\",\r\n \"description\": \"ps4812\",\r\n \"terms\": \"ps8394\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { @@ -784,7 +784,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb9a99d-45d8-47dd-825a-f0dc30223cce" + "e96b2cd1-8de7-4bbe-aab9-a6924159d369" ], "Accept-Language": [ "en-US" @@ -793,7 +793,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -807,7 +807,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a8905f65-b4ed-43f4-b221-eee0c47ad7f3" + "5859a33a-7185-439a-9901-f50d9cbdc0bb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -816,19 +816,19 @@ "11992" ], "x-ms-correlation-request-id": [ - "9e3f27f5-d477-49eb-947e-e3f0ce219cfb" + "9453f53b-0f7b-4e2e-aad0-67c1aa73dc5e" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193354Z:9e3f27f5-d477-49eb-947e-e3f0ce219cfb" + "WESTUS:20200721T164105Z:9453f53b-0f7b-4e2e-aad0-67c1aa73dc5e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:54 GMT" + "Tue, 21 Jul 2020 16:41:04 GMT" ], "Content-Length": [ - "1886" + "1887" ], "Content-Type": [ "application/json; charset=utf-8" @@ -837,17 +837,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/products/ps7063\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"ps7063\",\r\n \"properties\": {\r\n \"displayName\": \"ps2767\",\r\n \"description\": \"ps2703\",\r\n \"terms\": \"ps7717\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/products/ps7899\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"ps7899\",\r\n \"properties\": {\r\n \"displayName\": \"ps997\",\r\n \"description\": \"ps4812\",\r\n \"terms\": \"ps8394\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/products/starter\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"starter\",\r\n \"properties\": {\r\n \"displayName\": \"Starter\",\r\n \"description\": \"Subscribers will be able to run 5 calls/minute up to a maximum of 100 calls/week.\",\r\n \"terms\": \"\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 100,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063/apis/echo-api?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzA2My9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899/apis/echo-api?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OS9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6fb0104-253b-4aee-9c4b-dee253f9e28c" + "82f25d3b-8da6-4b2e-837b-aa1abbfe4f5c" ], "Accept-Language": [ "en-US" @@ -856,7 +856,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -870,7 +870,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2ebb6321-be89-479e-b2d5-eed41796d55b" + "b74e66ad-b2eb-403e-a25a-c28be3c05e1f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -879,16 +879,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "60c4a528-3d1d-45e9-9e24-6d0240229443" + "831dc92b-e85a-4a4c-948b-d7c3375f495c" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193355Z:60c4a528-3d1d-45e9-9e24-6d0240229443" + "WESTUS:20200721T164106Z:831dc92b-e85a-4a4c-948b-d7c3375f495c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:55 GMT" + "Tue, 21 Jul 2020 16:41:05 GMT" ], "Expires": [ "-1" @@ -901,13 +901,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7063?deleteSubscriptions=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzA2Mz9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899?deleteSubscriptions=true&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OT9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e641086d-7d99-4b37-9e19-60116723b53e" + "ffd39826-c9e1-44d8-a73c-46ded719361a" ], "If-Match": [ "*" @@ -919,7 +919,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -933,7 +933,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "319e97e9-1e91-4baa-ad16-9403d4489450" + "bbd9f95c-9961-49a6-8e6d-a660ae10b55c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -942,16 +942,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "659319d3-5fb7-4318-840f-da67d82f255f" + "2879dbd1-061e-40b6-8529-7d0f1e4314ae" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193356Z:659319d3-5fb7-4318-840f-da67d82f255f" + "WESTUS:20200721T164106Z:2879dbd1-061e-40b6-8529-7d0f1e4314ae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:55 GMT" + "Tue, 21 Jul 2020 16:41:05 GMT" ], "Expires": [ "-1" @@ -966,13 +966,13 @@ ], "Names": { "": [ - "ps7063", - "ps6125", - "ps2623", - "ps9310", - "ps2767", - "ps2703", - "ps7717" + "ps7899", + "ps8705", + "ps9916", + "ps9545", + "ps997", + "ps4812", + "ps8394" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PropertiesCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PropertiesCrudTest.json index 29dffb2d0f2d..85895dbf9ba4 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PropertiesCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/PropertiesCrudTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjI0Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false,\r\n \"displayName\": \"ps4440\",\r\n \"value\": \"ps6015\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false,\r\n \"displayName\": \"ps383\",\r\n \"value\": \"ps2042\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "578ee8de-a2cf-452c-93c5-d555e59486f3" + "9959cdba-a30c-4c18-9df0-c9852442169f" ], "Accept-Language": [ "en-US" @@ -16,13 +16,13 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "175" + "174" ] }, "ResponseHeaders": { @@ -33,31 +33,31 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243?api-version=2019-12-01&asyncId=5eab29b9a2ca6012300231f0&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01&asyncId=5f171c4da2ca600fe4c29764&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d26d0c76-b00d-4a17-8ab0-79d9d18ba1e7" + "7d3f0911-3fd0-4458-bb9d-3287eea8a1b0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "b485225f-7dec-4836-a855-52e85483377b" + "c7b3d1bb-26e0-45d2-937c-8487a7e4acef" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194041Z:b485225f-7dec-4836-a855-52e85483377b" + "WESTUS:20200721T164813Z:c7b3d1bb-26e0-45d2-937c-8487a7e4acef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:40:41 GMT" + "Tue, 21 Jul 2020 16:48:13 GMT" ], "Expires": [ "-1" @@ -70,13 +70,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjI0Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true,\r\n \"displayName\": \"ps4440\",\r\n \"value\": \"ps6015\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true,\r\n \"displayName\": \"ps383\",\r\n \"value\": \"ps2042\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1673fe6a-d441-485e-9ef5-f165e489507a" + "4aa36ed6-614d-42d5-acc2-8fb8d259d351" ], "If-Match": [ "*" @@ -88,13 +88,13 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "174" + "173" ] }, "ResponseHeaders": { @@ -105,31 +105,31 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243?api-version=2019-12-01&asyncId=5eab2a16a2ca6012300231fc&asyncCode=200" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01&asyncId=5f171caaa2ca600fe4c29770&asyncCode=200" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8cb36074-5725-4694-a9b5-f8c320c32d27" + "66a763dd-eab0-4e88-881c-969a226ff35f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-correlation-request-id": [ - "b8b43c88-4107-40f8-bbee-1d1480daa03e" + "582c6d3b-7dcb-4d26-98c8-9b4c153c3f5f" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194214Z:b8b43c88-4107-40f8-bbee-1d1480daa03e" + "WESTUS:20200721T164946Z:582c6d3b-7dcb-4d26-98c8-9b4c153c3f5f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:42:13 GMT" + "Tue, 21 Jul 2020 16:49:45 GMT" ], "Expires": [ "-1" @@ -142,8 +142,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243?api-version=2019-12-01&asyncId=5eab29b9a2ca6012300231f0&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjI0Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAxJmFzeW5jSWQ9NWVhYjI5YjlhMmNhNjAxMjMwMDIzMWYwJmFzeW5jQ29kZT0yMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01&asyncId=5f171c4da2ca600fe4c29764&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAxJmFzeW5jSWQ9NWYxNzFjNGRhMmNhNjAwZmU0YzI5NzY0JmFzeW5jQ29kZT0yMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -151,7 +151,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -162,34 +162,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADD8=\"" + "\"AAAAAAAAPoo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6e74b261-3160-4591-b6a5-6df7e47dc303" + "00e0b5e0-379e-4bb7-9cc0-c1da8bbf57aa" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "2f4d20e7-e415-49bb-ba19-f67dbafc3a96" + "6c893730-e54b-4b9b-90f3-6d15741f43d2" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194111Z:2f4d20e7-e415-49bb-ba19-f67dbafc3a96" + "WESTUS:20200721T164843Z:6c893730-e54b-4b9b-90f3-6d15741f43d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:41:10 GMT" + "Tue, 21 Jul 2020 16:48:43 GMT" ], "Content-Length": [ - "430" + "429" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,17 +198,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2243\",\r\n \"properties\": {\r\n \"displayName\": \"ps4440\",\r\n \"value\": \"ps6015\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps3821\",\r\n \"properties\": {\r\n \"displayName\": \"ps383\",\r\n \"value\": \"ps2042\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243/listValue?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjI0My9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821/listValue?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMS9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da62c7dc-1b03-4b96-b8b8-0cf9137ac126" + "f3e12fe2-1ec2-48d2-9e11-9273cb2cfe23" ], "Accept-Language": [ "en-US" @@ -217,7 +217,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -228,13 +228,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADD8=\"" + "\"AAAAAAAAPoo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "10799bb2-3d42-4c49-b1d8-1be2f1883d6d" + "e44ce490-0c2c-4c1e-b3b6-d1b0d6b5bcc2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -243,16 +243,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "4efc5b52-2a3f-4e82-bfee-51fc2320342e" + "d6a7fa0a-6c84-4a6b-a371-fea0cfdbb9a8" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194111Z:4efc5b52-2a3f-4e82-bfee-51fc2320342e" + "WESTUS:20200721T164843Z:d6a7fa0a-6c84-4a6b-a371-fea0cfdbb9a8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:41:10 GMT" + "Tue, 21 Jul 2020 16:48:43 GMT" ], "Content-Length": [ "18" @@ -264,17 +264,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": \"ps6015\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"ps2042\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243/listValue?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjI0My9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821/listValue?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMS9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c4642ac-663d-4db6-a95d-acaf93600530" + "aab7ffa0-6521-40ee-8356-18e7d676dd9f" ], "Accept-Language": [ "en-US" @@ -283,7 +283,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -294,13 +294,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADEI=\"" + "\"AAAAAAAAPo0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "51261081-4510-41c6-abae-ad78a86ef6b3" + "6c89c739-6c12-4a50-ad19-d71a2c1caeaf" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -309,16 +309,16 @@ "1195" ], "x-ms-correlation-request-id": [ - "361ee4cd-793c-44ad-811a-1f6452234f93" + "525aae9c-ebfc-417c-be75-9a5e033b08eb" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194245Z:361ee4cd-793c-44ad-811a-1f6452234f93" + "WESTUS:20200721T165016Z:525aae9c-ebfc-417c-be75-9a5e033b08eb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:42:44 GMT" + "Tue, 21 Jul 2020 16:50:16 GMT" ], "Content-Length": [ "18" @@ -330,17 +330,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": \"ps6015\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"ps2042\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"secret\": true,\r\n \"displayName\": \"ps907\",\r\n \"value\": \"ps6588\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"secret\": true,\r\n \"displayName\": \"ps6493\",\r\n \"value\": \"ps7785\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8561780b-c6ba-4c17-a835-2d55ba32bfa4" + "d6d1232c-75c2-4732-8d5d-f5ad556c2351" ], "Accept-Language": [ "en-US" @@ -349,13 +349,13 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "101" + "102" ] }, "ResponseHeaders": { @@ -366,31 +366,31 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01&asyncId=5eab29d8a2ca6012300231f4&asyncCode=201" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01&asyncId=5f171c6ba2ca600fe4c29768&asyncCode=201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ddeec002-c1d1-4828-a1c8-ae22b061a3bd" + "60f3aa1f-5c78-49af-ab59-ba8478f2bd4b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "12854d0a-24ad-4f4a-87cf-4ed8bf8f4f73" + "5b415f78-b643-4776-b0cc-d3f8d2a29b71" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194112Z:12854d0a-24ad-4f4a-87cf-4ed8bf8f4f73" + "WESTUS:20200721T164844Z:5b415f78-b643-4776-b0cc-d3f8d2a29b71" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:41:11 GMT" + "Tue, 21 Jul 2020 16:48:43 GMT" ], "Expires": [ "-1" @@ -403,13 +403,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true,\r\n \"displayName\": \"ps907\",\r\n \"value\": \"ps6588\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true,\r\n \"displayName\": \"ps6493\",\r\n \"value\": \"ps7785\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5c5075b7-2670-46ba-a073-23b57bdb1989" + "1647788f-82ae-4813-9825-b8153b1c8bf3" ], "If-Match": [ "*" @@ -421,13 +421,13 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "173" + "174" ] }, "ResponseHeaders": { @@ -438,31 +438,31 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01&asyncId=5eab29f7a2ca6012300231f8&asyncCode=200" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01&asyncId=5f171c8ba2ca600fe4c2976c&asyncCode=200" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "954604ef-83c3-49fb-a846-19cd2b4999ff" + "85d6d0e8-bfd8-46be-8476-240eccbaf689" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "9ff96470-7f90-4edc-8377-9555821c35bf" + "f796d8d9-0a63-45ca-b8fb-f36228342f87" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194143Z:9ff96470-7f90-4edc-8377-9555821c35bf" + "WESTUS:20200721T164915Z:f796d8d9-0a63-45ca-b8fb-f36228342f87" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:41:43 GMT" + "Tue, 21 Jul 2020 16:49:14 GMT" ], "Expires": [ "-1" @@ -475,8 +475,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01&asyncId=5eab29d8a2ca6012300231f4&asyncCode=201", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAxJmFzeW5jSWQ9NWVhYjI5ZDhhMmNhNjAxMjMwMDIzMWY0JmFzeW5jQ29kZT0yMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01&asyncId=5f171c6ba2ca600fe4c29768&asyncCode=201", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAxJmFzeW5jSWQ9NWYxNzFjNmJhMmNhNjAwZmU0YzI5NzY4JmFzeW5jQ29kZT0yMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -484,7 +484,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -495,34 +495,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADEA=\"" + "\"AAAAAAAAPos=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8a380472-6a95-4220-99f9-203bf69b9894" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "f443e3b3-a76e-483c-9a7f-71d59fc9233a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], "x-ms-correlation-request-id": [ - "6fa87a5f-54f5-4c18-958f-cd31143c1bfe" + "a1a75597-e0ab-48bc-8847-c905bf826d12" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194142Z:6fa87a5f-54f5-4c18-958f-cd31143c1bfe" + "WESTUS:20200721T164914Z:a1a75597-e0ab-48bc-8847-c905bf826d12" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:41:42 GMT" + "Tue, 21 Jul 2020 16:49:13 GMT" ], "Content-Length": [ - "351" + "352" ], "Content-Type": [ "application/json; charset=utf-8" @@ -531,7 +531,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps7863\",\r\n \"properties\": {\r\n \"displayName\": \"ps907\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps4436\",\r\n \"properties\": {\r\n \"displayName\": \"ps6493\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}", "StatusCode": 201 }, { @@ -541,7 +541,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "536f91c3-6c46-4c7d-a2a5-5f895df8cbdb" + "6c373aa0-7dc0-4e9e-95e1-556019828193" ], "Accept-Language": [ "en-US" @@ -550,7 +550,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -564,25 +564,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "52557017-1d31-46f0-a4e5-5a93623dc95e" + "35cb33bd-4b2c-457a-9d04-e35f424eeaeb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "859d7c75-8c03-4603-bf41-fee849dd12ef" + "eccf53ed-bb05-4048-aa41-a5ca3736937b" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194142Z:859d7c75-8c03-4603-bf41-fee849dd12ef" + "WESTUS:20200721T164914Z:eccf53ed-bb05-4048-aa41-a5ca3736937b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:41:42 GMT" + "Tue, 21 Jul 2020 16:49:13 GMT" ], "Content-Length": [ "924" @@ -594,7 +594,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2243\",\r\n \"properties\": {\r\n \"displayName\": \"ps4440\",\r\n \"value\": \"ps6015\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps7863\",\r\n \"properties\": {\r\n \"displayName\": \"ps907\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps3821\",\r\n \"properties\": {\r\n \"displayName\": \"ps383\",\r\n \"value\": \"ps2042\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps4436\",\r\n \"properties\": {\r\n \"displayName\": \"ps6493\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { @@ -604,7 +604,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4da6de3-dcab-4d6e-9b53-a2638511c488" + "93a6df01-3d25-4e51-a7f3-5493fd555a8f" ], "Accept-Language": [ "en-US" @@ -613,7 +613,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -627,25 +627,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ce230eaf-04ee-41dd-a97b-855211b97a78" + "a979c509-08f5-4151-a085-7a152720e4ff" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "97d4b74f-2af7-40fc-944f-78992521851f" + "0e28e7a0-3334-45cd-9644-478d41ee2d49" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194142Z:97d4b74f-2af7-40fc-944f-78992521851f" + "WESTUS:20200721T164914Z:0e28e7a0-3334-45cd-9644-478d41ee2d49" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:41:42 GMT" + "Tue, 21 Jul 2020 16:49:13 GMT" ], "Content-Length": [ "924" @@ -657,7 +657,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2243\",\r\n \"properties\": {\r\n \"displayName\": \"ps4440\",\r\n \"value\": \"ps6015\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps7863\",\r\n \"properties\": {\r\n \"displayName\": \"ps907\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps3821\",\r\n \"properties\": {\r\n \"displayName\": \"ps383\",\r\n \"value\": \"ps2042\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps4436\",\r\n \"properties\": {\r\n \"displayName\": \"ps6493\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { @@ -667,7 +667,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6201afe2-a102-4ba2-8089-c82bd9fef10d" + "c9be295e-6e19-4a9c-b084-2fd3e5c367de" ], "Accept-Language": [ "en-US" @@ -676,7 +676,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -690,28 +690,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b01a30ae-7728-4e2a-a0e6-27e4bc8cdd36" + "5efcea21-fd98-4180-9231-4d1f8414df45" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "82cfe908-0be6-4bc9-a21d-cacc2800e37f" + "7f06eb64-8f6f-44b1-a732-d5992b72d296" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194142Z:82cfe908-0be6-4bc9-a21d-cacc2800e37f" + "WESTUS:20200721T164914Z:7f06eb64-8f6f-44b1-a732-d5992b72d296" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:41:42 GMT" + "Tue, 21 Jul 2020 16:49:13 GMT" ], "Content-Length": [ - "530" + "529" ], "Content-Type": [ "application/json; charset=utf-8" @@ -720,17 +720,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2243\",\r\n \"properties\": {\r\n \"displayName\": \"ps4440\",\r\n \"value\": \"ps6015\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps3821\",\r\n \"properties\": {\r\n \"displayName\": \"ps383\",\r\n \"value\": \"ps2042\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9447e24-ffd4-4851-bc80-5d8dc8fef36e" + "b4167e69-7c57-4a94-8c4b-e1b6499fd491" ], "Accept-Language": [ "en-US" @@ -739,7 +739,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -750,34 +750,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADEA=\"" + "\"AAAAAAAAPos=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "17cb533e-b2e2-4c4e-9656-6500a90f36c7" + "2b4b6bd0-a796-4992-a3ec-6d7e8df78237" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "51526d61-7ce8-4183-80eb-fe6d99155967" + "ec3d32b4-8f39-440f-92f1-47969329876a" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194142Z:51526d61-7ce8-4183-80eb-fe6d99155967" + "WESTUS:20200721T164914Z:ec3d32b4-8f39-440f-92f1-47969329876a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:41:42 GMT" + "Tue, 21 Jul 2020 16:49:14 GMT" ], "Content-Length": [ - "351" + "352" ], "Content-Type": [ "application/json; charset=utf-8" @@ -786,17 +786,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps7863\",\r\n \"properties\": {\r\n \"displayName\": \"ps907\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps4436\",\r\n \"properties\": {\r\n \"displayName\": \"ps6493\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35d20d0d-f463-4bf9-adbd-4d6b2e32445e" + "7834b6d4-cfaa-4c5f-91b7-63a2aea1af44" ], "Accept-Language": [ "en-US" @@ -805,7 +805,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -816,34 +816,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADEA=\"" + "\"AAAAAAAAPos=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f72b8d2d-95cf-442a-995f-c187342c6eda" + "9838fff8-ad03-4fb4-bae3-5fe8cececebe" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "668ef9c1-a903-4b2c-996a-9e295a382da7" + "00ee51de-0d4a-410e-beb1-c65f7e130a97" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194143Z:668ef9c1-a903-4b2c-996a-9e295a382da7" + "WESTUS:20200721T164914Z:00ee51de-0d4a-410e-beb1-c65f7e130a97" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:41:42 GMT" + "Tue, 21 Jul 2020 16:49:14 GMT" ], "Content-Length": [ - "351" + "352" ], "Content-Type": [ "application/json; charset=utf-8" @@ -852,17 +852,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps7863\",\r\n \"properties\": {\r\n \"displayName\": \"ps907\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps4436\",\r\n \"properties\": {\r\n \"displayName\": \"ps6493\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc16fbb9-b2d4-4fab-ae7f-ef6685c10a0e" + "c6929899-f843-40db-ba08-7b9b76eb1a63" ], "Accept-Language": [ "en-US" @@ -871,7 +871,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -882,34 +882,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADEE=\"" + "\"AAAAAAAAPow=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "466f1500-3b09-4f5f-b559-94fc8746745c" + "88fcec3a-077a-4d37-b13d-69581ddb663e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "6d30b8eb-f28e-4a05-8b49-39c55f2e90f2" + "342a22bb-4fac-423e-a5f5-eaa042014e52" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194214Z:6d30b8eb-f28e-4a05-8b49-39c55f2e90f2" + "WESTUS:20200721T164945Z:342a22bb-4fac-423e-a5f5-eaa042014e52" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:42:13 GMT" + "Tue, 21 Jul 2020 16:49:44 GMT" ], "Content-Length": [ - "404" + "405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -918,17 +918,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps7863\",\r\n \"properties\": {\r\n \"displayName\": \"ps907\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps4436\",\r\n \"properties\": {\r\n \"displayName\": \"ps6493\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7dfc20b0-3e11-4ff0-ae8b-27ebf7ea217c" + "a484a5ac-b6f3-457f-b98e-e192cdb66f17" ], "Accept-Language": [ "en-US" @@ -937,7 +937,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -951,25 +951,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5b6278a6-07fd-4420-be61-85328f6fb53c" + "eff8351f-c258-4ff6-9948-115535d30c89" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11986" ], "x-ms-correlation-request-id": [ - "446ef8b5-256c-4661-ac07-205affa19f0a" + "7ef43b68-4566-4aeb-9758-98707cb33172" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194246Z:446ef8b5-256c-4661-ac07-205affa19f0a" + "WESTUS:20200721T165017Z:7ef43b68-4566-4aeb-9758-98707cb33172" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:42:46 GMT" + "Tue, 21 Jul 2020 16:50:17 GMT" ], "Content-Length": [ "84" @@ -985,13 +985,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863/listValue?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2My9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436/listValue?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNi9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3b54aa4-be3c-4f2b-8bb6-62ce338246ae" + "2c7cbf88-b3f0-4a6f-9acf-161413eae657" ], "Accept-Language": [ "en-US" @@ -1000,7 +1000,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1011,13 +1011,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADEA=\"" + "\"AAAAAAAAPos=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "66246bfd-38ca-4fa3-9dff-f730c33552ac" + "a3a65fb0-5e10-4cfe-a625-dafbefdae9f1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1026,16 +1026,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "f06e5cf4-1174-44cc-be1e-471cbefd644e" + "1ceca5b2-36af-4034-8e24-d19eb2d458e8" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194143Z:f06e5cf4-1174-44cc-be1e-471cbefd644e" + "WESTUS:20200721T164914Z:1ceca5b2-36af-4034-8e24-d19eb2d458e8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:41:42 GMT" + "Tue, 21 Jul 2020 16:49:14 GMT" ], "Content-Length": [ "18" @@ -1047,17 +1047,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": \"ps6588\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"ps7785\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863/listValue?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2My9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436/listValue?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNi9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e842d944-7606-4ac8-8299-6d9a387d6fe0" + "5a980633-3dfb-47e3-8683-1c7956646d9b" ], "Accept-Language": [ "en-US" @@ -1066,7 +1066,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1077,13 +1077,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADEA=\"" + "\"AAAAAAAAPos=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "18a5f797-e36a-413a-a9fd-409b065985dd" + "ffd8bff2-9bdb-4247-8cae-92abecc87cf2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1092,16 +1092,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "6fa2b8c6-d4e7-4cf3-861b-40e42f2005e8" + "e51d6463-e3a6-4aae-ab75-7ecdff51e646" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194143Z:6fa2b8c6-d4e7-4cf3-861b-40e42f2005e8" + "WESTUS:20200721T164915Z:e51d6463-e3a6-4aae-ab75-7ecdff51e646" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:41:42 GMT" + "Tue, 21 Jul 2020 16:49:14 GMT" ], "Content-Length": [ "18" @@ -1113,17 +1113,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": \"ps6588\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"ps7785\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863/listValue?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2My9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436/listValue?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNi9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94a7f86a-f9dd-46ee-a99e-b802e5a17981" + "018053cf-44e9-4ae9-a7c9-47ce79e4cad3" ], "Accept-Language": [ "en-US" @@ -1132,7 +1132,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1143,13 +1143,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADEE=\"" + "\"AAAAAAAAPow=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "98387e4b-4528-4625-a48d-55310560239c" + "4122d3f1-335e-4fa3-b918-e77cad58b429" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1158,16 +1158,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "5274d28b-1207-455a-b9ea-cf99cb26546b" + "e7ffb687-2fa7-460a-8cfd-95a7c3c37513" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194214Z:5274d28b-1207-455a-b9ea-cf99cb26546b" + "WESTUS:20200721T164945Z:e7ffb687-2fa7-460a-8cfd-95a7c3c37513" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:42:13 GMT" + "Tue, 21 Jul 2020 16:49:44 GMT" ], "Content-Length": [ "18" @@ -1179,12 +1179,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": \"ps6588\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"ps7785\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01&asyncId=5eab29f7a2ca6012300231f8&asyncCode=200", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAxJmFzeW5jSWQ9NWVhYjI5ZjdhMmNhNjAxMjMwMDIzMWY4JmFzeW5jQ29kZT0yMDA=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01&asyncId=5f171c8ba2ca600fe4c2976c&asyncCode=200", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAxJmFzeW5jSWQ9NWYxNzFjOGJhMmNhNjAwZmU0YzI5NzZjJmFzeW5jQ29kZT0yMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1192,7 +1192,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1203,34 +1203,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADEE=\"" + "\"AAAAAAAAPow=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c9ed4506-c0a0-49b3-a0c7-035c154fd8c6" + "ee40f976-eb30-420e-9a8a-43b87946467c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "a5490976-4486-4e5c-9fcc-7f256b29aad3" + "2d75d3f1-1a01-4d49-9d22-d53c51fc2d04" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194213Z:a5490976-4486-4e5c-9fcc-7f256b29aad3" + "WESTUS:20200721T164945Z:2d75d3f1-1a01-4d49-9d22-d53c51fc2d04" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:42:13 GMT" + "Tue, 21 Jul 2020 16:49:44 GMT" ], "Content-Length": [ - "404" + "405" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1239,17 +1239,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps7863\",\r\n \"properties\": {\r\n \"displayName\": \"ps907\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps4436\",\r\n \"properties\": {\r\n \"displayName\": \"ps6493\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjI0Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c0743ba-d26b-419e-8768-491f2352428a" + "663958d5-1b88-47df-981d-45aa63d8749c" ], "Accept-Language": [ "en-US" @@ -1258,7 +1258,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1269,34 +1269,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADD8=\"" + "\"AAAAAAAAPoo=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "38312f99-f2ca-4d86-afd8-1ac558ff4c54" + "861b2a6d-adaa-4d32-8746-03d26ab6dfdc" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-correlation-request-id": [ - "396d1c2b-0ae0-41ca-8ef4-52daeaa2eb15" + "1a677cb9-3728-48de-98db-e0e86bfc9516" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194214Z:396d1c2b-0ae0-41ca-8ef4-52daeaa2eb15" + "WESTUS:20200721T164945Z:1a677cb9-3728-48de-98db-e0e86bfc9516" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:42:13 GMT" + "Tue, 21 Jul 2020 16:49:45 GMT" ], "Content-Length": [ - "430" + "429" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1305,17 +1305,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2243\",\r\n \"properties\": {\r\n \"displayName\": \"ps4440\",\r\n \"value\": \"ps6015\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps3821\",\r\n \"properties\": {\r\n \"displayName\": \"ps383\",\r\n \"value\": \"ps2042\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjI0Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1391c971-ce4d-4711-954c-26b3148f5653" + "71bbaa0c-ea01-4b86-a28b-f20e42896537" ], "Accept-Language": [ "en-US" @@ -1324,7 +1324,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1335,34 +1335,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADEI=\"" + "\"AAAAAAAAPo0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9ea32de2-0017-4e04-909d-58b97f8ff56c" + "0b461bde-f9bd-4fa3-844c-71834809378e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-correlation-request-id": [ - "0f5f82f0-33f5-456b-8639-bb9fa6df08b1" + "359a9a18-403c-49c3-8e26-762954e1a97f" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194244Z:0f5f82f0-33f5-456b-8639-bb9fa6df08b1" + "WESTUS:20200721T165016Z:359a9a18-403c-49c3-8e26-762954e1a97f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:42:44 GMT" + "Tue, 21 Jul 2020 16:50:16 GMT" ], "Content-Length": [ - "405" + "404" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1371,17 +1371,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2243\",\r\n \"properties\": {\r\n \"displayName\": \"ps4440\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps3821\",\r\n \"properties\": {\r\n \"displayName\": \"ps383\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjI0Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b50db100-88b5-4dc8-8852-ab84e46351a5" + "1ba13678-6543-4a02-9a5e-3270ff1db17b" ], "Accept-Language": [ "en-US" @@ -1390,7 +1390,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1404,25 +1404,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e88d0e53-5aec-4857-9791-b3f43a719c4e" + "c6d30f12-5ea3-4fe7-b2f4-058cc9a9cb4d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-correlation-request-id": [ - "82de8d6c-eef9-4097-9d67-d6ee009549a0" + "98fe4c2b-0b13-48be-bd01-601d306a44de" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194247Z:82de8d6c-eef9-4097-9d67-d6ee009549a0" + "WESTUS:20200721T165017Z:98fe4c2b-0b13-48be-bd01-601d306a44de" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:42:46 GMT" + "Tue, 21 Jul 2020 16:50:17 GMT" ], "Content-Length": [ "84" @@ -1438,8 +1438,8 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243?api-version=2019-12-01&asyncId=5eab2a16a2ca6012300231fc&asyncCode=200", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjI0Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAxJmFzeW5jSWQ9NWVhYjJhMTZhMmNhNjAxMjMwMDIzMWZjJmFzeW5jQ29kZT0yMDA=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01&asyncId=5f171caaa2ca600fe4c29770&asyncCode=200", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAxJmFzeW5jSWQ9NWYxNzFjYWFhMmNhNjAwZmU0YzI5NzcwJmFzeW5jQ29kZT0yMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1447,7 +1447,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1458,34 +1458,34 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAADEI=\"" + "\"AAAAAAAAPo0=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "368b077a-ccf0-4074-a773-12eb583ca798" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "ce559595-1b5c-4f80-a10d-725fa3f82fde" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], "x-ms-correlation-request-id": [ - "70f14ea8-fe8f-4896-bed9-9503719d1163" + "2a60e1da-ca2d-44ec-b04b-269f36da5f0d" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194244Z:70f14ea8-fe8f-4896-bed9-9503719d1163" + "WESTUS:20200721T165016Z:2a60e1da-ca2d-44ec-b04b-269f36da5f0d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:42:43 GMT" + "Tue, 21 Jul 2020 16:50:16 GMT" ], "Content-Length": [ - "405" + "404" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1494,17 +1494,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps2243\",\r\n \"properties\": {\r\n \"displayName\": \"ps4440\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps3821\",\r\n \"properties\": {\r\n \"displayName\": \"ps383\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5063dc00-4a1b-4c32-a02e-97a67c684d93" + "b289cfea-9ff8-40a4-8680-d73e3f3155a6" ], "If-Match": [ "*" @@ -1516,7 +1516,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1530,7 +1530,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c7f4916b-d236-45da-80b8-3568157c9290" + "61a7fb2b-fd62-407a-8c0e-14cbafa3170e" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1539,16 +1539,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "00ff195b-1992-4d94-b925-1954f0311d3f" + "1c9b559a-9966-4499-a380-73585f2821bf" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194246Z:00ff195b-1992-4d94-b925-1954f0311d3f" + "WESTUS:20200721T165017Z:1c9b559a-9966-4499-a380-73585f2821bf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:42:45 GMT" + "Tue, 21 Jul 2020 16:50:17 GMT" ], "Expires": [ "-1" @@ -1561,13 +1561,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7863?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzg2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58ed9007-6d00-4411-b38f-d3ffa9a57a97" + "caf15eb9-9cc0-4fda-a194-edf5859272eb" ], "If-Match": [ "*" @@ -1579,7 +1579,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1593,7 +1593,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3baea818-4d31-42c9-a75e-2fea0e19c0d9" + "956b8781-80fb-4055-86c6-336fc6f96c6c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1602,16 +1602,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "110f83de-9610-4e48-9ea8-4b73fa4b5dbb" + "020b929f-fb88-4820-bf8a-be9bb9f91d38" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194247Z:110f83de-9610-4e48-9ea8-4b73fa4b5dbb" + "WESTUS:20200721T165017Z:020b929f-fb88-4820-bf8a-be9bb9f91d38" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:42:46 GMT" + "Tue, 21 Jul 2020 16:50:17 GMT" ], "Expires": [ "-1" @@ -1621,13 +1621,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2243?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjI0Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9998b4e-eb8f-4312-97ed-9012fc351dd6" + "a20896c0-62a5-43d3-b5dd-e87c73bd9d94" ], "If-Match": [ "*" @@ -1639,7 +1639,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1653,7 +1653,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f7736d36-9e04-404e-900c-ede7ff8f7bd5" + "e86d37dd-11d3-4ae0-9fac-cd9a636cd1ee" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1662,16 +1662,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "b93eaa01-a783-48ed-bc09-9d2a01b4c7f9" + "f73adf6e-c6d4-4838-9e60-494ab0e10733" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T194247Z:b93eaa01-a783-48ed-bc09-9d2a01b4c7f9" + "WESTUS:20200721T165017Z:f73adf6e-c6d4-4838-9e60-494ab0e10733" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:42:46 GMT" + "Tue, 21 Jul 2020 16:50:17 GMT" ], "Expires": [ "-1" @@ -1686,12 +1686,12 @@ ], "Names": { "": [ - "ps2243", - "ps4440", - "ps6015", - "ps7863", - "ps907", - "ps6588" + "ps3821", + "ps383", + "ps2042", + "ps4436", + "ps6493", + "ps7785" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionNewModelCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionNewModelCrudTest.json index d08941c54327..7c62b8962f85 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionNewModelCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionNewModelCrudTest.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ef81bfb-cbbb-4872-8b37-c53557a382c5" + "ed03a444-1286-4fa6-b363-68bb71b301c6" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -30,7 +30,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9d4cf33c-9e6f-437e-aa4b-3e05b57881b9" + "78fad34d-1c46-4d39-86ba-7b39c4f42a78" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -39,16 +39,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "fb968645-6548-4296-8842-294361d1a2cd" + "24f91b08-747f-434b-bf6a-79dca096cb3e" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193654Z:fb968645-6548-4296-8842-294361d1a2cd" + "WESTUS:20200721T164410Z:24f91b08-747f-434b-bf6a-79dca096cb3e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:54 GMT" + "Tue, 21 Jul 2020 16:44:10 GMT" ], "Content-Length": [ "2859" @@ -70,7 +70,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a81af88-fc5f-4ec4-9d48-a43b81c6d135" + "cae00baf-9652-4ae1-ae8c-d9f460106d27" ], "Accept-Language": [ "en-US" @@ -79,7 +79,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -96,7 +96,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e6786b02-0794-478c-910c-dfdefb4f1a5b" + "e73fae4e-bc96-448b-b64d-115e26383364" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -105,16 +105,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "4a73a5fa-6950-45e4-acc7-e33fdb22cda1" + "8840921b-b827-4399-8dfa-65fbfd65c413" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193654Z:4a73a5fa-6950-45e4-acc7-e33fdb22cda1" + "WESTUS:20200721T164410Z:8840921b-b827-4399-8dfa-65fbfd65c413" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:54 GMT" + "Tue, 21 Jul 2020 16:44:10 GMT" ], "Content-Length": [ "931" @@ -136,7 +136,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f03faf7-257f-40b4-bab7-6d40d87bdb24" + "2405d5cb-eee4-4059-a1f4-868bbb820211" ], "Accept-Language": [ "en-US" @@ -145,7 +145,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -162,7 +162,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ad6f58d7-a2f9-4001-b633-008d0cba7ab6" + "cfcace9c-9981-4c07-9d45-c71eded77c6b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -171,16 +171,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "d1e34b01-7f1d-4081-bdc7-33a8b793ccb0" + "020cd301-36f1-4928-a75b-2e168d2b092f" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193654Z:d1e34b01-7f1d-4081-bdc7-33a8b793ccb0" + "WESTUS:20200721T164410Z:020cd301-36f1-4928-a75b-2e168d2b092f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:54 GMT" + "Tue, 21 Jul 2020 16:44:10 GMT" ], "Content-Length": [ "933" @@ -202,7 +202,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43f49e22-52d5-4628-8967-54a1a6777731" + "4f1bfc1d-9870-4f52-99cc-4656a0b19caf" ], "Accept-Language": [ "en-US" @@ -211,7 +211,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -228,7 +228,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3bffa0ea-4857-4d52-a344-337e07c0b4af" + "cada1246-5182-4b81-b148-fe61d4b00fd2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -237,16 +237,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "e99ff073-b765-42cc-906c-d652daf13788" + "23960317-44f2-4bf8-b372-38b30df6aff5" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193654Z:e99ff073-b765-42cc-906c-d652daf13788" + "WESTUS:20200721T164411Z:23960317-44f2-4bf8-b372-38b30df6aff5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:54 GMT" + "Tue, 21 Jul 2020 16:44:10 GMT" ], "Content-Length": [ "737" @@ -262,13 +262,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6404?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2NDA0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM4NjExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"scope\": \"/apis\",\r\n \"displayName\": \"ps4593\",\r\n \"primaryKey\": \"ps5524\",\r\n \"secondaryKey\": \"ps6538\",\r\n \"state\": \"active\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"scope\": \"/apis\",\r\n \"displayName\": \"ps9572\",\r\n \"primaryKey\": \"ps5034\",\r\n \"secondaryKey\": \"ps2307\",\r\n \"state\": \"active\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0decd922-453c-45aa-a116-c569930ea761" + "4519311e-39a2-471f-bd72-94880982a120" ], "Accept-Language": [ "en-US" @@ -277,7 +277,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -294,13 +294,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC3M=\"" + "\"AAAAAAAAPbk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "55433ed3-840c-4aa0-8f2e-87eb692b961a" + "38327626-9e4b-481a-9b14-251f083829be" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -309,16 +309,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "efc3b485-c526-4b77-b37d-b4d5cd18d428" + "c957ccd8-ccc7-4254-b65c-a639b6b46019" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193655Z:efc3b485-c526-4b77-b37d-b4d5cd18d428" + "WESTUS:20200721T164411Z:c957ccd8-ccc7-4254-b65c-a639b6b46019" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:54 GMT" + "Tue, 21 Jul 2020 16:44:11 GMT" ], "Content-Length": [ "752" @@ -330,17 +330,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6404\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps6404\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis\",\r\n \"displayName\": \"ps4593\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:36:55.1003613Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps5524\",\r\n \"secondaryKey\": \"ps6538\",\r\n \"stateComment\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps8611\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis\",\r\n \"displayName\": \"ps9572\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:44:11.2369986Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps5034\",\r\n \"secondaryKey\": \"ps2307\",\r\n \"stateComment\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6404/listSecrets?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2NDA0L2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611/listSecrets?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM4NjExL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22d30718-1d71-4839-8d6e-78350e216abc" + "1befc243-b6e3-461d-b952-930320a749d1" ], "Accept-Language": [ "en-US" @@ -349,7 +349,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -360,13 +360,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC3M=\"" + "\"AAAAAAAAPbk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bb79e49d-1aa9-4d7a-8cd4-dc6812489ecb" + "35730c35-6560-4fd0-9441-d6492af7c086" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -375,16 +375,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "8d55a122-c260-4ed3-800c-4099144db60f" + "f3e9683d-cd6a-49b8-bd5f-76adac3caab1" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193655Z:8d55a122-c260-4ed3-800c-4099144db60f" + "WESTUS:20200721T164411Z:f3e9683d-cd6a-49b8-bd5f-76adac3caab1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:54 GMT" + "Tue, 21 Jul 2020 16:44:11 GMT" ], "Content-Length": [ "47" @@ -396,17 +396,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"ps5524\",\r\n \"secondaryKey\": \"ps6538\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"ps5034\",\r\n \"secondaryKey\": \"ps2307\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6404/listSecrets?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2NDA0L2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611/listSecrets?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM4NjExL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0b3d740-1a24-41a8-b6b9-c38b22548586" + "42a4afb1-cea9-489d-956a-f194b64920fa" ], "Accept-Language": [ "en-US" @@ -415,7 +415,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -426,13 +426,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC3Y=\"" + "\"AAAAAAAAPbw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e498eb6f-3303-4eaa-9b57-b482e0b3dc37" + "da3645af-59b7-430f-9991-90d496e6556d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -441,16 +441,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "fd116993-125e-404b-8ed8-47e7409ae48f" + "57494c3e-d44f-4967-bf9e-451945b05bbc" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193655Z:fd116993-125e-404b-8ed8-47e7409ae48f" + "WESTUS:20200721T164412Z:57494c3e-d44f-4967-bf9e-451945b05bbc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:55 GMT" + "Tue, 21 Jul 2020 16:44:12 GMT" ], "Content-Length": [ "47" @@ -462,17 +462,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"ps1864\",\r\n \"secondaryKey\": \"ps7489\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"ps5144\",\r\n \"secondaryKey\": \"ps4420\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6404?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2NDA0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM4NjExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"ownerId\": \"/users/1\",\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"ps7456\",\r\n \"primaryKey\": \"ps1864\",\r\n \"secondaryKey\": \"ps7489\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ownerId\": \"/users/1\",\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"ps9795\",\r\n \"primaryKey\": \"ps5144\",\r\n \"secondaryKey\": \"ps4420\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0323ff28-8e1b-4e54-93c6-e2272bd763b1" + "ac731560-f301-4d72-9a71-dc49d23abe4f" ], "If-Match": [ "*" @@ -484,7 +484,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -504,7 +504,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "31888b68-5273-4626-a6f8-666d1a9fb6ac" + "1f9f084c-7074-49ef-ae7e-45001e2e60b8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -513,16 +513,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "d198cbac-b260-4450-b0bc-6d77bae99b48" + "1ebda6f1-4fe8-417e-aa7b-54be33074e40" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193655Z:d198cbac-b260-4450-b0bc-6d77bae99b48" + "WESTUS:20200721T164412Z:1ebda6f1-4fe8-417e-aa7b-54be33074e40" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:55 GMT" + "Tue, 21 Jul 2020 16:44:11 GMT" ], "Expires": [ "-1" @@ -532,13 +532,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6404?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2NDA0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM4NjExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa2188de-91a5-4e15-be95-9bfcfa955336" + "7aba5b1f-c81a-458b-a5cc-a10e24254b59" ], "Accept-Language": [ "en-US" @@ -547,7 +547,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -558,13 +558,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAAC3Y=\"" + "\"AAAAAAAAPbw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "17f7af9d-086c-479d-8015-b3179fdacbcb" + "e7c77af4-9f9a-48ae-819f-be85b1b22411" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -573,19 +573,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "5eb04748-88b3-4323-a09a-f52b55027a72" + "f5042f5f-b3c0-4adc-8c5a-13aa589a6f08" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193655Z:5eb04748-88b3-4323-a09a-f52b55027a72" + "WESTUS:20200721T164412Z:f5042f5f-b3c0-4adc-8c5a-13aa589a6f08" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:55 GMT" + "Tue, 21 Jul 2020 16:44:11 GMT" ], "Content-Length": [ - "876" + "878" ], "Content-Type": [ "application/json; charset=utf-8" @@ -594,7 +594,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6404\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps6404\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis\",\r\n \"displayName\": \"ps7456\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:36:55.1Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps8611\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis\",\r\n \"displayName\": \"ps9795\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:44:11.237Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null\r\n }\r\n}", "StatusCode": 200 }, { @@ -604,7 +604,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d48e0de-ed8a-433b-b2b6-ceb4ae7dddb2" + "b90950d8-a3d8-4021-849a-f4b512958f14" ], "Accept-Language": [ "en-US" @@ -613,7 +613,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -627,7 +627,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "03479a14-f006-4a62-8360-ecc09b861bf0" + "612f8b5a-bf3f-41e0-92de-b31662f34d24" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -636,19 +636,19 @@ "11994" ], "x-ms-correlation-request-id": [ - "6ca22730-7682-4a76-8c65-2b542cd678c9" + "e9ddedef-5c99-4ef6-a9a1-47f096a85b38" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193656Z:6ca22730-7682-4a76-8c65-2b542cd678c9" + "WESTUS:20200721T164412Z:e9ddedef-5c99-4ef6-a9a1-47f096a85b38" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:55 GMT" + "Tue, 21 Jul 2020 16:44:12 GMT" ], "Content-Length": [ - "984" + "986" ], "Content-Type": [ "application/json; charset=utf-8" @@ -657,17 +657,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6404\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps6404\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis\",\r\n \"displayName\": \"ps7456\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:36:55.1Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps8611\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis\",\r\n \"displayName\": \"ps9795\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:44:11.237Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6404?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2NDA0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM4NjExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fddd3281-b054-46d0-b408-c253f98815f2" + "c251fe5f-48eb-4cdb-82e1-806869bf2e44" ], "If-Match": [ "*" @@ -679,7 +679,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -693,7 +693,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9483048f-03f3-43f8-b61a-002494cb8209" + "79bfd9c3-4ba2-492f-97cf-419c52f676fd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -702,16 +702,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "d90a30c4-9a92-4398-9d69-f393b71c6c5a" + "4328e7e3-759c-4f21-b4cc-f3846934b202" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193656Z:d90a30c4-9a92-4398-9d69-f393b71c6c5a" + "WESTUS:20200721T164412Z:4328e7e3-759c-4f21-b4cc-f3846934b202" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:36:55 GMT" + "Tue, 21 Jul 2020 16:44:12 GMT" ], "Expires": [ "-1" @@ -726,13 +726,13 @@ ], "Names": { "": [ - "ps6404", - "ps4593", - "ps5524", - "ps6538", - "ps7456", - "ps1864", - "ps7489" + "ps8611", + "ps9572", + "ps5034", + "ps2307", + "ps9795", + "ps5144", + "ps4420" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionOldModelCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionOldModelCrudTest.json index 475f24d179ed..c0868f4f0b45 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionOldModelCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/SubscriptionOldModelCrudTest.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4fe8dd6-9f54-4a7c-b782-20ef60adcddd" + "83ceecd5-3432-40ca-87bf-892d972b852e" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -30,25 +30,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "de18c818-6111-470f-9c20-cf7b54f0ffe3" + "0962af06-7329-448a-9a82-e2d3383f3da7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11999" ], "x-ms-correlation-request-id": [ - "707afabd-9192-4054-a115-622155c78151" + "53687841-35d7-420d-98ed-34e91f624be9" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193413Z:707afabd-9192-4054-a115-622155c78151" + "WESTUS:20200721T164123Z:53687841-35d7-420d-98ed-34e91f624be9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:12 GMT" + "Tue, 21 Jul 2020 16:41:23 GMT" ], "Content-Length": [ "2859" @@ -70,7 +70,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca0df150-151e-4fae-ba7b-6e0af35cb25a" + "191ada49-5fe1-42e1-ab03-74b4ceb58c2e" ], "Accept-Language": [ "en-US" @@ -79,7 +79,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -96,25 +96,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "71229b1f-df84-4a4d-a489-ff9c430f4de0" + "61930e22-600a-4b77-b4d5-1d38cafc4d2f" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11998" ], "x-ms-correlation-request-id": [ - "fca22cfa-7639-41ab-9251-783201459244" + "f95c0ec5-50fc-4f9c-9a15-029eba9c3e39" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193413Z:fca22cfa-7639-41ab-9251-783201459244" + "WESTUS:20200721T164123Z:f95c0ec5-50fc-4f9c-9a15-029eba9c3e39" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:13 GMT" + "Tue, 21 Jul 2020 16:41:23 GMT" ], "Content-Length": [ "931" @@ -136,7 +136,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d54b0b6e-d813-4c0c-aefa-2e07a9e8be83" + "9e867f2a-190c-4b4d-b6b1-66f9f6160294" ], "Accept-Language": [ "en-US" @@ -145,7 +145,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -162,25 +162,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ee9412e4-e573-4946-ad79-181989e9018e" + "a89f75de-ec84-4cbf-a401-9047528054e7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "c79bf8ea-c465-4e9f-a035-0bc4bb4faf7e" + "6df76fa2-1f6e-4c53-854e-c11c9d5d382e" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193413Z:c79bf8ea-c465-4e9f-a035-0bc4bb4faf7e" + "WESTUS:20200721T164123Z:6df76fa2-1f6e-4c53-854e-c11c9d5d382e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:13 GMT" + "Tue, 21 Jul 2020 16:41:23 GMT" ], "Content-Length": [ "99" @@ -202,7 +202,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d94c18a4-f210-435c-b8d9-690cfa20d484" + "8f54e82a-42d7-45f8-8666-0bef99aa5986" ], "Accept-Language": [ "en-US" @@ -211,7 +211,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -228,25 +228,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1c47e6ed-4f53-42de-a501-478a202472ab" + "0ad3e616-6902-4726-b9fe-d05da1850e51" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11997" ], "x-ms-correlation-request-id": [ - "b13891f3-ab46-451b-b267-cded3f083f38" + "d2a64474-e711-4958-9574-f2ea685e4d31" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193413Z:b13891f3-ab46-451b-b267-cded3f083f38" + "WESTUS:20200721T164124Z:d2a64474-e711-4958-9574-f2ea685e4d31" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:13 GMT" + "Tue, 21 Jul 2020 16:41:24 GMT" ], "Content-Length": [ "933" @@ -268,7 +268,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5c63b58-2805-462e-9c48-824f1b347fba" + "4151dfb9-8e17-42e8-93c9-20344d143aae" ], "Accept-Language": [ "en-US" @@ -277,7 +277,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -294,25 +294,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4dbb126e-5150-450d-a6b0-e524682f295d" + "ae86477b-6200-4a22-9609-2303ce61828d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "fa0ee4f5-2665-4b19-aeea-d9e83651dc79" + "8ffea865-ad4a-4658-926c-e4cb3c80ed07" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193413Z:fa0ee4f5-2665-4b19-aeea-d9e83651dc79" + "WESTUS:20200721T164124Z:8ffea865-ad4a-4658-926c-e4cb3c80ed07" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:13 GMT" + "Tue, 21 Jul 2020 16:41:24 GMT" ], "Content-Length": [ "99" @@ -334,7 +334,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7292e907-8328-450a-b88d-3c083e5a0bcb" + "97bdc686-0b35-4b98-b7fc-38983795190d" ], "Accept-Language": [ "en-US" @@ -343,7 +343,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -360,25 +360,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d8455f8e-09a3-4bb4-888d-f63608a64cd7" + "2f744187-ef4d-4edc-81ff-72caeb93fb95" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11996" ], "x-ms-correlation-request-id": [ - "8abc5e5e-33f6-475e-8f46-149b2bce9f3c" + "b633ecfe-3843-43f6-a075-617f03d53eb1" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193414Z:8abc5e5e-33f6-475e-8f46-149b2bce9f3c" + "WESTUS:20200721T164124Z:b633ecfe-3843-43f6-a075-617f03d53eb1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:13 GMT" + "Tue, 21 Jul 2020 16:41:24 GMT" ], "Content-Length": [ "737" @@ -400,7 +400,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29fa1bf6-9af0-4cbe-af1d-db65a3005530" + "1ebb129e-1179-412b-be0f-7db494d38f8d" ], "Accept-Language": [ "en-US" @@ -409,7 +409,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -426,25 +426,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "69002038-ba3d-4313-86bf-571c0ce9181c" + "29c539ac-4c58-4856-b1d1-cb3397e79ba9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "437661d7-7d84-436a-b251-7c283a503287" + "d91e462b-50ee-4a67-a05e-3389d5b42930" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193414Z:437661d7-7d84-436a-b251-7c283a503287" + "WESTUS:20200721T164124Z:d91e462b-50ee-4a67-a05e-3389d5b42930" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:13 GMT" + "Tue, 21 Jul 2020 16:41:24 GMT" ], "Content-Length": [ "99" @@ -466,7 +466,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"subscriptionsLimit\": 100\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d486317b-6cf4-40a4-9983-a6335b6cc4d2" + "cd25bc9a-d505-4f97-9f3c-a9d3a9a33736" ], "If-Match": [ "*" @@ -478,7 +478,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -498,25 +498,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1c747050-55a0-4125-b4a5-124f57460cb1" + "194debfe-c498-474f-ad6f-4f430401ba6d" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "16e14bf1-4e76-4400-bfc2-72d36b3c32bd" + "131d32bd-0a65-4c8f-b9fb-cab5f5b5367a" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193414Z:16e14bf1-4e76-4400-bfc2-72d36b3c32bd" + "WESTUS:20200721T164125Z:131d32bd-0a65-4c8f-b9fb-cab5f5b5367a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:14 GMT" + "Tue, 21 Jul 2020 16:41:25 GMT" ], "Expires": [ "-1" @@ -526,13 +526,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps7062?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM3MDYyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6898?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2ODk4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ownerId\": \"/users/1\",\r\n \"scope\": \"/products/starter\",\r\n \"displayName\": \"ps6641\",\r\n \"primaryKey\": \"ps2411\",\r\n \"secondaryKey\": \"ps2421\",\r\n \"state\": \"active\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ownerId\": \"/users/1\",\r\n \"scope\": \"/products/starter\",\r\n \"displayName\": \"ps3031\",\r\n \"primaryKey\": \"ps2435\",\r\n \"secondaryKey\": \"ps2518\",\r\n \"state\": \"active\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7a62d7e5-eafe-4a69-a2b2-b474a6e96790" + "58dcf4a7-7485-46e8-9149-cff54d55b292" ], "Accept-Language": [ "en-US" @@ -541,7 +541,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -558,31 +558,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACu8=\"" + "\"AAAAAAAAPRk=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "259ad8e6-67c3-4312-a843-0ddb865b05aa" + "6ff1fa47-ec9f-4bbb-b5f9-5cf2e0489249" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "8cce3e00-cb9a-4e6d-8c0e-0a9fdd496306" + "54bc540b-519c-4e86-90e1-afc846d030fe" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193415Z:8cce3e00-cb9a-4e6d-8c0e-0a9fdd496306" + "WESTUS:20200721T164126Z:54bc540b-519c-4e86-90e1-afc846d030fe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:15 GMT" + "Tue, 21 Jul 2020 16:41:26 GMT" ], "Content-Length": [ "1366" @@ -594,17 +594,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps7062\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps7062\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"user\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T18:52:14.87Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n },\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps6641\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:34:15.1043708Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps2411\",\r\n \"secondaryKey\": \"ps2421\",\r\n \"stateComment\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6898\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps6898\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"user\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"foo@live.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T18:52:14.87Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n },\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps3031\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:41:25.6217121Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps2435\",\r\n \"secondaryKey\": \"ps2518\",\r\n \"stateComment\": null\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps7062?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM3MDYyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6898?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2ODk4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"ps9148\",\r\n \"primaryKey\": \"ps9133\",\r\n \"secondaryKey\": \"ps1038\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"ps2323\",\r\n \"primaryKey\": \"ps1758\",\r\n \"secondaryKey\": \"ps8539\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "90529bc0-488e-497d-bbcd-c7097bda8be3" + "ec37ba1b-bae1-45d7-983a-67183d966889" ], "If-Match": [ "*" @@ -616,7 +616,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -636,25 +636,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e197558f-b6c1-4237-bb52-8db0214b33f7" + "b0495875-6602-4d4d-a6e4-312157d97e35" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "333935f2-5cf7-4c4e-9faa-52e18ac16909" + "d3f25a6c-609e-49ad-95e7-80ec8116ebe3" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193416Z:333935f2-5cf7-4c4e-9faa-52e18ac16909" + "WESTUS:20200721T164127Z:d3f25a6c-609e-49ad-95e7-80ec8116ebe3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:16 GMT" + "Tue, 21 Jul 2020 16:41:27 GMT" ], "Expires": [ "-1" @@ -664,13 +664,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps7062?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM3MDYyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6898?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2ODk4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0bbde9cb-c6b4-4953-8d00-a31cdba41b0f" + "ed58289a-a1e0-4acb-ac73-9204c0373684" ], "Accept-Language": [ "en-US" @@ -679,7 +679,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -690,31 +690,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACvI=\"" + "\"AAAAAAAAPRw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9647bb28-607b-42a8-8498-a1d09c14b347" + "58c9b2f1-6d7a-4485-bf07-85284fa99f92" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11995" ], "x-ms-correlation-request-id": [ - "17c5eca8-78ef-4465-8c15-7c0ef27b7c62" + "762315cd-5b25-4125-8dbf-1f9e267f066f" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193417Z:17c5eca8-78ef-4465-8c15-7c0ef27b7c62" + "WESTUS:20200721T164127Z:762315cd-5b25-4125-8dbf-1f9e267f066f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:16 GMT" + "Tue, 21 Jul 2020 16:41:27 GMT" ], "Content-Length": [ "935" @@ -726,17 +726,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps7062\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps7062\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps9148\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:34:15.103Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6898\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps6898\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps2323\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:41:25.623Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps7062/listSecrets?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM3MDYyL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6898/listSecrets?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2ODk4L2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0fd822d2-27b2-463a-81c2-9e036db5d672" + "c230a965-2e94-49dd-ae0a-fca46238dc00" ], "Accept-Language": [ "en-US" @@ -745,7 +745,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -756,31 +756,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACvI=\"" + "\"AAAAAAAAPRw=\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "88dda0a1-2172-4475-98b7-f1e1faff7ba5" + "75beea5a-0aa7-423d-bb2d-4e3421cfb4ce" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "a33807a9-8c8a-448a-9c62-ffdb97c2e469" + "4a49bdbf-8152-45f3-9451-c27ccd98a745" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193417Z:a33807a9-8c8a-448a-9c62-ffdb97c2e469" + "WESTUS:20200721T164127Z:4a49bdbf-8152-45f3-9451-c27ccd98a745" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:16 GMT" + "Tue, 21 Jul 2020 16:41:27 GMT" ], "Content-Length": [ "47" @@ -792,7 +792,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"ps9133\",\r\n \"secondaryKey\": \"ps1038\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"ps1758\",\r\n \"secondaryKey\": \"ps8539\"\r\n}", "StatusCode": 200 }, { @@ -802,7 +802,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac80cc9e-182b-4c3e-94f8-3ff1b0b07066" + "3ae7bdce-9099-4d0a-83b4-9ff799c76da9" ], "Accept-Language": [ "en-US" @@ -811,7 +811,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -825,25 +825,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1f87cb5f-342e-44b7-a248-67c82925a244" + "0d4cf35c-9bf6-4c05-b902-39c0ed6eb5f4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11994" ], "x-ms-correlation-request-id": [ - "46333802-aa0b-4c0c-969c-e04474524a5d" + "d6a898d3-2341-4812-8222-b4de7a5565e2" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193417Z:46333802-aa0b-4c0c-969c-e04474524a5d" + "WESTUS:20200721T164128Z:d6a898d3-2341-4812-8222-b4de7a5565e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:16 GMT" + "Tue, 21 Jul 2020 16:41:28 GMT" ], "Content-Length": [ "2105" @@ -855,7 +855,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/subscriptions/5eab1e5f9d398d0050070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"5eab1e5f9d398d0050070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:15.807Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/subscriptions/ps7062\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"ps7062\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps9148\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:34:15.103Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/subscriptions/5eab1e5f9d398d0050070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"5eab1e5f9d398d0050070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:15.807Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/subscriptions/ps6898\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"ps6898\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps2323\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:41:25.623Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { @@ -865,7 +865,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e90db60-2ffb-4641-a5f2-fcdd4f937335" + "bb0ad458-9aea-41b2-8de3-27b0a6c28dcc" ], "Accept-Language": [ "en-US" @@ -874,7 +874,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -888,25 +888,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e7626f13-e811-4c51-9a3b-6b317513bc09" + "ff9114a2-af66-403f-9bca-8ce1ec782b18" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11993" ], "x-ms-correlation-request-id": [ - "2bfaabd6-96d4-4d85-966c-f5abb97629b6" + "b00e8aac-74e8-4703-ae1b-c2e5098d6454" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193418Z:2bfaabd6-96d4-4d85-966c-f5abb97629b6" + "WESTUS:20200721T164129Z:b00e8aac-74e8-4703-ae1b-c2e5098d6454" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:17 GMT" + "Tue, 21 Jul 2020 16:41:29 GMT" ], "Content-Length": [ "3103" @@ -918,7 +918,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/subscriptions/5eab1e5f9d398d0050070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"5eab1e5f9d398d0050070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:15.807Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/subscriptions/5eab1e609d398d0050070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"5eab1e609d398d0050070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:16.603Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/subscriptions/ps7062\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"ps7062\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps9148\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:34:15.103Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/subscriptions/5eab1e5f9d398d0050070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"5eab1e5f9d398d0050070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:15.807Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/subscriptions/5eab1e609d398d0050070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"5eab1e609d398d0050070002\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:16.603Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/subscriptions/ps6898\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"ps6898\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps2323\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:41:25.623Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 3\r\n}", "StatusCode": 200 }, { @@ -928,7 +928,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b909703e-7978-4a9f-b19d-2d599ddc8119" + "245cf253-d029-48fd-afce-ef7c992e4739" ], "Accept-Language": [ "en-US" @@ -937,7 +937,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -951,25 +951,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "06f119e0-738d-493b-814b-6b7c901661d4" + "78249b46-f307-43d4-9dbb-cdd6b328b7f7" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11992" ], "x-ms-correlation-request-id": [ - "ef7978b5-1767-41d1-af08-36ddd96f2aa0" + "646f9aa7-4ca7-46fd-9a74-61d2aea8bded" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193418Z:ef7978b5-1767-41d1-af08-36ddd96f2aa0" + "WESTUS:20200721T164129Z:646f9aa7-4ca7-46fd-9a74-61d2aea8bded" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:18 GMT" + "Tue, 21 Jul 2020 16:41:29 GMT" ], "Content-Length": [ "2053" @@ -981,17 +981,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e5f9d398d0050070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5eab1e5f9d398d0050070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:15.807Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps7062\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps7062\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps9148\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T19:34:15.103Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e5f9d398d0050070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"5eab1e5f9d398d0050070001\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-04-30T18:52:15.807Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6898\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps6898\",\r\n \"properties\": {\r\n \"ownerId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1\",\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter\",\r\n \"displayName\": \"ps2323\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:41:25.623Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"endDate\": null,\r\n \"notificationDate\": \"2025-07-08T00:00:00Z\",\r\n \"stateComment\": null,\r\n \"allowTracing\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps7062?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM3MDYyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6898?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2ODk4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc95b2c8-9c05-4df6-9fa6-7d91fb46e873" + "92366edc-2040-436c-a888-2c4b530bed02" ], "If-Match": [ "*" @@ -1003,7 +1003,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1017,7 +1017,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d1d8fde1-98d5-4fa6-bff3-77f24666c97e" + "17e92f1f-51a9-4dc8-873f-035ad2463153" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1026,16 +1026,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "68327bbb-0248-4d45-901c-049b8218a8e5" + "b0f2692b-f057-48e4-b4ff-56c85f874204" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193418Z:68327bbb-0248-4d45-901c-049b8218a8e5" + "WESTUS:20200721T164129Z:b0f2692b-f057-48e4-b4ff-56c85f874204" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:18 GMT" + "Tue, 21 Jul 2020 16:41:29 GMT" ], "Expires": [ "-1" @@ -1050,13 +1050,13 @@ ], "Names": { "": [ - "ps7062", - "ps6641", - "ps2411", - "ps2421", - "ps9148", - "ps9133", - "ps1038" + "ps6898", + "ps3031", + "ps2435", + "ps2518", + "ps2323", + "ps1758", + "ps8539" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantAccessConfCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantAccessConfCrudTest.json index 8ca771d0336a..4f6814cd9b60 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantAccessConfCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantAccessConfCrudTest.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee73e9b-5113-4fac-a769-9bfd8d64b0be" + "c69db0b6-3e3f-4b59-b21b-b681de5d5902" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -27,31 +27,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACHcAAAAAAAAAAA==\"" + "\"AAAAAAAALyAAAAAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2d0c06ed-eebf-4bd2-93df-6e9730384721" + "8d88d837-ac5e-49ff-bfa6-1136b85c2542" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-correlation-request-id": [ - "ecc3e602-3ab1-4f28-9e18-9a42ecf471f3" + "2ccf4111-4472-445b-a2da-7f51e56f39d3" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193409Z:ecc3e602-3ab1-4f28-9e18-9a42ecf471f3" + "WESTUS:20200721T164119Z:2ccf4111-4472-445b-a2da-7f51e56f39d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:08 GMT" + "Tue, 21 Jul 2020 16:41:19 GMT" ], "Content-Length": [ "74" @@ -73,7 +73,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af3c0f94-4848-4afe-a6c0-219826ee33e3" + "19db0907-f880-48b4-bd3b-b876d20eea36" ], "Accept-Language": [ "en-US" @@ -82,7 +82,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -93,31 +93,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACucAAAAAAAAAAA==\"" + "\"AAAAAAAAPRQAAAAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f0ccdf43-ba81-4227-b66c-b484cf32ab95" + "96387a12-78c6-4576-be97-4ab99381329e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11998" ], "x-ms-correlation-request-id": [ - "011ae3a0-3d78-4fb9-b512-a9cbf7d7f930" + "8b376a42-b6f0-40f1-bcc7-2ddfefeba992" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193409Z:011ae3a0-3d78-4fb9-b512-a9cbf7d7f930" + "WESTUS:20200721T164120Z:8b376a42-b6f0-40f1-bcc7-2ddfefeba992" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:09 GMT" + "Tue, 21 Jul 2020 16:41:19 GMT" ], "Content-Length": [ "73" @@ -139,7 +139,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a894a2e-36da-4f70-9050-a3d8921f3f1a" + "7cff416c-32ca-462e-9e93-9353330029bf" ], "Accept-Language": [ "en-US" @@ -148,7 +148,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -159,31 +159,31 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACugAAAAAAAAAAA==\"" + "\"AAAAAAAAPRUAAAAAAAAAAA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fea213f1-d85d-4b58-a335-eaeb0937acd9" + "0cf6676d-93df-4eb3-9f5a-5f4d06ae4b76" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11997" ], "x-ms-correlation-request-id": [ - "b3e6d621-032f-4bda-854b-f46cec37b2ba" + "0e68cfa9-70ca-44fb-bf7c-be38ff40c34d" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193409Z:b3e6d621-032f-4bda-854b-f46cec37b2ba" + "WESTUS:20200721T164120Z:0e68cfa9-70ca-44fb-bf7c-be38ff40c34d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:09 GMT" + "Tue, 21 Jul 2020 16:41:20 GMT" ], "Content-Length": [ "74" @@ -205,7 +205,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c160f4e1-858a-4e2f-9562-80753f89259c" + "8832bf0c-c010-462c-bee3-f5f13ef3ee81" ], "If-Match": [ "*" @@ -217,7 +217,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -237,25 +237,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c90c5c32-c46e-4794-857b-5ccb10bca135" + "60b5d913-4c34-4906-a958-1359f03b0c16" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "01261e1c-cec2-43d5-af84-931044ca0ff6" + "a754b380-7061-4777-925a-4a8b470395d4" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193409Z:01261e1c-cec2-43d5-af84-931044ca0ff6" + "WESTUS:20200721T164119Z:a754b380-7061-4777-925a-4a8b470395d4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:08 GMT" + "Tue, 21 Jul 2020 16:41:19 GMT" ], "Expires": [ "-1" @@ -271,7 +271,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5b4e2124-9423-4a2f-a310-e66fc28ba68f" + "9fe98719-4fb3-4aaa-81eb-e7db3c39970c" ], "If-Match": [ "*" @@ -283,7 +283,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -303,25 +303,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0e1459c7-799c-4a77-bb2e-d5f3b34c39a1" + "18cca37f-3153-47a3-9711-559048000cac" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "bff38742-4f1b-47e8-b673-8db2e8050a30" + "fc1d165f-b167-47a2-8182-6533fdf3edfa" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193409Z:bff38742-4f1b-47e8-b673-8db2e8050a30" + "WESTUS:20200721T164120Z:fc1d165f-b167-47a2-8182-6533fdf3edfa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:09 GMT" + "Tue, 21 Jul 2020 16:41:20 GMT" ], "Expires": [ "-1" diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantGitConfCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantGitConfCrudTest.json index 27b10f1ae300..cca5efa8c924 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantGitConfCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/TenantGitConfCrudTest.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9150c43c-c967-42c9-9e2d-1b0a4d710331" + "0e5d1416-8c34-42e4-b3ea-09c5b893861e" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -33,7 +33,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "90b70796-2812-481d-b3ca-f5e1903df485" + "b525785c-96d5-477d-be22-413357b2b130" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -42,16 +42,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "4028426c-e93a-43e9-8a19-585780e602f9" + "f7c56ed3-4f43-418b-9063-fef7f1ddf6ce" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193016Z:4028426c-e93a-43e9-8a19-585780e602f9" + "WESTUS:20200721T163659Z:f7c56ed3-4f43-418b-9063-fef7f1ddf6ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:30:15 GMT" + "Tue, 21 Jul 2020 16:36:58 GMT" ], "Content-Length": [ "65" @@ -73,7 +73,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7971ad50-5139-48f1-883d-df2e4808651e" + "d5e3c800-60c9-428f-9795-d16729610524" ], "Accept-Language": [ "en-US" @@ -82,7 +82,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -96,7 +96,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "479aa4aa-5390-453a-aa45-2182cfeac1a9" + "e638b5b5-26e9-4ac2-9876-587e60e672ef" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -105,19 +105,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "5a4dee69-f7ad-464a-8553-23b130be80fe" + "454851b3-5605-4a3c-b369-109940d67d1f" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193017Z:5a4dee69-f7ad-464a-8553-23b130be80fe" + "WESTUS:20200721T163700Z:454851b3-5605-4a3c-b369-109940d67d1f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:30:16 GMT" + "Tue, 21 Jul 2020 16:36:59 GMT" ], "Content-Length": [ - "158" + "310" ], "Content-Type": [ "application/json; charset=utf-8" @@ -126,7 +126,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"branch\": null,\r\n \"commitId\": null,\r\n \"isExport\": false,\r\n \"isSynced\": false,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": null,\r\n \"configurationChangeDate\": \"2020-04-30T19:30:12.5573121Z\"\r\n}", + "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"e6d0a3ac0e9a3dc8f123543a010e30c5bc5fed80\",\r\n \"isExport\": false,\r\n \"isSynced\": false,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2020-06-29T23:31:25.2462656Z\",\r\n \"configurationChangeDate\": \"2020-07-21T16:36:41.9091266Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5efa79b7a2ca601994fb7d21\"\r\n}", "StatusCode": 200 }, { @@ -136,7 +136,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d2879fd-ce39-458f-b5bc-22167e914e77" + "497c0c89-47bd-4c75-a2c2-31f69e22e2d7" ], "Accept-Language": [ "en-US" @@ -145,7 +145,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -159,7 +159,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8fa37a20-b1b5-4402-8d16-b61b10ef1c56" + "543d1d8a-6ad8-4c86-891f-b6da5f246d91" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -168,16 +168,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "884687c0-cfc7-439f-b48d-d5d73e2d9df9" + "b37c2e05-316b-4b3d-a46e-77eed2c7ed54" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193117Z:884687c0-cfc7-439f-b48d-d5d73e2d9df9" + "WESTUS:20200721T163801Z:b37c2e05-316b-4b3d-a46e-77eed2c7ed54" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:31:17 GMT" + "Tue, 21 Jul 2020 16:38:00 GMT" ], "Content-Length": [ "308" @@ -189,7 +189,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"6821959346515a60776d836a09dd2668a05c4ef9\",\r\n \"isExport\": true,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2020-04-30T19:30:58.1368849Z\",\r\n \"configurationChangeDate\": \"2020-04-30T19:30:12.5573121Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5eab2749a2ca601230023141\"\r\n}", + "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"3191e287ef2b3f39bb2216dfe9fa443cf7198795\",\r\n \"isExport\": true,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2020-07-21T16:37:34.5809747Z\",\r\n \"configurationChangeDate\": \"2020-07-21T16:36:41.9091266Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5f1719aca2ca600fe4c296a2\"\r\n}", "StatusCode": 200 }, { @@ -199,7 +199,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e0238ec-055d-413b-b8e2-f7acf9469f89" + "5cc7811d-899b-4bce-8719-da35ede3fd9c" ], "Accept-Language": [ "en-US" @@ -208,7 +208,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -222,7 +222,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0b7cb5ff-6a6f-419d-be7e-5a7ee5519c52" + "17cf34b4-8e1e-45c7-afbb-e131574faa48" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -231,16 +231,16 @@ "11989" ], "x-ms-correlation-request-id": [ - "c346ecb5-9786-4e1f-9f15-c863d6d122cf" + "87df6eb3-0caa-4ade-8b1c-e978c4f4ff45" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193219Z:c346ecb5-9786-4e1f-9f15-c863d6d122cf" + "WESTUS:20200721T163902Z:87df6eb3-0caa-4ade-8b1c-e978c4f4ff45" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:18 GMT" + "Tue, 21 Jul 2020 16:39:01 GMT" ], "Content-Length": [ "309" @@ -252,7 +252,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"6821959346515a60776d836a09dd2668a05c4ef9\",\r\n \"isExport\": false,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2020-04-30T19:32:18.2505365Z\",\r\n \"configurationChangeDate\": \"2020-04-30T19:32:18.2505365Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5eab27a4a2ca601230023145\"\r\n}", + "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"3191e287ef2b3f39bb2216dfe9fa443cf7198795\",\r\n \"isExport\": false,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2020-07-21T16:38:52.9247515Z\",\r\n \"configurationChangeDate\": \"2020-07-21T16:38:52.9247515Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5f171a07a2ca600fe4c296a6\"\r\n}", "StatusCode": 200 }, { @@ -262,7 +262,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"force\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "108e765a-6fff-40ce-9b10-3cc904f7a4f6" + "53050938-4910-4c95-922a-c35439837a37" ], "Accept-Language": [ "en-US" @@ -271,7 +271,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -288,13 +288,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5eab2749a2ca601230023141?api-version=2019-12-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f1719aca2ca600fe4c296a2?api-version=2019-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "18ac2343-979a-4797-9959-e9b7903b5982" + "48f4c365-4a8c-4563-a55a-aeb0751cfaf1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -303,16 +303,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "0eb3e5be-9109-4b8c-b3a7-b0da0a148c51" + "05fafed5-05ed-405e-9961-d6dd86f6c57d" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193017Z:0eb3e5be-9109-4b8c-b3a7-b0da0a148c51" + "WESTUS:20200721T163700Z:05fafed5-05ed-405e-9961-d6dd86f6c57d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:30:16 GMT" + "Tue, 21 Jul 2020 16:36:59 GMT" ], "Content-Length": [ "33" @@ -324,12 +324,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5eab2749a2ca601230023141\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"5f1719aca2ca600fe4c296a2\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5eab2749a2ca601230023141?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWVhYjI3NDlhMmNhNjAxMjMwMDIzMTQxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f1719aca2ca600fe4c296a2?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWYxNzE5YWNhMmNhNjAwZmU0YzI5NmEyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -337,7 +337,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -348,13 +348,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5eab2749a2ca601230023141?api-version=2019-12-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f1719aca2ca600fe4c296a2?api-version=2019-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b81c3ed0-e5b4-4e62-84e5-0b0249968b4f" + "de9d0215-c681-4d21-acb7-d2d0be717a4a" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -363,19 +363,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "93de5387-c387-4b5b-86e3-038c470dcfaa" + "f627a4c5-41f4-4432-bb49-ce7aa9918fef" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193047Z:93de5387-c387-4b5b-86e3-038c470dcfaa" + "WESTUS:20200721T163730Z:f627a4c5-41f4-4432-bb49-ce7aa9918fef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:30:47 GMT" + "Tue, 21 Jul 2020 16:37:30 GMT" ], "Content-Length": [ - "158" + "156" ], "Content-Type": [ "application/json; charset=utf-8" @@ -384,12 +384,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5eab2749a2ca601230023141\",\r\n \"status\": \"InProgress\",\r\n \"started\": \"2020-04-30T19:30:17.34Z\",\r\n \"updated\": \"2020-04-30T19:30:17.34Z\",\r\n \"resultInfo\": null,\r\n \"error\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"5f1719aca2ca600fe4c296a2\",\r\n \"status\": \"InProgress\",\r\n \"started\": \"2020-07-21T16:37:00.3Z\",\r\n \"updated\": \"2020-07-21T16:37:00.3Z\",\r\n \"resultInfo\": null,\r\n \"error\": null\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5eab2749a2ca601230023141?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWVhYjI3NDlhMmNhNjAxMjMwMDIzMTQxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f1719aca2ca600fe4c296a2?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWYxNzE5YWNhMmNhNjAwZmU0YzI5NmEyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -397,7 +397,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -411,7 +411,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dfe98632-f85d-4a73-abd3-913842ba7933" + "71168530-71d3-4f70-8958-a2309cb3c3f8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -420,19 +420,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "99322ecf-99b5-4439-8526-14852d97e487" + "cc4138ef-7717-4c61-9587-7499dca84eb5" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193117Z:99322ecf-99b5-4439-8526-14852d97e487" + "WESTUS:20200721T163800Z:cc4138ef-7717-4c61-9587-7499dca84eb5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:31:17 GMT" + "Tue, 21 Jul 2020 16:38:00 GMT" ], "Content-Length": [ - "273" + "272" ], "Content-Type": [ "application/json; charset=utf-8" @@ -441,12 +441,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5eab2749a2ca601230023141\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-04-30T19:30:17.34Z\",\r\n \"updated\": \"2020-04-30T19:30:58.137Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 6821959346515a60776d836a09dd2668a05c4ef9.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"5f1719aca2ca600fe4c296a2\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-07-21T16:37:00.3Z\",\r\n \"updated\": \"2020-07-21T16:37:34.567Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 3191e287ef2b3f39bb2216dfe9fa443cf7198795.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5eab2749a2ca601230023141?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWVhYjI3NDlhMmNhNjAxMjMwMDIzMTQxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f1719aca2ca600fe4c296a2?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWYxNzE5YWNhMmNhNjAwZmU0YzI5NmEyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -454,7 +454,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -468,7 +468,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "86a4f487-f2e0-4ccb-9a63-c9bea720b046" + "5b187e51-73cb-49ba-a878-bfe955dfaa97" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -477,19 +477,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "287b9363-60f1-4f24-8021-6b7d98a522f7" + "69714d75-9892-4913-9a1d-49100f2e9066" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193117Z:287b9363-60f1-4f24-8021-6b7d98a522f7" + "WESTUS:20200721T163801Z:69714d75-9892-4913-9a1d-49100f2e9066" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:31:17 GMT" + "Tue, 21 Jul 2020 16:38:00 GMT" ], "Content-Length": [ - "273" + "272" ], "Content-Type": [ "application/json; charset=utf-8" @@ -498,7 +498,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5eab2749a2ca601230023141\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-04-30T19:30:17.34Z\",\r\n \"updated\": \"2020-04-30T19:30:58.137Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 6821959346515a60776d836a09dd2668a05c4ef9.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"5f1719aca2ca600fe4c296a2\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-07-21T16:37:00.3Z\",\r\n \"updated\": \"2020-07-21T16:37:34.567Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 3191e287ef2b3f39bb2216dfe9fa443cf7198795.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", "StatusCode": 200 }, { @@ -508,7 +508,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"force\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ce05e9c2-3534-48a6-941b-91ceaf59ee93" + "58f69980-62e0-4781-971d-6d58d748227c" ], "Accept-Language": [ "en-US" @@ -517,7 +517,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -534,13 +534,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5eab2786a2ca601230023143?api-version=2019-12-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f1719e9a2ca600fe4c296a4?api-version=2019-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "293d1832-9317-4119-a348-0f57a84c5974" + "71cdf15a-35c9-430c-a575-ad83c830f1b5" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -549,16 +549,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "0cbd902c-06fe-4a9a-887f-d248d6b1ce26" + "0fd79ca0-1243-44a4-b815-7b7e750af262" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193118Z:0cbd902c-06fe-4a9a-887f-d248d6b1ce26" + "WESTUS:20200721T163801Z:0fd79ca0-1243-44a4-b815-7b7e750af262" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:31:17 GMT" + "Tue, 21 Jul 2020 16:38:00 GMT" ], "Content-Length": [ "33" @@ -570,12 +570,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5eab2786a2ca601230023143\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"5f1719e9a2ca600fe4c296a4\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5eab2786a2ca601230023143?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWVhYjI3ODZhMmNhNjAxMjMwMDIzMTQzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f1719e9a2ca600fe4c296a4?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWYxNzE5ZTlhMmNhNjAwZmU0YzI5NmE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -583,7 +583,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -597,28 +597,28 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "875fe5e0-abf3-46f6-a3cb-0afffc98b658" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "23317c68-274f-43f0-ad07-be301f531d06" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], "x-ms-correlation-request-id": [ - "f921b45a-7592-471e-9201-b45540859c50" + "9cbcab93-3608-4f4d-ba28-aacf71d1689b" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193148Z:f921b45a-7592-471e-9201-b45540859c50" + "WESTUS:20200721T163831Z:9cbcab93-3608-4f4d-ba28-aacf71d1689b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:31:47 GMT" + "Tue, 21 Jul 2020 16:38:31 GMT" ], "Content-Length": [ - "196" + "279" ], "Content-Type": [ "application/json; charset=utf-8" @@ -627,12 +627,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5eab2786a2ca601230023143\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-04-30T19:31:18.07Z\",\r\n \"updated\": \"2020-04-30T19:31:29.493Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"5f1719e9a2ca600fe4c296a4\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-07-21T16:38:01.323Z\",\r\n \"updated\": \"2020-07-21T16:38:09.533Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": [\r\n {\r\n \"objectType\": \"PolicySpecification\",\r\n \"action\": \"Deleted\",\r\n \"objectKey\": \"TenantPolicy\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5eab2786a2ca601230023143?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWVhYjI3ODZhMmNhNjAxMjMwMDIzMTQzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f1719e9a2ca600fe4c296a4?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWYxNzE5ZTlhMmNhNjAwZmU0YzI5NmE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -640,7 +640,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -654,7 +654,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a975fed2-b795-47f8-8f7c-8b719a4249a6" + "246a3594-e993-45a7-88ea-1fef08c9a631" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -663,19 +663,19 @@ "11992" ], "x-ms-correlation-request-id": [ - "8b62abe9-e5b1-4797-ad0a-9e3ecceabc64" + "f0b4ac53-0979-4105-9187-cbb4cfac25f2" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193148Z:8b62abe9-e5b1-4797-ad0a-9e3ecceabc64" + "WESTUS:20200721T163831Z:f0b4ac53-0979-4105-9187-cbb4cfac25f2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:31:47 GMT" + "Tue, 21 Jul 2020 16:38:31 GMT" ], "Content-Length": [ - "196" + "279" ], "Content-Type": [ "application/json; charset=utf-8" @@ -684,7 +684,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5eab2786a2ca601230023143\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-04-30T19:31:18.07Z\",\r\n \"updated\": \"2020-04-30T19:31:29.493Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"5f1719e9a2ca600fe4c296a4\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-07-21T16:38:01.323Z\",\r\n \"updated\": \"2020-07-21T16:38:09.533Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": [\r\n {\r\n \"objectType\": \"PolicySpecification\",\r\n \"action\": \"Deleted\",\r\n \"objectKey\": \"TenantPolicy\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -694,7 +694,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"force\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "859cd6dc-e5aa-4b18-9246-46ee81e5f44c" + "fd1f0acb-fcaf-4757-a2da-1c803ef4296f" ], "Accept-Language": [ "en-US" @@ -703,7 +703,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -720,13 +720,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5eab27a4a2ca601230023145?api-version=2019-12-01" + "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f171a07a2ca600fe4c296a6?api-version=2019-12-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "746044dd-7540-4dfd-ba23-c7fb92b53b04" + "21b41989-ae78-45f3-bdc8-2932fefadf01" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -735,16 +735,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "f14e1f5d-6c23-419c-8b15-a73fe88197bd" + "9554df38-ea0f-4c50-add0-8ee6978fc46b" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193148Z:f14e1f5d-6c23-419c-8b15-a73fe88197bd" + "WESTUS:20200721T163832Z:9554df38-ea0f-4c50-add0-8ee6978fc46b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:31:48 GMT" + "Tue, 21 Jul 2020 16:38:31 GMT" ], "Content-Length": [ "33" @@ -756,12 +756,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5eab27a4a2ca601230023145\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"5f171a07a2ca600fe4c296a6\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5eab27a4a2ca601230023145?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWVhYjI3YTRhMmNhNjAxMjMwMDIzMTQ1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f171a07a2ca600fe4c296a6?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWYxNzFhMDdhMmNhNjAwZmU0YzI5NmE2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -769,7 +769,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -783,7 +783,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fe7791e8-6b6f-4031-899f-58393578fbdc" + "28f469d8-e923-4f15-b372-99aaf34e15bd" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -792,19 +792,19 @@ "11991" ], "x-ms-correlation-request-id": [ - "62b201ad-963d-4230-b260-01db72492a94" + "af6d6887-f4d5-4826-9370-f04564485153" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193219Z:62b201ad-963d-4230-b260-01db72492a94" + "WESTUS:20200721T163902Z:af6d6887-f4d5-4826-9370-f04564485153" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:18 GMT" + "Tue, 21 Jul 2020 16:39:01 GMT" ], "Content-Length": [ - "378" + "461" ], "Content-Type": [ "application/json; charset=utf-8" @@ -813,12 +813,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5eab27a4a2ca601230023145\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-04-30T19:31:48.64Z\",\r\n \"updated\": \"2020-04-30T19:32:18.237Z\",\r\n \"resultInfo\": \"Latest commit 6821959346515a60776d836a09dd2668a05c4ef9 was successfully deployed from master. Objects created: 0, updated: 0, deleted: 0. Previous configuration was saved to the 'ConfigurationBackup' branch.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"5f171a07a2ca600fe4c296a6\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-07-21T16:38:31.873Z\",\r\n \"updated\": \"2020-07-21T16:38:52.923Z\",\r\n \"resultInfo\": \"Latest commit 3191e287ef2b3f39bb2216dfe9fa443cf7198795 was successfully deployed from master. Objects created: 0, updated: 0, deleted: 1. Previous configuration was saved to the 'ConfigurationBackup' branch.\",\r\n \"error\": null,\r\n \"actionLog\": [\r\n {\r\n \"objectType\": \"PolicySpecification\",\r\n \"action\": \"Deleted\",\r\n \"objectKey\": \"TenantPolicy\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5eab27a4a2ca601230023145?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWVhYjI3YTRhMmNhNjAxMjMwMDIzMTQ1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f171a07a2ca600fe4c296a6?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWYxNzFhMDdhMmNhNjAwZmU0YzI5NmE2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -826,7 +826,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -840,7 +840,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a449a604-99e3-4ec9-a541-3cf8350d976b" + "5317475e-8446-4cbf-b725-8c05e8796fab" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -849,19 +849,19 @@ "11990" ], "x-ms-correlation-request-id": [ - "a3c209b9-6afc-4922-94ae-d4993a40baa6" + "d1f27ade-99e4-4353-8374-8f0442f9b4d7" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193219Z:a3c209b9-6afc-4922-94ae-d4993a40baa6" + "WESTUS:20200721T163902Z:d1f27ade-99e4-4353-8374-8f0442f9b4d7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:32:18 GMT" + "Tue, 21 Jul 2020 16:39:01 GMT" ], "Content-Length": [ - "378" + "461" ], "Content-Type": [ "application/json; charset=utf-8" @@ -870,7 +870,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"5eab27a4a2ca601230023145\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-04-30T19:31:48.64Z\",\r\n \"updated\": \"2020-04-30T19:32:18.237Z\",\r\n \"resultInfo\": \"Latest commit 6821959346515a60776d836a09dd2668a05c4ef9 was successfully deployed from master. Objects created: 0, updated: 0, deleted: 0. Previous configuration was saved to the 'ConfigurationBackup' branch.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"5f171a07a2ca600fe4c296a6\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-07-21T16:38:31.873Z\",\r\n \"updated\": \"2020-07-21T16:38:52.923Z\",\r\n \"resultInfo\": \"Latest commit 3191e287ef2b3f39bb2216dfe9fa443cf7198795 was successfully deployed from master. Objects created: 0, updated: 0, deleted: 1. Previous configuration was saved to the 'ConfigurationBackup' branch.\",\r\n \"error\": null,\r\n \"actionLog\": [\r\n {\r\n \"objectType\": \"PolicySpecification\",\r\n \"action\": \"Deleted\",\r\n \"objectKey\": \"TenantPolicy\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/UserCrudTest.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/UserCrudTest.json index 88dd2dabc2ea..8b8d0015cb0c 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/UserCrudTest.json +++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.ScenarioTests.ApiManagementTests/UserCrudTest.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b537e799-d194-4319-9f85-7169c2392b29" + "44755b87-7c48-41dc-abb7-114a3f9fcd1f" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -30,7 +30,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "49b585ec-ea76-411e-bad6-d1df18559f48" + "892a338d-14af-49fd-868b-a5f0015d85e1" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -39,16 +39,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "440cc38f-e238-4ae2-b420-565b2cb40a4d" + "5afa3071-9afc-480f-807b-f4ce0f7d98b7" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193359Z:440cc38f-e238-4ae2-b420-565b2cb40a4d" + "WESTUS:20200721T164108Z:5afa3071-9afc-480f-807b-f4ce0f7d98b7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:58 GMT" + "Tue, 21 Jul 2020 16:41:08 GMT" ], "Content-Length": [ "664" @@ -70,7 +70,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5a13f64-66e7-476f-be07-0c3c45080ece" + "41d99227-bac5-4eb0-a474-89d9cf455134" ], "Accept-Language": [ "en-US" @@ -79,7 +79,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -90,13 +90,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACrAAAAAAAAAIdA==\"" + "\"AAAAAAAAPNsAAAAAAAAIdA==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "db62b3db-2b45-47dd-b5af-e292474f9fca" + "d8e0212a-55b8-4a03-baff-13a6c6abef36" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -105,16 +105,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "4b31946b-40c7-4c43-9c52-a15ef1c7422e" + "7ef710f9-8de5-4fac-90e8-61696e8885be" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193359Z:4b31946b-40c7-4c43-9c52-a15ef1c7422e" + "WESTUS:20200721T164109Z:7ef710f9-8de5-4fac-90e8-61696e8885be" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:58 GMT" + "Tue, 21 Jul 2020 16:41:08 GMT" ], "Content-Length": [ "548" @@ -130,13 +130,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"note\": \"ps4097\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"firstName\": \"ps1405\",\r\n \"lastName\": \"ps8226\",\r\n \"password\": \"ps9902\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"note\": \"ps6330\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"firstName\": \"ps4068\",\r\n \"lastName\": \"ps830\",\r\n \"password\": \"ps348\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "eb628fda-0cec-495c-a23d-f2db35c4c99e" + "2e12639a-b3cd-4562-af85-cff07179389c" ], "Accept-Language": [ "en-US" @@ -145,13 +145,13 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "195" + "193" ] }, "ResponseHeaders": { @@ -162,13 +162,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACtMAAAAAAAAK1Q==\"" + "\"AAAAAAAAPP8AAAAAAAA9Ag==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89a937a9-a7fb-467d-95a3-92089fdf6ff5" + "643ebadb-1f41-4c67-8059-e983d1fbbe43" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -177,19 +177,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "23d04369-992d-4766-9bf7-e28bed694ca3" + "b72d24ad-d3c0-44c7-8a20-dde0160f9347" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193400Z:23d04369-992d-4766-9bf7-e28bed694ca3" + "WESTUS:20200721T164110Z:b72d24ad-d3c0-44c7-8a20-dde0160f9347" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:59 GMT" + "Tue, 21 Jul 2020 16:41:09 GMT" ], "Content-Length": [ - "1053" + "1052" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,17 +198,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3939\",\r\n \"properties\": {\r\n \"firstName\": \"ps1405\",\r\n \"lastName\": \"ps8226\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T19:34:00.22Z\",\r\n \"note\": \"ps4097\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/developers\",\r\n \"name\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ],\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps4068\",\r\n \"lastName\": \"ps830\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps6330\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/developers\",\r\n \"name\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n ],\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04558d9f-6cff-4740-af2b-2fa060e71162" + "ad8681ac-1f1a-44fe-b165-2d8a9f2acb93" ], "Accept-Language": [ "en-US" @@ -217,7 +217,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -228,13 +228,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACtMAAAAAAAAK1Q==\"" + "\"AAAAAAAAPP8AAAAAAAA9Ag==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "baedb867-ed6b-455c-9b7a-cde982ab7980" + "6a3bdda9-9d21-4416-a93f-24246d26b8b2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -243,19 +243,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "11d5db47-881a-4ef5-b14e-de2c52fce34e" + "f9c6b71e-4c93-40bd-b06d-332a1c9bcecc" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193400Z:11d5db47-881a-4ef5-b14e-de2c52fce34e" + "WESTUS:20200721T164110Z:f9c6b71e-4c93-40bd-b06d-332a1c9bcecc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:33:59 GMT" + "Tue, 21 Jul 2020 16:41:09 GMT" ], "Content-Length": [ - "579" + "578" ], "Content-Type": [ "application/json; charset=utf-8" @@ -264,17 +264,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3939\",\r\n \"properties\": {\r\n \"firstName\": \"ps1405\",\r\n \"lastName\": \"ps8226\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T19:34:00.22Z\",\r\n \"note\": \"ps4097\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps4068\",\r\n \"lastName\": \"ps830\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps6330\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "689add41-42d3-4fae-b180-4d2ab3bec85b" + "5dc9587d-b772-4990-b1ce-7dd290349678" ], "Accept-Language": [ "en-US" @@ -283,7 +283,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -294,13 +294,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACtkAAAAAAAAK2g==\"" + "\"AAAAAAAAPQYAAAAAAAA9Bw==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "70b4d3fb-5be5-417e-9c4d-37039163896a" + "74669af4-20e6-415a-b7c0-fc94d51e8bf2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -309,19 +309,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "25d83d89-9158-4593-b553-d46865469662" + "1db45beb-e2d4-4634-b1e5-d7d6d19d3612" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193402Z:25d83d89-9158-4593-b553-d46865469662" + "WESTUS:20200721T164112Z:1db45beb-e2d4-4634-b1e5-d7d6d19d3612" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:02 GMT" + "Tue, 21 Jul 2020 16:41:12 GMT" ], "Content-Length": [ - "585" + "586" ], "Content-Type": [ "application/json; charset=utf-8" @@ -330,17 +330,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3939\",\r\n \"properties\": {\r\n \"firstName\": \"ps2414\",\r\n \"lastName\": \"ps28\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T19:34:00.22Z\",\r\n \"note\": \"ps3525\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "232fd262-0677-4dfa-9dfa-baf35208cea6" + "d070ea55-efe1-4d8f-b3fb-6bd3629262f7" ], "Accept-Language": [ "en-US" @@ -349,7 +349,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -360,13 +360,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACt0AAAAAAAAK3g==\"" + "\"AAAAAAAAPQoAAAAAAAA9Cw==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "259bea17-669c-4ce1-a2de-5170afd1bc05" + "8e7a8e93-250a-422e-858a-1cf4a266229b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -375,19 +375,19 @@ "11991" ], "x-ms-correlation-request-id": [ - "ca6c48fd-74b5-421b-8e26-e89bb0150d0d" + "8b8c23ae-adfd-4bee-800b-81f265d1091e" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193403Z:ca6c48fd-74b5-421b-8e26-e89bb0150d0d" + "WESTUS:20200721T164114Z:8b8c23ae-adfd-4bee-800b-81f265d1091e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:03 GMT" + "Tue, 21 Jul 2020 16:41:13 GMT" ], "Content-Length": [ - "586" + "587" ], "Content-Type": [ "application/json; charset=utf-8" @@ -396,17 +396,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3939\",\r\n \"properties\": {\r\n \"firstName\": \"ps2414\",\r\n \"lastName\": \"ps28\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2020-04-30T19:34:00.22Z\",\r\n \"note\": \"ps3525\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d5c52f6-ee44-4807-8cbb-56d4e8f46f5e" + "3f0a0573-795b-4b2f-82e5-2132b2d5e5e9" ], "Accept-Language": [ "en-US" @@ -415,7 +415,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -426,13 +426,13 @@ "no-cache" ], "ETag": [ - "\"AAAAAAAACuEAAAAAAAAK4g==\"" + "\"AAAAAAAAPQ4AAAAAAAA9Dw==\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8505a5d2-2b4b-4f4f-8c8a-036c070f0493" + "454def41-c219-4733-8155-1b9c3649168b" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -441,19 +441,19 @@ "11989" ], "x-ms-correlation-request-id": [ - "34fa170e-a5b7-41c8-b1c8-63ab406bcb9a" + "06721aa9-94e6-4bad-891e-e0faccb293ab" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193404Z:34fa170e-a5b7-41c8-b1c8-63ab406bcb9a" + "WESTUS:20200721T164115Z:06721aa9-94e6-4bad-891e-e0faccb293ab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:03 GMT" + "Tue, 21 Jul 2020 16:41:14 GMT" ], "Content-Length": [ - "585" + "586" ], "Content-Type": [ "application/json; charset=utf-8" @@ -462,17 +462,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3939\",\r\n \"properties\": {\r\n \"firstName\": \"ps2414\",\r\n \"lastName\": \"ps28\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T19:34:00.22Z\",\r\n \"note\": \"ps3525\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5530b1a4-b129-4190-b001-f726c44147bb" + "3854a63d-e719-4580-8c21-4855644b795f" ], "Accept-Language": [ "en-US" @@ -481,7 +481,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -495,7 +495,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9c49fdbf-8d76-40d7-9133-cd97e0f89f29" + "bf3e8fe1-5cdf-49cf-87b7-6a9e88f77aed" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -504,16 +504,16 @@ "11988" ], "x-ms-correlation-request-id": [ - "102ad126-57fa-4854-bac5-4985307385be" + "211f5f5e-f862-43b8-a3c0-eb036db845d2" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193405Z:102ad126-57fa-4854-bac5-4985307385be" + "WESTUS:20200721T164116Z:211f5f5e-f862-43b8-a3c0-eb036db845d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:05 GMT" + "Tue, 21 Jul 2020 16:41:16 GMT" ], "Content-Length": [ "80" @@ -529,13 +529,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"note\": \"ps3525\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"password\": \"ps7035\",\r\n \"firstName\": \"ps2414\",\r\n \"lastName\": \"ps28\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"note\": \"ps4780\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"password\": \"ps9973\",\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f42f2f8c-5258-4f06-9ca0-9fe10fb1d736" + "9e70a1f4-275d-44dd-b68e-c9b99fef3976" ], "If-Match": [ "*" @@ -547,13 +547,13 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "201" + "202" ] }, "ResponseHeaders": { @@ -567,7 +567,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7e7e61e3-e720-46bc-8114-bfcd54eed161" + "fc0f2209-414c-46b9-93d6-1059bcc23ceb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -576,16 +576,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "05bf4b43-e17d-4d69-9d75-851193a7fcee" + "77215f6b-aa91-42f0-bcc3-cb5797ceaf51" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193402Z:05bf4b43-e17d-4d69-9d75-851193a7fcee" + "WESTUS:20200721T164112Z:77215f6b-aa91-42f0-bcc3-cb5797ceaf51" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:02 GMT" + "Tue, 21 Jul 2020 16:41:11 GMT" ], "Expires": [ "-1" @@ -595,13 +595,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Blocked\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "565b23c4-5a69-4ab0-9bd6-b1861b68799d" + "9043ad56-a036-4283-94b8-7990b247f0c9" ], "If-Match": [ "*" @@ -613,7 +613,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -633,7 +633,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "49955615-918c-4599-8e11-efcb1d50fb77" + "43855a33-f69e-4595-8bd1-63ea77a0198d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -642,16 +642,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "9b2b5ffd-6df3-48a9-abe6-a5a359bc0000" + "055bfaf7-5929-4509-a4f7-f4677b420505" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193403Z:9b2b5ffd-6df3-48a9-abe6-a5a359bc0000" + "WESTUS:20200721T164114Z:055bfaf7-5929-4509-a4f7-f4677b420505" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:03 GMT" + "Tue, 21 Jul 2020 16:41:13 GMT" ], "Expires": [ "-1" @@ -661,13 +661,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5f04345a-a095-47f4-a75e-e4c1afda4ede" + "c23123d8-5f0b-40e5-b4df-671cab5e0c9d" ], "If-Match": [ "*" @@ -679,7 +679,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -699,7 +699,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "14f3e8db-3deb-46e6-b73d-adcd4d2bf6e0" + "a89a48df-bf88-4b27-af28-554030fe94b9" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -708,16 +708,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "18d8c057-fabf-4616-8402-7692c3d03a12" + "e9af8e7b-0717-4372-9252-d90b36633da7" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193404Z:18d8c057-fabf-4616-8402-7692c3d03a12" + "WESTUS:20200721T164115Z:e9af8e7b-0717-4372-9252-d90b36633da7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:03 GMT" + "Tue, 21 Jul 2020 16:41:14 GMT" ], "Expires": [ "-1" @@ -733,7 +733,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c491c645-1962-42a1-bf7e-1f247dfa2888" + "0261b3ba-5a53-44ee-a713-55b8f5734717" ], "Accept-Language": [ "en-US" @@ -742,7 +742,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -756,7 +756,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "87cf0c62-3fb5-49a6-be8a-29934d1902f1" + "eeb8b5fc-2247-4d8c-90fc-3bab021763e0" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -765,19 +765,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "67dd62da-9d2f-46ba-a53b-2e61d6db0737" + "db525397-5bcb-43d7-b01e-f4fb46cc358f" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193402Z:67dd62da-9d2f-46ba-a53b-2e61d6db0737" + "WESTUS:20200721T164113Z:db525397-5bcb-43d7-b01e-f4fb46cc358f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:02 GMT" + "Tue, 21 Jul 2020 16:41:12 GMT" ], "Content-Length": [ - "701" + "702" ], "Content-Type": [ "application/json; charset=utf-8" @@ -786,17 +786,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3939\",\r\n \"properties\": {\r\n \"firstName\": \"ps2414\",\r\n \"lastName\": \"ps28\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T19:34:00.22Z\",\r\n \"note\": \"ps3525\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=firstName%20eq%20'ps2414'&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9Zmlyc3ROYW1lJTIwZXElMjAncHMyNDE0JyZhcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=firstName%20eq%20'ps8008'&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9Zmlyc3ROYW1lJTIwZXElMjAncHM4MDA4JyZhcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93a0c78e-4c36-43fb-be49-25f75322b029" + "1a8d7b8f-7dc6-44d3-b952-bea19b97ba55" ], "Accept-Language": [ "en-US" @@ -805,7 +805,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -819,7 +819,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fa950c4a-4994-42cd-9e77-1340fbc9b9e7" + "f1ce5cb7-155d-4420-b389-f5fa7a777cf8" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -828,19 +828,19 @@ "11994" ], "x-ms-correlation-request-id": [ - "deb9d5ad-a2f3-4798-a6e3-178d5dbdba03" + "1debc8c9-4ab6-41fd-8f77-ea88d8363940" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193403Z:deb9d5ad-a2f3-4798-a6e3-178d5dbdba03" + "WESTUS:20200721T164113Z:1debc8c9-4ab6-41fd-8f77-ea88d8363940" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:02 GMT" + "Tue, 21 Jul 2020 16:41:12 GMT" ], "Content-Length": [ - "701" + "702" ], "Content-Type": [ "application/json; charset=utf-8" @@ -849,17 +849,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3939\",\r\n \"properties\": {\r\n \"firstName\": \"ps2414\",\r\n \"lastName\": \"ps28\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T19:34:00.22Z\",\r\n \"note\": \"ps3525\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=lastName%20eq%20'ps28'&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9bGFzdE5hbWUlMjBlcSUyMCdwczI4JyZhcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=lastName%20eq%20'ps548'&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9bGFzdE5hbWUlMjBlcSUyMCdwczU0OCcmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5cb378c7-446a-4789-833b-33b67fca1097" + "eb31522d-6c04-4441-a810-76287a0fb040" ], "Accept-Language": [ "en-US" @@ -868,7 +868,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -882,7 +882,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "723855dd-6009-40da-be2c-7fa374105200" + "0854d05e-4cfb-46af-85e8-b460ad515489" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -891,19 +891,19 @@ "11993" ], "x-ms-correlation-request-id": [ - "e340a6bd-fb95-4f2f-8e8a-77b79430b57c" + "dc389fdc-f162-47f0-a035-481f507fd307" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193403Z:e340a6bd-fb95-4f2f-8e8a-77b79430b57c" + "WESTUS:20200721T164113Z:dc389fdc-f162-47f0-a035-481f507fd307" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:02 GMT" + "Tue, 21 Jul 2020 16:41:13 GMT" ], "Content-Length": [ - "701" + "702" ], "Content-Type": [ "application/json; charset=utf-8" @@ -912,17 +912,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3939\",\r\n \"properties\": {\r\n \"firstName\": \"ps2414\",\r\n \"lastName\": \"ps28\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T19:34:00.22Z\",\r\n \"note\": \"ps3525\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=lastName%20eq%20'ps28'&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9bGFzdE5hbWUlMjBlcSUyMCdwczI4JyZhcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=lastName%20eq%20'ps548'&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9bGFzdE5hbWUlMjBlcSUyMCdwczU0OCcmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5da6a0f5-ac27-41c0-b81b-d90a6ddd2e8e" + "10be4cf8-8715-462b-be5c-728b287aca64" ], "Accept-Language": [ "en-US" @@ -931,7 +931,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -945,7 +945,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f17b174e-e332-4e43-a1e2-e495b141ae1f" + "8c270360-36d3-4a55-9ecf-e295e4eba4cb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -954,19 +954,19 @@ "11992" ], "x-ms-correlation-request-id": [ - "825a35b1-7dff-4e34-844e-da13c65f625f" + "c7f188c4-d919-4abe-9785-c79728664c6c" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193403Z:825a35b1-7dff-4e34-844e-da13c65f625f" + "WESTUS:20200721T164114Z:c7f188c4-d919-4abe-9785-c79728664c6c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:02 GMT" + "Tue, 21 Jul 2020 16:41:13 GMT" ], "Content-Length": [ - "701" + "702" ], "Content-Type": [ "application/json; charset=utf-8" @@ -975,7 +975,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3939\",\r\n \"properties\": {\r\n \"firstName\": \"ps2414\",\r\n \"lastName\": \"ps28\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-04-30T19:34:00.22Z\",\r\n \"note\": \"ps3525\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { @@ -985,7 +985,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8eb5743a-88d3-495b-8297-e75954a2c802" + "a3c2b997-1d53-4cbe-9564-8892efc545d7" ], "Accept-Language": [ "en-US" @@ -994,7 +994,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1008,7 +1008,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e7ab03e9-0a68-443f-b5c7-632d82144008" + "ec5662e8-6cd7-4fad-a9be-b16838396950" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1017,19 +1017,19 @@ "11990" ], "x-ms-correlation-request-id": [ - "3954bb80-fa80-4a2b-ac04-698bee23b28e" + "c600ac41-28c7-4e94-baef-01d536446e17" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193404Z:3954bb80-fa80-4a2b-ac04-698bee23b28e" + "WESTUS:20200721T164114Z:c600ac41-28c7-4e94-baef-01d536446e17" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:03 GMT" + "Tue, 21 Jul 2020 16:41:13 GMT" ], "Content-Length": [ - "702" + "703" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1038,17 +1038,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps3939\",\r\n \"properties\": {\r\n \"firstName\": \"ps2414\",\r\n \"lastName\": \"ps28\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2020-04-30T19:34:00.22Z\",\r\n \"note\": \"ps3525\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939/generateSsoUrl?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOS9nZW5lcmF0ZVNzb1VybD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985/generateSsoUrl?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NS9nZW5lcmF0ZVNzb1VybD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c7b83c6-84f7-4e6c-98b1-b4e1b8cfd5c2" + "2f114c2e-567c-4c96-af6e-6892cc0efbbd" ], "Accept-Language": [ "en-US" @@ -1057,7 +1057,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1071,7 +1071,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a1d585c5-a13e-46f0-b766-ed69467e769a" + "8ec13eee-df8c-48e6-ab95-d57df3d6b259" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1080,19 +1080,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "745cbc20-2c63-4b7d-9da9-7c4fc4fcf6ff" + "19728d95-4dc6-4283-983a-2f0ca740f51d" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193404Z:745cbc20-2c63-4b7d-9da9-7c4fc4fcf6ff" + "WESTUS:20200721T164115Z:19728d95-4dc6-4283-983a-2f0ca740f51d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:04 GMT" + "Tue, 21 Jul 2020 16:41:14 GMT" ], "Content-Length": [ - "199" + "201" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1101,17 +1101,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": \"https://powershellsdkservice.portal.azure-api.net/signin-sso?token=ps3939%26202004301939%26OqGYIUgnCcYCkg0PnxxcwSJpwwvPoBIvhgY2butq2DKDkIfgY0B7d05a%2ffhW2NLJ2vgrX1aeq0gYkw2tt%2bQFSA%3d%3d\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"https://powershellsdkservice.portal.azure-api.net/signin-sso?token=ps7985%26202007211646%26LUck21EfZc7lpL%2bTxmRx7c%2bpptTTvlAHwuDX%2fiSOvUtxgWvMCeI2KzvJ8GGU1TvoZAGN3AgA15FIRcwcWN9exw%3d%3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939/token?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOS90b2tlbj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985/token?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NS90b2tlbj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"keyType\": \"primary\",\r\n \"expiry\": \"2020-05-01T03:34:04.6644958Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"keyType\": \"primary\",\r\n \"expiry\": \"2020-07-22T00:41:15.4424519Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f391bbfd-d0b1-415f-95a1-42bec67a5316" + "5e475690-e941-4f0c-a6d5-fdb3a173c82b" ], "Accept-Language": [ "en-US" @@ -1120,7 +1120,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1140,7 +1140,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "381656d3-87cd-4cc5-ac2a-c7ef2e5b3163" + "8d4eebcf-d517-4e8c-a286-ee14ffffb1ec" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1149,16 +1149,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "89970ec9-1a70-4ad0-90bb-f911abaa6817" + "26b26fb1-86d7-4214-a497-409d5fd9c485" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193404Z:89970ec9-1a70-4ad0-90bb-f911abaa6817" + "WESTUS:20200721T164115Z:26b26fb1-86d7-4214-a497-409d5fd9c485" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:04 GMT" + "Tue, 21 Jul 2020 16:41:14 GMT" ], "Content-Length": [ "120" @@ -1170,17 +1170,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": \"ps3939&202005010334&jtPzd93sIrAXNSjV5nk/y3SwXLPD8crCZHwt2rvTYVAaOIFYCqYEB/mo1Mz6+Si8sbIcJr4XNgKucTB2QjdFTg==\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"ps7985&202007220041&SQOddY2KrXfhicU4yk3JZlhPmSFSU8wtfJ4YV49i+lSHS4Jl0EYR1AotVcFN87XwbTRp4cCtHy9++3IyV+XCRA==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3939?deleteSubscriptions=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzOT9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?deleteSubscriptions=true&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25d96679-2255-4a7e-b717-c62a28813790" + "d1022ca7-5184-43f1-9980-18aca3ee4e9a" ], "If-Match": [ "*" @@ -1192,7 +1192,7 @@ "FxVersion/4.6.27817.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0" + "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0" ] }, "ResponseHeaders": { @@ -1206,7 +1206,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "de402339-91ac-4d63-870e-770cc8221e6f" + "64c9a8f8-5d65-4182-b891-d00ee746b8c4" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1215,16 +1215,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "1b70e385-cfef-4811-b81d-831ad5214a7b" + "57bed207-6575-4aa3-bb5e-2fa334d0c26d" ], "x-ms-routing-request-id": [ - "WESTUS:20200430T193405Z:1b70e385-cfef-4811-b81d-831ad5214a7b" + "WESTUS:20200721T164116Z:57bed207-6575-4aa3-bb5e-2fa334d0c26d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 19:34:05 GMT" + "Tue, 21 Jul 2020 16:41:15 GMT" ], "Expires": [ "-1" @@ -1239,15 +1239,15 @@ ], "Names": { "": [ - "ps3939", - "ps1405", - "ps8226", - "ps9902", - "ps4097", - "ps2414", - "ps28", - "ps7035", - "ps3525" + "ps7985", + "ps4068", + "ps830", + "ps348", + "ps6330", + "ps8008", + "ps548", + "ps9973", + "ps4780" ] }, "Variables": { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj index 5724dd42de50..f44f39144325 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj +++ b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj @@ -13,7 +13,7 @@ - + diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs index cd11ff3d6390..1ce9df0d69a2 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs +++ b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs @@ -503,7 +503,49 @@ private static void ConfigureMappings() .ForMember(dest => dest.ServiceFabricCluster, opt => opt.MapFrom(src => src.Properties.ServiceFabricCluster)) .AfterMap((src, dest) => dest.Properties = Utils.ToBackendProperties(src.Tls)); - + + cfg + .CreateMap() + .ForMember(dest => dest.Id, opt => opt.MapFrom(src => src.Id)) + .ForMember(dest => dest.GatewayId, opt => opt.MapFrom(src => src.Name)) + .ForMember(dest => dest.Description, opt => opt.MapFrom(src => src.Description)) + .ForMember(dest => dest.LocationData, opt => opt.MapFrom(src => src.LocationData)); + + cfg + .CreateMap() + .ForMember(dest => dest.Id, opt => opt.MapFrom(src => src.Id)) + .ForMember(dest => dest.Name, opt => opt.MapFrom(src => src.GatewayId)) + .ForMember(dest => dest.Description, opt => opt.MapFrom(src => src.Description)) + .ForMember(dest => dest.LocationData, opt => opt.MapFrom(src => src.LocationData)); + + + cfg + .CreateMap() + .ForMember(dest => dest.Name, opt => opt.MapFrom(src => src.Name)) + .ForMember(dest => dest.City, opt => opt.MapFrom(src => src.City)) + .ForMember(dest => dest.District, opt => opt.MapFrom(src => src.District)) + .ForMember(dest => dest.CountryOrRegion, opt => opt.MapFrom(src => src.CountryOrRegion)); + + cfg + .CreateMap() + .ForMember(dest => dest.Name, opt => opt.MapFrom(src => src.Name)) + .ForMember(dest => dest.City, opt => opt.MapFrom(src => src.City)) + .ForMember(dest => dest.District, opt => opt.MapFrom(src => src.District)) + .ForMember(dest => dest.CountryOrRegion, opt => opt.MapFrom(src => src.CountryOrRegion)); + + cfg + .CreateMap() + .ForMember(dest => dest.PrimaryKey, opt => opt.MapFrom(src => src.Primary)) + .ForMember(dest => dest.SecondaryKey, opt => opt.MapFrom(src => src.Secondary)); + + cfg + .CreateMap() + .ForMember(dest => dest.GatewayHostnameConfigurationId, opt => opt.MapFrom(src => src.Name)) + .ForMember(dest => dest.GatewayId, opt => opt.MapFrom(src => new PsApiManagementGatewayHostnameConfiguration(src.Id).GatewayId)) + .ForMember(dest => dest.Hostname, opt => opt.MapFrom(src => src.Hostname)) + .ForMember(dest => dest.CertificateResourceId, opt => opt.MapFrom(src => src.CertificateId)) + .ForMember(dest => dest.NegotiateClientCertificate, opt => opt.MapFrom(src => src.NegotiateClientCertificate)); + cfg .CreateMap() .ForMember(dest => dest.Id, opt => opt.MapFrom(src => src.Id)) @@ -3959,5 +4001,182 @@ static PsApiManagementRepresentation[] ToRepresentationContract(IList(locationData) + }; + + var gatewayContract = Client.Gateway.CreateOrUpdate(context.ResourceGroupName, context.ServiceName, gatewayId, gatewayCreateParameters); + + var gateway = Mapper.Map(gatewayContract); + + return gateway; + } + + public IList GatewaysList(PsApiManagementContext context) + { + var results = ListPagedAndMap( + () => Client.Gateway.ListByService(context.ResourceGroupName, context.ServiceName, null), + nextLink => Client.Gateway.ListByServiceNext(nextLink)); + + return results; + } + + public PsApiManagementGateway GatewayById(string resourceGroupName, string serviceName, string gatewayId) + { + var response = Client.Gateway.Get(resourceGroupName, serviceName, gatewayId); + var gateway = Mapper.Map(response); + + return gateway; + } + + public void GatewayRemove(string resourceGroupName, string serviceName, string gatewayId) + { + Client.Gateway.Delete(resourceGroupName, serviceName, gatewayId, "*"); + } + + public void GatewaySet( + string resourceGroupName, + string serviceName, + string gatewayId, + string description, + PsApiManagementResourceLocation locationData, + PsApiManagementGateway gatewayObject) + { + GatewayContract gatewayUpdateParameters; + + if (gatewayObject == null) + { + gatewayUpdateParameters = new GatewayContract(); + } + else + { + gatewayUpdateParameters = Mapper.Map(gatewayObject); + } + + if (!string.IsNullOrWhiteSpace(description)) + { + gatewayUpdateParameters.Description = description; + } + + if (locationData != null) + { + gatewayUpdateParameters.LocationData = Mapper.Map(locationData); + } + + Client.Gateway.Update( + resourceGroupName, + serviceName, + gatewayId, + gatewayUpdateParameters, + "*"); + } + + public void ApiAddToGateway(PsApiManagementContext context, string gatewayId, string apiId, PsApiManagementGatewayApiProvisioningState? provisioningState) + { + AssociationContract association = null; + if (provisioningState != null) + { + association = new AssociationContract(); + association.ProvisioningState = Mapper.Map(provisioningState); + } + + Client.GatewayApi.CreateOrUpdate(context.ResourceGroupName, context.ServiceName, gatewayId, apiId, association); + } + + public IList ApiByGatewayId(PsApiManagementContext context, string gatewayId) + { + var results = ListPagedAndMap( + () => Client.GatewayApi.ListByService(context.ResourceGroupName, context.ServiceName, gatewayId), + nextLink => Client.GatewayApi.ListByServiceNext(nextLink)); + + return results; + } + + public void ApiRemoveFromGateway(PsApiManagementContext context, string gatewayId, string apiId) + { + Client.GatewayApi.Delete(context.ResourceGroupName, context.ServiceName, gatewayId, apiId); + } + + public PsApiManagementGatewayKey GatewayKeyById( + string resourceGroupName, + string serviceName, + string gatewayId) + { + var response = Client.Gateway.ListKeys( + resourceGroupName, + serviceName, + gatewayId); + var keys = Mapper.Map(response); + + return keys; + } + + public IList GatewayHostnameConfigurationByGateway( + string resourceGroupName, + string serviceName, + string gatewayId) + { + var results = ListPagedAndMap( + () => Client.GatewayHostnameConfiguration.ListByService(resourceGroupName, serviceName, gatewayId), + nextLink => Client.GatewayHostnameConfiguration.ListByServiceNext(nextLink)); + + return results; + } + + public PsApiManagementGatewayHostnameConfiguration GatewayHostnameConfigurationById( + string resourceGroupName, + string serviceName, + string gatewayId, + string hostnameConfigurationId) + { + var response = Client.GatewayHostnameConfiguration.Get( + resourceGroupName, + serviceName, + gatewayId, + hostnameConfigurationId); + var hostnameConfig = Mapper.Map(response); + + return hostnameConfig; + } + + public PsApiManagementGatewayHostnameConfiguration GatewayHostnameConfigurationCreate( + PsApiManagementContext context, + string gatewayId, + string hostnameConfigurationId, + string hostname, + string certificateId, + bool? negotiateClientCertificate + ) + { + var hostnameCreateParameters = new GatewayHostnameConfigurationContract() + { + Hostname = hostname, + CertificateId = certificateId, + NegotiateClientCertificate = negotiateClientCertificate + }; + + var hostnameContract = Client.GatewayHostnameConfiguration.CreateOrUpdate(context.ResourceGroupName, context.ServiceName, gatewayId, hostnameConfigurationId, hostnameCreateParameters); + + var config = Mapper.Map(hostnameContract); + + return config; + } + + public void GatewayHostnameConfigurationRemove(string resourceGroupName, string serviceName, string gatewayId, string hostnameConfigurationId) + { + Client.GatewayHostnameConfiguration.Delete(resourceGroupName, serviceName, gatewayId, hostnameConfigurationId); + } + #endregion + } } \ No newline at end of file diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/AddAzureApiManagementApiToGateway.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/AddAzureApiManagementApiToGateway.cs new file mode 100644 index 000000000000..5cf85a35b0d5 --- /dev/null +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/AddAzureApiManagementApiToGateway.cs @@ -0,0 +1,69 @@ +// +// Copyright (c) Microsoft. 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. + +namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands +{ + using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models; + using Microsoft.Azure.Management.ApiManagement.Models; + using System; + using System.Management.Automation; + + [Cmdlet("Add", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementApiToGateway", SupportsShouldProcess = true)] + [OutputType(typeof(bool))] + public class AddAzureApiManagementApiToGateway : AzureApiManagementCmdletBase + { + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = true, + HelpMessage = "Instance of PsApiManagementContext. This parameter is required.")] + [ValidateNotNullOrEmpty] + public PsApiManagementContext Context { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = true, + HelpMessage = "Identifier of existing gateway. This parameter is required.")] + [ValidateNotNullOrEmpty] + public String GatewayId { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = true, + HelpMessage = "Identifier of existing API. This parameter is required.")] + [ValidateNotNullOrEmpty] + public String ApiId { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = false, + HelpMessage = "Provisioning State (Created). This parameter is optional.")] + public PsApiManagementGatewayApiProvisioningState? ProvisioningState { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = false, + HelpMessage = "If specified will write true in case operation succeeds. This parameter is optional. Default value is false.")] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteApiManagementCmdlet() + { + Client.ApiAddToGateway(Context, GatewayId, ApiId, ProvisioningState); + + if (PassThru) + { + WriteObject(true); + } + } + } +} diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementApi.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementApi.cs index 1d31e9181830..5e6fccfe4e1e 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementApi.cs +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementApi.cs @@ -24,6 +24,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands [OutputType(typeof(PsApiManagementApi))] public class GetAzureApiManagementApi : AzureApiManagementCmdletBase { + private const string FindByGatewayId = "GetByGatewayId"; private const string FindByProductId = "GetByProductId"; private const string FindByName = "GetByName"; private const string FindById = "GetByApiId"; @@ -65,6 +66,13 @@ public class GetAzureApiManagementApi : AzureApiManagementCmdletBase HelpMessage = "If specified will try to get all Product APIs. This parameter is optional.")] public String ProductId { get; set; } + [Parameter( + ParameterSetName = FindByGatewayId, + ValueFromPipelineByPropertyName = true, + Mandatory = true, + HelpMessage = "If specified will try to get all Gateway APIs.")] + public String GatewayId { get; set; } + public override void ExecuteApiManagementCmdlet() { if (ParameterSetName.Equals(AllApis)) @@ -88,6 +96,10 @@ public override void ExecuteApiManagementCmdlet() { WriteObject(Client.ApiByProductId(Context, ProductId), true); } + else if (ParameterSetName.Equals(FindByGatewayId)) + { + WriteObject(Client.ApiByGatewayId(Context, GatewayId), true); + } } } } diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementGateway.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementGateway.cs new file mode 100644 index 000000000000..bf82f00a34b7 --- /dev/null +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementGateway.cs @@ -0,0 +1,60 @@ +// +// Copyright (c) Microsoft. 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. + +namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands +{ + using System; + using System.Management.Automation; + using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models; + + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementGateway", DefaultParameterSetName = GetAll)] + [OutputType(typeof(PsApiManagementGateway))] + public class GetAzureApiManagementGateway : AzureApiManagementCmdletBase + { + private const string GetAll = "GetAllGateways"; + private const string GetById = "GetByGatewayId"; + + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = true, + HelpMessage = "Instance of PsApiManagementContext. This parameter is required.")] + [ValidateNotNullOrEmpty] + public PsApiManagementContext Context { get; set; } + + [Parameter( + ParameterSetName = GetById, + ValueFromPipelineByPropertyName = true, + Mandatory = true, + HelpMessage = "Identifier of a gateway. If specified will try to find gateway by the identifier.")] + public String GatewayId { get; set; } + + public override void ExecuteApiManagementCmdlet() + { + if (ParameterSetName.Equals(GetAll)) + { + var gateways = Client.GatewaysList(Context); + WriteObject(gateways, true); + } + else if (ParameterSetName.Equals(GetById)) + { + var gateway = Client.GatewayById(Context.ResourceGroupName, Context.ServiceName, GatewayId); + WriteObject(gateway); + } + else + { + throw new InvalidOperationException(string.Format("Parameter set name '{0}' is not supported.", ParameterSetName)); + } + } + } +} diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementGatewayHostnameConfiguration.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementGatewayHostnameConfiguration.cs new file mode 100644 index 000000000000..a9ab7554b4c6 --- /dev/null +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementGatewayHostnameConfiguration.cs @@ -0,0 +1,81 @@ +// +// Copyright (c) Microsoft. 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. + +namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands +{ + using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models; + using System; + using System.Management.Automation; + + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementGatewayHostnameConfiguration", DefaultParameterSetName = GetByGatewayId)] + [OutputType(typeof(PsApiManagementGatewayHostnameConfiguration), ParameterSetName = new[] { GetByGatewayId, GetByGatewayHostnameId })] + public class GetAzureApiManagementGatewayHostnameConfiguration : AzureApiManagementCmdletBase + { + private const string GetByGatewayId = "GetByGatewayId"; + private const string GetByGatewayHostnameId = "GetByGatewayHostnameId"; + + [Parameter( + ValueFromPipelineByPropertyName = true, + ValueFromPipeline = true, + Mandatory = true, + HelpMessage = "Instance of PsApiManagementContext. This parameter is required.")] + [ValidateNotNullOrEmpty] + public PsApiManagementContext Context { get; set; } + + [Parameter( + ParameterSetName = GetByGatewayId, + ValueFromPipelineByPropertyName = true, + Mandatory = true, + HelpMessage = "Gateway identifier. This parameter is required.")] + [Parameter( + ParameterSetName = GetByGatewayHostnameId, + ValueFromPipelineByPropertyName = true, + Mandatory = true, + HelpMessage = "Gateway identifier. This parameter is required.")] + [ValidateNotNullOrEmpty] + public String GatewayId { get; set; } + + [Parameter( + ParameterSetName = GetByGatewayHostnameId, + ValueFromPipelineByPropertyName = true, + Mandatory = true, + HelpMessage = "Hostname Configuration identifier.")] + public String GatewayHostnameConfigurationId { get; set; } + + public override void ExecuteApiManagementCmdlet() + { + if (ParameterSetName.Equals(GetByGatewayId)) + { + var gateways = Client.GatewayHostnameConfigurationByGateway( + Context.ResourceGroupName, + Context.ServiceName, + GatewayId); + WriteObject(gateways, true); + } + else if (ParameterSetName.Equals(GetByGatewayHostnameId)) + { + var gateway = Client.GatewayHostnameConfigurationById( + Context.ResourceGroupName, + Context.ServiceName, + GatewayId, + GatewayHostnameConfigurationId); + WriteObject(gateway); + } + else + { + throw new InvalidOperationException(string.Format("Parameter set name '{0}' is not supported.", ParameterSetName)); + } + } + } +} diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementGatewayKey.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementGatewayKey.cs new file mode 100644 index 000000000000..57331cbaac22 --- /dev/null +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/GetAzureApiManagementGatewayKey.cs @@ -0,0 +1,60 @@ +// +// Copyright (c) Microsoft. 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. + +namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands +{ + using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models; + using System; + using System.Management.Automation; + + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementGatewayKey", DefaultParameterSetName = GetByGatewayId)] + [OutputType(typeof(PsApiManagementGatewayKey), ParameterSetName = new[] { GetByGatewayId })] + public class GetAzureApiManagementGatewayKey : AzureApiManagementCmdletBase + { + private const string GetByGatewayId = "GetByGatewayId"; + + [Parameter( + ValueFromPipelineByPropertyName = true, + ValueFromPipeline = true, + Mandatory = true, + HelpMessage = "Instance of PsApiManagementContext. This parameter is required.")] + [ValidateNotNullOrEmpty] + public PsApiManagementContext Context { get; set; } + + [Parameter( + ParameterSetName = GetByGatewayId, + ValueFromPipelineByPropertyName = true, + Mandatory = true, + HelpMessage = "Gateway identifier. This parameter is required.")] + [ValidateNotNullOrEmpty] + public String GatewayId { get; set; } + + + public override void ExecuteApiManagementCmdlet() + { + if (ParameterSetName.Equals(GetByGatewayId)) + { + var gateway = Client.GatewayKeyById( + Context.ResourceGroupName, + Context.ServiceName, + GatewayId); + WriteObject(gateway); + } + else + { + throw new InvalidOperationException(string.Format("Parameter set name '{0}' is not supported.", ParameterSetName)); + } + } + } +} diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementGateway.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementGateway.cs new file mode 100644 index 000000000000..98c01371497e --- /dev/null +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementGateway.cs @@ -0,0 +1,61 @@ +// +// Copyright (c) Microsoft. 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. + +namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands +{ + using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models; + using System; + using System.Management.Automation; + + [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementGateway", SupportsShouldProcess = true)] + [OutputType(typeof(PsApiManagementGateway))] + public class NewAzureApiManagementGateway : AzureApiManagementCmdletBase + { + [Parameter( + ValueFromPipelineByPropertyName = true, + ValueFromPipeline = true, + Mandatory = true, + HelpMessage = "Instance of PsApiManagementContext. This parameter is required.")] + [ValidateNotNullOrEmpty] + public PsApiManagementContext Context { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = false, + HelpMessage = "Identifier of new gateway. This parameter is optional. If not specified will be generated.")] + public String GatewayId { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = false, + HelpMessage = "Gateway description. This parameter is optional.")] + public String Description { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = true, + HelpMessage = "Gateway location. This parameter is required.")] + [ValidateNotNullOrEmpty] + public PsApiManagementResourceLocation LocationData { get; set; } + + public override void ExecuteApiManagementCmdlet() + { + string gatewayId = GatewayId ?? Guid.NewGuid().ToString("N"); + + var gateway = Client.GatewayCreate(Context, gatewayId, Description, LocationData); + + WriteObject(gateway); + } + } +} diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementGatewayHostnameConfiguration.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementGatewayHostnameConfiguration.cs new file mode 100644 index 000000000000..908d289a8a88 --- /dev/null +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementGatewayHostnameConfiguration.cs @@ -0,0 +1,75 @@ +// +// Copyright (c) Microsoft. 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. + +namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands +{ + using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models; + using System; + using System.Management.Automation; + + [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementGatewayHostnameConfiguration", SupportsShouldProcess = true)] + [OutputType(typeof(PsApiManagementGatewayHostnameConfiguration))] + public class NewAzureApiManagementGatewayHostnameConfiguration : AzureApiManagementCmdletBase + { + [Parameter( + ValueFromPipelineByPropertyName = true, + ValueFromPipeline = true, + Mandatory = true, + HelpMessage = "Instance of PsApiManagementContext. This parameter is required.")] + [ValidateNotNullOrEmpty] + public PsApiManagementContext Context { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = true, + HelpMessage = "Identifier of existing gateway. This parameter is required.")] + [ValidateNotNullOrEmpty] + public String GatewayId { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = false, + HelpMessage = "Identifier of new gateway hostname confiuration. This parameter is optional. If not specified will be generated.")] + public String GatewayHostnameConfigurationId { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = true, + HelpMessage = "Hostname. This parameter is required.")] + [ValidateNotNullOrEmpty] + public String Hostname { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = true, + HelpMessage = "A resource identifier for the existing certificate id. This parameter is required.")] + [ValidateNotNullOrEmpty] + public String CertificateResourceId { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = false, + HelpMessage = "Flag to enforce NegotiateClientCertificate. This parameter is optional.")] + public SwitchParameter NegotiateClientCertificate { get; set; } + + public override void ExecuteApiManagementCmdlet() + { + string hostnameId = GatewayHostnameConfigurationId ?? Guid.NewGuid().ToString("N"); + + var config = Client.GatewayHostnameConfigurationCreate(Context, GatewayId, hostnameId, Hostname, CertificateResourceId, NegotiateClientCertificate.IsPresent); + + WriteObject(config); + } + } +} diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementResourceLocationObject.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementResourceLocationObject.cs new file mode 100644 index 000000000000..7fb467421e0e --- /dev/null +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementResourceLocationObject.cs @@ -0,0 +1,79 @@ +// +// Copyright (c) Microsoft. 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; +using System.Linq; + +namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands +{ + using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models; + using System.Management.Automation; + + [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementResourceLocationObject")] + [OutputType(typeof(PsApiManagementResourceLocation))] + public class NewAzureApiManagementResourceLocationObject : AzureApiManagementCmdletBase + { + [Parameter( + ValueFromPipelineByPropertyName = false, + Mandatory = true, + HelpMessage = "Location Name. This parameter is required.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = false, + Mandatory = false, + HelpMessage = "Location City. This parameter is optional.")] + public string City { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = false, + Mandatory = false, + HelpMessage = "Location District. This parameter is optional.")] + public string District { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = false, + Mandatory = false, + HelpMessage = "Location Country or Region. This parameter is optional.")] + public string CountryOrRegion { get; set; } + + public override void ExecuteApiManagementCmdlet() + { + var location = new PsApiManagementResourceLocation(); + + if (Name != null) + { + location.Name = Name; + } + + if (District != null) + { + location.District = District; + } + + if (City != null) + { + location.City = City; + } + + if (CountryOrRegion != null) + { + location.CountryOrRegion = CountryOrRegion; + } + + WriteObject(location); + } + } +} diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementApiFromGateway.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementApiFromGateway.cs new file mode 100644 index 000000000000..6e6dc50d0974 --- /dev/null +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementApiFromGateway.cs @@ -0,0 +1,63 @@ +// +// Copyright (c) Microsoft. 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. + +namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands +{ + using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models; + using System; + using System.Management.Automation; + + [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementApiFromGateway", SupportsShouldProcess = true)] + [OutputType(typeof(bool))] + public class RemoveAzureApiManagementApiFromGateway : AzureApiManagementCmdletBase + { + [Parameter( + ValueFromPipelineByPropertyName = true, + ValueFromPipeline = true, + Mandatory = true, + HelpMessage = "Instance of PsApiManagementContext. This parameter is required.")] + [ValidateNotNullOrEmpty] + public PsApiManagementContext Context { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = true, + HelpMessage = "Identifier of existing Gateway to remove API from. This parameter is required.")] + [ValidateNotNullOrEmpty] + public String GatewayId { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = true, + HelpMessage = "Identifier of existing APIs to remove from the Gateway. This parameter is required.")] + [ValidateNotNullOrEmpty] + public String ApiId { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = false, + HelpMessage = "If specified will write true in case operation succeeds. This parameter is optional. Default value is false.")] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteApiManagementCmdlet() + { + Client.ApiRemoveFromGateway(Context, GatewayId, ApiId); + + if (PassThru) + { + WriteObject(true); + } + } + } +} diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementCache.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementCache.cs index 1196e4429ec9..3d7b7871c37c 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementCache.cs +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementCache.cs @@ -94,8 +94,8 @@ public override void ExecuteApiManagementCmdlet() cacheId = CacheId; } - var actionDescription = string.Format(CultureInfo.CurrentCulture, Resources.CacheRemoveDescription, CacheId); - var actionWarning = string.Format(CultureInfo.CurrentCulture, Resources.CacheRemoveWarning, CacheId); + var actionDescription = string.Format(CultureInfo.CurrentCulture, Resources.CacheRemoveDescription, cacheId); + var actionWarning = string.Format(CultureInfo.CurrentCulture, Resources.CacheRemoveWarning, cacheId); // Do nothing if force is not specified and user cancelled the operation if (!ShouldProcess( @@ -106,7 +106,7 @@ public override void ExecuteApiManagementCmdlet() return; } - Client.CacheRemove(resourceGroupName, serviceName, CacheId); + Client.CacheRemove(resourceGroupName, serviceName, cacheId); if (PassThru.IsPresent) { diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementGateway.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementGateway.cs new file mode 100644 index 000000000000..9f467583bd40 --- /dev/null +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementGateway.cs @@ -0,0 +1,116 @@ +// +// Copyright (c) Microsoft. 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. + +namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands +{ + using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models; + using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Properties; + using System; + using System.Globalization; + using System.Management.Automation; + + [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementGateway", SupportsShouldProcess = true, DefaultParameterSetName = ContextParameterSet)] + [OutputType(typeof(bool), ParameterSetName = new[] { ContextParameterSet, ByInputObjectParameterSet, ByResourceIdParameterSet })] + public class RemoveAzureApiManagementGateway : AzureApiManagementCmdletBase + { + const string ContextParameterSet = "ContextParameterSetName"; + const string ByInputObjectParameterSet = "ByInputObjectParameterSet"; + const string ByResourceIdParameterSet = "ByResourceIdParameterSet"; + + [Parameter( + ParameterSetName = ContextParameterSet, + ValueFromPipelineByPropertyName = true, + ValueFromPipeline = true, + Mandatory = true, + HelpMessage = "Instance of PsApiManagementContext. This parameter is required.")] + [ValidateNotNullOrEmpty] + public PsApiManagementContext Context { get; set; } + + [Parameter( + ParameterSetName = ContextParameterSet, + ValueFromPipelineByPropertyName = true, + Mandatory = true, + HelpMessage = "Identifier of existing gateway. This parameter is required.")] + [ValidateNotNullOrEmpty] + public String GatewayId { get; set; } + + [Parameter( + ParameterSetName = ByInputObjectParameterSet, + ValueFromPipeline = true, + Mandatory = true, + HelpMessage = "Instance of PsApiManagementGateway. This parameter is required.")] + [ValidateNotNullOrEmpty] + public PsApiManagementGateway InputObject { get; set; } + + [Parameter( + ParameterSetName = ByResourceIdParameterSet, + ValueFromPipelineByPropertyName = true, + Mandatory = true, + HelpMessage = "Arm ResourceId of the Gateway. This parameter is required.")] + [ValidateNotNullOrEmpty] + public String ResourceId { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = false, + HelpMessage = "If specified will write true in case operation succeeds. This parameter is optional. Default value is false.")] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteApiManagementCmdlet() + { + string resourceGroupName; + string serviceName; + string gatewayId; + + if (ParameterSetName.Equals(ByInputObjectParameterSet)) + { + resourceGroupName = InputObject.ResourceGroupName; + serviceName = InputObject.ServiceName; + gatewayId = InputObject.GatewayId; + } + else if (ParameterSetName.Equals(ByResourceIdParameterSet)) + { + var gateway = new PsApiManagementGateway(ResourceId); + resourceGroupName = gateway.ResourceGroupName; + serviceName = gateway.ServiceName; + gatewayId = gateway.GatewayId; + } + else + { + resourceGroupName = Context.ResourceGroupName; + serviceName = Context.ServiceName; + gatewayId = GatewayId; + } + + var actionDescription = string.Format(CultureInfo.CurrentCulture, Resources.GatewayRemoveDescription, gatewayId); + var actionWarning = string.Format(CultureInfo.CurrentCulture, Resources.GatewayRemoveWarning, gatewayId); + + // Do nothing if force is not specified and user cancelled the operation + if (!ShouldProcess( + actionDescription, + actionWarning, + Resources.ShouldProcessCaption)) + { + return; + } + + Client.GatewayRemove(resourceGroupName, serviceName, gatewayId); + + if (PassThru.IsPresent) + { + WriteObject(true); + } + } + } +} diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementGatewayHostnameConfiguration.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementGatewayHostnameConfiguration.cs new file mode 100644 index 000000000000..2c97a0d49699 --- /dev/null +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/RemoveAzureApiManagementGatewayHostnameConfiguration.cs @@ -0,0 +1,129 @@ +// +// Copyright (c) Microsoft. 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. + +namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands +{ + using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models; + using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Properties; + using System; + using System.Globalization; + using System.Management.Automation; + + [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementGatewayHostnameConfiguration", SupportsShouldProcess = true, DefaultParameterSetName = ContextParameterSet)] + [OutputType(typeof(bool), ParameterSetName = new[] { ContextParameterSet, ByInputObjectParameterSet, ByResourceIdParameterSet })] + public class RemoveAzureApiManagementGatewayHostnameConfiguration : AzureApiManagementCmdletBase + { + const string ContextParameterSet = "ContextParameterSetName"; + const string ByInputObjectParameterSet = "ByInputObjectParameterSet"; + const string ByResourceIdParameterSet = "ByResourceIdParameterSet"; + + [Parameter( + ParameterSetName = ContextParameterSet, + ValueFromPipelineByPropertyName = true, + ValueFromPipeline = true, + Mandatory = true, + HelpMessage = "Instance of PsApiManagementContext. This parameter is required.")] + [ValidateNotNullOrEmpty] + public PsApiManagementContext Context { get; set; } + + [Parameter( + ParameterSetName = ContextParameterSet, + ValueFromPipelineByPropertyName = true, + Mandatory = true, + HelpMessage = "Identifier of existing gateway. This parameter is required.")] + [ValidateNotNullOrEmpty] + public String GatewayId { get; set; } + + [Parameter( + ParameterSetName = ContextParameterSet, + ValueFromPipelineByPropertyName = true, + Mandatory = true, + HelpMessage = "Identifier of existing gateway hostname configuration. This parameter is required.")] + [ValidateNotNullOrEmpty] + public String GatewayHostnameConfigurationId { get; set; } + + [Parameter( + ParameterSetName = ByInputObjectParameterSet, + ValueFromPipeline = true, + Mandatory = true, + HelpMessage = "Instance of PsApiManagementGatewayHostnameConfiguration. This parameter is required.")] + [ValidateNotNullOrEmpty] + public PsApiManagementGatewayHostnameConfiguration InputObject { get; set; } + + [Parameter( + ParameterSetName = ByResourceIdParameterSet, + ValueFromPipelineByPropertyName = true, + Mandatory = true, + HelpMessage = "Arm ResourceId of the GatewayHostnameConfiguration. This parameter is required.")] + [ValidateNotNullOrEmpty] + public String ResourceId { get; set; } + + + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = false, + HelpMessage = "If specified will write true in case operation succeeds. This parameter is optional. Default value is false.")] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteApiManagementCmdlet() + { + string resourceGroupName; + string serviceName; + string gatewayId; + string gatewayHostnameConfigurationId; + + if (ParameterSetName.Equals(ByInputObjectParameterSet)) + { + resourceGroupName = InputObject.ResourceGroupName; + serviceName = InputObject.ServiceName; + gatewayId = InputObject.GatewayId; + gatewayHostnameConfigurationId = InputObject.GatewayHostnameConfigurationId; + } + else if (ParameterSetName.Equals(ByResourceIdParameterSet)) + { + var gateway = new PsApiManagementGatewayHostnameConfiguration(ResourceId); + resourceGroupName = gateway.ResourceGroupName; + serviceName = gateway.ServiceName; + gatewayId = gateway.GatewayId; + gatewayHostnameConfigurationId = gateway.GatewayHostnameConfigurationId; + } + else + { + resourceGroupName = Context.ResourceGroupName; + serviceName = Context.ServiceName; + gatewayId = GatewayId; + gatewayHostnameConfigurationId = GatewayHostnameConfigurationId; + } + + var actionDescription = string.Format(CultureInfo.CurrentCulture, Resources.GatewayHostnameConfigurationRemoveDescription, gatewayId, gatewayHostnameConfigurationId); + var actionWarning = string.Format(CultureInfo.CurrentCulture, Resources.GatewayHostnameConfigurationRemoveWarning, gatewayId, gatewayHostnameConfigurationId); + + // Do nothing if force is not specified and user cancelled the operation + if (!ShouldProcess( + actionDescription, + actionWarning, + Resources.ShouldProcessCaption)) + { + return; + } + + Client.GatewayHostnameConfigurationRemove(resourceGroupName, serviceName, gatewayId, gatewayHostnameConfigurationId); + + if (PassThru.IsPresent) + { + WriteObject(true); + } + } + } +} diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/UpdateAzureApiManagementGateway.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/UpdateAzureApiManagementGateway.cs new file mode 100644 index 000000000000..d643fca33337 --- /dev/null +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/UpdateAzureApiManagementGateway.cs @@ -0,0 +1,122 @@ +// +// Copyright (c) Microsoft. 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. + +namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands +{ + using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models; + using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Properties; + using System; + using System.Management.Automation; + + [Cmdlet("Update", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementGateway", SupportsShouldProcess = true, DefaultParameterSetName = ExpandedParameterSet)] + [OutputType(typeof(PsApiManagementGateway), ParameterSetName = new[] { ExpandedParameterSet, ByInputObjectParameterSet, ByResourceIdParameterSet })] + public class UpdateAzureApiManagementGateway : AzureApiManagementCmdletBase + { + protected const string ExpandedParameterSet = "ExpandedParameter"; + protected const string ByInputObjectParameterSet = "ByInputObject"; + protected const string ByResourceIdParameterSet = "ByResourceId"; + + [Parameter( + ParameterSetName = ExpandedParameterSet, + ValueFromPipelineByPropertyName = true, + ValueFromPipeline = true, + Mandatory = true, + HelpMessage = "Instance of PsApiManagementContext. This parameter is required.")] + [ValidateNotNullOrEmpty] + public PsApiManagementContext Context { get; set; } + + [Parameter( + ParameterSetName = ExpandedParameterSet, + ValueFromPipelineByPropertyName = true, + Mandatory = true, + HelpMessage = "Identifier of existing gateway. This parameter is required.")] + [ValidateNotNullOrEmpty] + public String GatewayId { get; set; } + + [Parameter( + ParameterSetName = ByInputObjectParameterSet, + ValueFromPipeline = true, + Mandatory = true, + HelpMessage = "Instance of PsApiManagementGateway. This parameter is required.")] + [ValidateNotNullOrEmpty] + public PsApiManagementGateway InputObject { get; set; } + + [Parameter( + ParameterSetName = ByResourceIdParameterSet, + ValueFromPipelineByPropertyName = true, + Mandatory = true, + HelpMessage = "Arm ResourceId of the Gateway. This parameter is required.")] + [ValidateNotNullOrEmpty] + public String ResourceId { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = false, + HelpMessage = "Gateway description. This parameter is optional.")] + public String Description { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = false, + HelpMessage = "Gateway location. This parameter is optional.")] + public PsApiManagementResourceLocation LocationData { get; set; } + + [Parameter( + ValueFromPipelineByPropertyName = true, + Mandatory = false, + HelpMessage = "If specified then instance of " + + "Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway type " + + "representing the modified gateway.")] + public SwitchParameter PassThru { get; set; } + + public override void ExecuteApiManagementCmdlet() + { + string resourceGroupName; + string serviceName; + string gatewayId; + + if (ParameterSetName.Equals(ByInputObjectParameterSet)) + { + resourceGroupName = InputObject.ResourceGroupName; + serviceName = InputObject.ServiceName; + gatewayId = InputObject.GatewayId; + } + else if (ParameterSetName.Equals(ExpandedParameterSet)) + { + resourceGroupName = Context.ResourceGroupName; + serviceName = Context.ServiceName; + gatewayId = GatewayId; + } + else + { + var gateway = new PsApiManagementGateway(ResourceId); + resourceGroupName = gateway.ResourceGroupName; + serviceName = gateway.ServiceName; + gatewayId = gateway.GatewayId; + } + + + if (ShouldProcess(GatewayId, Resources.SetGateway)) + { + Client.GatewaySet(resourceGroupName, serviceName, gatewayId, Description, LocationData, InputObject); + + if (PassThru) + { + var @gateway = Client.GatewayById(resourceGroupName, serviceName, gatewayId); + WriteObject(@gateway); + } + } + } + } +} diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGateway.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGateway.cs new file mode 100644 index 000000000000..88416cbb50b0 --- /dev/null +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGateway.cs @@ -0,0 +1,52 @@ +// +// Copyright (c) Microsoft. 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. + +namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models +{ + using System; + using System.Collections.Generic; + using System.Text.RegularExpressions; + + public class PsApiManagementGateway : PsApiManagementArmResource + { + static readonly Regex GatewayIdRegex = new Regex(@"(.*?)/providers/microsoft.apimanagement/service/(?[^/]+)/gateways/(?[^/]+)", RegexOptions.IgnoreCase); + + public string GatewayId { get; set; } + + public string Description { get; set; } + + public PsApiManagementResourceLocation LocationData { get; set; } + + + public PsApiManagementGateway() { } + + public PsApiManagementGateway(string armResourceId) + { + this.Id = armResourceId; + + var match = GatewayIdRegex.Match(Id); + if (match.Success) + { + var gatewayIdRegexResult = match.Groups["gatewayId"]; + if (gatewayIdRegexResult != null && gatewayIdRegexResult.Success) + { + this.GatewayId = gatewayIdRegexResult.Value; + return; + } + } + + throw new ArgumentException($"ResourceId {armResourceId} is not a valid Gateway Id."); + } + } +} \ No newline at end of file diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGatewayApiProvisioningState.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGatewayApiProvisioningState.cs new file mode 100644 index 000000000000..0eeb0a599c39 --- /dev/null +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGatewayApiProvisioningState.cs @@ -0,0 +1,21 @@ +// +// Copyright (c) Microsoft. 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. + +namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models +{ + public enum PsApiManagementGatewayApiProvisioningState + { + Created = 0 + } +} \ No newline at end of file diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGatewayHostnameConfiguration.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGatewayHostnameConfiguration.cs new file mode 100644 index 000000000000..49f93157a610 --- /dev/null +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGatewayHostnameConfiguration.cs @@ -0,0 +1,57 @@ +// +// Copyright (c) Microsoft. 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. + +namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models +{ + using System; + using System.Text.RegularExpressions; + + public class PsApiManagementGatewayHostnameConfiguration : PsApiManagementArmResource + { + static readonly Regex GatewayHostnameConfigurationIdRegex = new Regex(@"(.*?)/providers/microsoft.apimanagement/service/(?[^/]+)/gateways/(?[^/]+)/hostnameConfigurations/(?[^/]+)", RegexOptions.IgnoreCase); + + public string Hostname { get; set; } + + public string CertificateResourceId { get; set; } + + public bool? NegotiateClientCertificate { get; set; } + + public string GatewayId { get; set; } + + public string GatewayHostnameConfigurationId { get; set; } + + public PsApiManagementGatewayHostnameConfiguration() { } + + public PsApiManagementGatewayHostnameConfiguration(string armResourceId) + { + this.Id = armResourceId; + + var match = GatewayHostnameConfigurationIdRegex.Match(Id); + if (match.Success) + { + var gatewayIdRegexResult = match.Groups["gatewayId"]; + var hcIdRegexResult = match.Groups["hcId"]; + if (gatewayIdRegexResult != null && gatewayIdRegexResult.Success && hcIdRegexResult != null && hcIdRegexResult.Success) + { + this.GatewayId = gatewayIdRegexResult.Value; + this.GatewayHostnameConfigurationId = hcIdRegexResult.Value; + return; + } + } + + throw new ArgumentException($"ResourceId {armResourceId} is not a valid GatewayHostnameConfiguration Id."); + } + + } +} \ No newline at end of file diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGatewayKey.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGatewayKey.cs new file mode 100644 index 000000000000..405fd5c1baa8 --- /dev/null +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementGatewayKey.cs @@ -0,0 +1,28 @@ +// +// Copyright (c) Microsoft. 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. + +namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models +{ + + public class PsApiManagementGatewayKey + { + public string PrimaryKey { get; set; } + + public string SecondaryKey { get; set; } + + + public PsApiManagementGatewayKey() { } + + } +} \ No newline at end of file diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementResourceLocation.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementResourceLocation.cs new file mode 100644 index 000000000000..6eedb71f60a7 --- /dev/null +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementResourceLocation.cs @@ -0,0 +1,29 @@ +// +// Copyright (c) Microsoft. 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. + +namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models +{ + using System.Management.Automation; + + public class PsApiManagementResourceLocation + { + public string Name { get; set; } + + public string City { get; set; } + + public string District { get; set; } + + public string CountryOrRegion { get; set; } + } +} \ No newline at end of file diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.Designer.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.Designer.cs index e791edccad6b..03f4796b2cb2 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.Designer.cs +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.Designer.cs @@ -348,6 +348,42 @@ internal static string DiagnosticRemoveWarning { } } + /// + /// Looks up a localized string similar to Removing Gateway Hostname Configuration "{0}" for Gateway "{1}".. + /// + internal static string GatewayHostnameConfigurationRemoveDescription { + get { + return ResourceManager.GetString("GatewayHostnameConfigurationRemoveDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to remove Gateway Hostname Configuration "{0}" for Gateway "{1}"?. + /// + internal static string GatewayHostnameConfigurationRemoveWarning { + get { + return ResourceManager.GetString("GatewayHostnameConfigurationRemoveWarning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Removing Gateway "{0}".. + /// + internal static string GatewayRemoveDescription { + get { + return ResourceManager.GetString("GatewayRemoveDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to remove Gateway "{0}"?. + /// + internal static string GatewayRemoveWarning { + get { + return ResourceManager.GetString("GatewayRemoveWarning", resourceCulture); + } + } + /// /// Looks up a localized string similar to Removing Group "{0}".. /// @@ -600,6 +636,15 @@ internal static string SetDiagnostics { } } + /// + /// Looks up a localized string similar to Set Gateway. + /// + internal static string SetGateway { + get { + return ResourceManager.GetString("SetGateway", resourceCulture); + } + } + /// /// Looks up a localized string similar to Set Group. /// diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.resx b/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.resx index 3f0830eaac64..8ee5f8026411 100644 --- a/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.resx +++ b/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.resx @@ -252,6 +252,22 @@ Are you sure you want to remove Group "{0}"? Process workflow + + Removing Gateway "{0}". + Process workflow + + + Are you sure you want to remove Gateway "{0}"? + Process workflow + + + Removing Gateway Hostname Configuration "{0}" for Gateway "{1}". + Process workflow + + + Are you sure you want to remove Gateway Hostname Configuration "{0}" for Gateway "{1}"? + Process workflow + Removing Identity Provider configuration for "{0}". Process workflow @@ -358,6 +374,10 @@ Set Group Process workflow + + Set Gateway + Process workflow + Set Logger Process workflow diff --git a/src/ApiManagement/ApiManagement.Test/ApiManagement.Test.csproj b/src/ApiManagement/ApiManagement.Test/ApiManagement.Test.csproj index 600fcb69d833..867d62577ddd 100644 --- a/src/ApiManagement/ApiManagement.Test/ApiManagement.Test.csproj +++ b/src/ApiManagement/ApiManagement.Test/ApiManagement.Test.csproj @@ -11,7 +11,7 @@ - + diff --git a/src/ApiManagement/ApiManagement/ApiManagement.csproj b/src/ApiManagement/ApiManagement/ApiManagement.csproj index 55d01debcdc8..c65731dbcf20 100644 --- a/src/ApiManagement/ApiManagement/ApiManagement.csproj +++ b/src/ApiManagement/ApiManagement/ApiManagement.csproj @@ -13,7 +13,7 @@ - + diff --git a/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 b/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 index 00f01f4c3266..e0032a7c0eb0 100644 --- a/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 +++ b/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 @@ -78,7 +78,8 @@ NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.dll', FunctionsToExport = @() # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. -CmdletsToExport = 'Add-AzApiManagementApiToProduct', +CmdletsToExport = 'Add-AzApiManagementApiToGateway', + 'Add-AzApiManagementApiToProduct', 'Add-AzApiManagementProductToGroup', 'Add-AzApiManagementRegion', 'Add-AzApiManagementUserToGroup', 'Backup-AzApiManagement', 'Export-AzApiManagementApi', 'Get-AzApiManagement', @@ -88,7 +89,9 @@ CmdletsToExport = 'Add-AzApiManagementApiToProduct', 'Get-AzApiManagementAuthorizationServer', 'Get-AzApiManagementAuthorizationServerClientSecret', 'Get-AzApiManagementBackend', 'Get-AzApiManagementCache', - 'Get-AzApiManagementCertificate', 'Get-AzApiManagementDiagnostic', + 'Get-AzApiManagementCertificate', 'Get-AzApiManagementDiagnostic', + 'Get-AzApiManagementGateway', 'Get-AzApiManagementGatewayHostnameConfiguration', + 'Get-AzApiManagementGatewayKey', 'Get-AzApiManagementGroup', 'Get-AzApiManagementIdentityProvider', 'Get-AzApiManagementIdentityProviderClientSecret', 'Get-AzApiManagementLogger', 'Get-AzApiManagementNetworkStatus', @@ -116,19 +119,25 @@ CmdletsToExport = 'Add-AzApiManagementApiToProduct', 'New-AzApiManagementCache', 'New-AzApiManagementCertificate', 'New-AzApiManagementContext', 'New-AzApiManagementCustomHostnameConfiguration', - 'New-AzApiManagementDiagnostic', 'New-AzApiManagementGroup', + 'New-AzApiManagementDiagnostic', + 'New-AzApiManagementGateway', + 'New-AzApiManagementGatewayHostnameConfiguration', + 'New-AzApiManagementGroup', 'New-AzApiManagementHttpMessageDiagnostic', 'New-AzApiManagementIdentityProvider', 'New-AzApiManagementLogger', 'New-AzApiManagementOpenIdConnectProvider', 'New-AzApiManagementOperation', 'New-AzApiManagementPipelineDiagnosticSetting', - 'New-AzApiManagementProduct', 'New-AzApiManagementNamedValue', + 'New-AzApiManagementProduct', + 'New-AzApiManagementResourceLocationObject', + 'New-AzApiManagementNamedValue', 'New-AzApiManagementRegion', 'New-AzApiManagementSamplingSetting', 'New-AzApiManagementSslSetting', 'New-AzApiManagementSubscription', 'New-AzApiManagementSystemCertificate', 'New-AzApiManagementUser', 'New-AzApiManagementUserToken', 'New-AzApiManagementVirtualNetwork', 'Publish-AzApiManagementTenantGitConfiguration', 'Remove-AzApiManagement', 'Remove-AzApiManagementApi', + 'Remove-AzApiManagementApiFromGateway', 'Remove-AzApiManagementApiFromProduct', 'Remove-AzApiManagementApiRelease', 'Remove-AzApiManagementApiRevision', @@ -137,7 +146,10 @@ CmdletsToExport = 'Add-AzApiManagementApiToProduct', 'Remove-AzApiManagementAuthorizationServer', 'Remove-AzApiManagementBackend', 'Remove-AzApiManagementCache', 'Remove-AzApiManagementCertificate', - 'Remove-AzApiManagementDiagnostic', 'Remove-AzApiManagementGroup', + 'Remove-AzApiManagementDiagnostic', + 'Remove-AzApiManagementGateway', + 'Remove-AzApiManagementGatewayHostnameConfiguration', + 'Remove-AzApiManagementGroup', 'Remove-AzApiManagementIdentityProvider', 'Remove-AzApiManagementLogger', 'Remove-AzApiManagementOpenIdConnectProvider', @@ -152,7 +164,9 @@ CmdletsToExport = 'Add-AzApiManagementApiToProduct', 'Set-AzApiManagementApiSchema', 'Set-AzApiManagementApiVersionSet', 'Set-AzApiManagementAuthorizationServer', 'Set-AzApiManagementBackend', 'Set-AzApiManagementCertificate', - 'Set-AzApiManagementDiagnostic', 'Set-AzApiManagementGroup', + 'Set-AzApiManagementDiagnostic', + 'Update-AzApiManagementGateway', + 'Set-AzApiManagementGroup', 'Set-AzApiManagementIdentityProvider', 'Set-AzApiManagementLogger', 'Set-AzApiManagementOpenIdConnectProvider', 'Set-AzApiManagementOperation', 'Set-AzApiManagementPolicy', diff --git a/src/ApiManagement/ApiManagement/ChangeLog.md b/src/ApiManagement/ApiManagement/ChangeLog.md index f388689e8d4c..5593ad5510f4 100644 --- a/src/ApiManagement/ApiManagement/ChangeLog.md +++ b/src/ApiManagement/ApiManagement/ChangeLog.md @@ -18,6 +18,18 @@ - Additional information about change #1 --> ## Upcoming Release +* Added new `Add-AzApiManagementApiToGateway` cmdlet. +* Added new `Get-AzApiManagementGateway` cmdlet. +* Added new `Get-AzApiManagementGatewayHostnameConfiguration` cmdlet. +* Added new `Get-AzApiManagementGatewayKey` cmdlet. +* Added new `New-AzApiManagementGateway` cmdlet. +* Added new `New-AzApiManagementGatewayHostnameConfiguration` cmdlet. +* Added new `New-AzApiManagementResourceLocationObject` cmdlet. +* Added new `Remove-AzApiManagementApiFromGateway` cmdlet. +* Added new `Remove-AzApiManagementGateway` cmdlet. +* Added new `Remove-AzApiManagementGatewayHostnameConfiguration` cmdlet. +* Added new `Update-AzApiManagementGateway` cmdlet. +* Added new optional [-GatewayId] parameter to the `Get-AzApiManagementApi` cmdlet. ## Version 2.0.1 * Updated assembly version of service management cmdlets diff --git a/src/ApiManagement/ApiManagement/help/Add-AzApiManagementApiToGateway.md b/src/ApiManagement/ApiManagement/help/Add-AzApiManagementApiToGateway.md new file mode 100644 index 000000000000..5f0b3968c83c --- /dev/null +++ b/src/ApiManagement/ApiManagement/help/Add-AzApiManagementApiToGateway.md @@ -0,0 +1,184 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll-Help.xml +Module Name: Az.ApiManagement +online version: https://docs.microsoft.com/en-us/powershell/module/az.apimanagement/add-azapimanagementapitogateway +schema: 2.0.0 +--- + +# Add-AzApiManagementApiToGateway + +## SYNOPSIS +Attaches an API to a gateway. + +## SYNTAX + +``` +Add-AzApiManagementApiToGateway -Context -GatewayId -ApiId + [-ProvisioningState ] [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Add-AzApiManagementApiToGateway** cmdlet adds an Azure API Management API to a Gateway. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\>$ApiMgmtContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso" +PS C:\>Add-AzApiManagementApiToGateway -Context $ApiMgmtContext -GatewayId "0123456789" -ApiId "0001" +``` + +This command adds the specified API to the specified Gateway. + +## PARAMETERS + +### -ApiId +Identifier of existing API. +This parameter is required. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Context +Instance of PsApiManagementContext. +This parameter is required. + +```yaml +Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GatewayId +Identifier of existing gateway. +This parameter is required. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PassThru +If specified will write true in case operation succeeds. +This parameter is optional. +Default value is false. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ProvisioningState +Provisioning State (Created). +This parameter is optional. + +```yaml +Type: System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayApiProvisioningState] +Parameter Sets: (All) +Aliases: +Accepted values: Created + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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.ApiManagement.ServiceManagement.Models.PsApiManagementContext + +### System.String + +### System.Nullable`1[[Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayApiProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement, Version=2.0.1.0, Culture=neutral, PublicKeyToken=null]] + +### System.Management.Automation.SwitchParameter + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS + +[Remove-AzApiManagementApiFromGateway](./Remove-AzApiManagementApiFromGateway.md) \ No newline at end of file diff --git a/src/ApiManagement/ApiManagement/help/Az.ApiManagement.md b/src/ApiManagement/ApiManagement/help/Az.ApiManagement.md index b1428341d935..fac006cca8d7 100644 --- a/src/ApiManagement/ApiManagement/help/Az.ApiManagement.md +++ b/src/ApiManagement/ApiManagement/help/Az.ApiManagement.md @@ -11,6 +11,9 @@ Locale: en-US This topic displays help topics for the Azure API Management Cmdlets. ## Az.ApiManagement Cmdlets +### [Add-AzApiManagementApiToGateway](Add-AzApiManagementApiToGateway.md) +Attaches an API to a gateway. + ### [Add-AzApiManagementApiToProduct](Add-AzApiManagementApiToProduct.md) Adds an API to a product. @@ -65,6 +68,15 @@ Gets API Management certificates configured for Mutual Authentication with Backe ### [Get-AzApiManagementDiagnostic](Get-AzApiManagementDiagnostic.md) Get details of the Diagnostic configured at the service level or the Api Level. Diagnostics are used to log requests/responses from Api Management gateway. +### [Get-AzApiManagementGateway](Get-AzApiManagementGateway.md) +Gets all or specific API management Gateway. + +### [Get-AzApiManagementGatewayHostnameConfiguration](Get-AzApiManagementGatewayHostnameConfiguration.md) +Gets all or specific hostname configuration for the existing Gateway. + +### [Get-AzApiManagementGatewayKey](Get-AzApiManagementGatewayKey.md) +Gets keys of the existing Gateway + ### [Get-AzApiManagementGroup](Get-AzApiManagementGroup.md) Gets all or specific API management groups. @@ -182,6 +194,12 @@ Creates an instance of `PsApiManagementCustomHostNameConfiguration`. ### [New-AzApiManagementDiagnostic](New-AzApiManagementDiagnostic.md) Creates a new diagnostics at the Global scope or Api Scope. +### [New-AzApiManagementGateway](New-AzApiManagementGateway.md) +Creates new Gateway entity. + +### [New-AzApiManagementGatewayHostnameConfiguration](New-AzApiManagementGatewayHostnameConfiguration.md) +Creates a hostname configuratin for the existing Gateway. + ### [New-AzApiManagementGroup](New-AzApiManagementGroup.md) Creates an API management group. @@ -212,6 +230,9 @@ Creates an API Management product. ### [New-AzApiManagementRegion](New-AzApiManagementRegion.md) Creates an instance of PsApiManagementRegion. +### [New-AzApiManagementResourceLocationObject](New-AzApiManagementResourceLocationObject.md) +Create a new resource location contract (used in Gateways). + ### [New-AzApiManagementSamplingSetting](New-AzApiManagementSamplingSetting.md) Create a new sampling setting for the Diagnostic @@ -242,6 +263,9 @@ Removes an API Management service. ### [Remove-AzApiManagementApi](Remove-AzApiManagementApi.md) Removes an API. +### [Remove-AzApiManagementApiFromGateway](Remove-AzApiManagementApiFromGateway.md) +Attaches an API to a gateway. + ### [Remove-AzApiManagementApiFromProduct](Remove-AzApiManagementApiFromProduct.md) Removes an API from a product. @@ -272,6 +296,12 @@ Removes an API Management certificate. ### [Remove-AzApiManagementDiagnostic](Remove-AzApiManagementDiagnostic.md) Remove the Diagnostic entity from Global or API level scope. +### [Remove-AzApiManagementGateway](Remove-AzApiManagementGateway.md) +Detaches an API from a Gateway. + +### [Remove-AzApiManagementGatewayHostnameConfiguration](Remove-AzApiManagementGatewayHostnameConfiguration.md) +Removes a hostname configuration from the existing Gateway. + ### [Remove-AzApiManagementGroup](Remove-AzApiManagementGroup.md) Removes an existing API management group. @@ -383,6 +413,9 @@ Updates a particular Api Release. ### [Update-AzApiManagementCache](Update-AzApiManagementCache.md) updates a cache in Api Management service. +### [Update-AzApiManagementGateway](Update-AzApiManagementGateway.md) +Configures an API management Gateway. + ### [Update-AzApiManagementRegion](Update-AzApiManagementRegion.md) Updates existing deployment region in PsApiManagement instance. diff --git a/src/ApiManagement/ApiManagement/help/Get-AzApiManagementApi.md b/src/ApiManagement/ApiManagement/help/Get-AzApiManagementApi.md index a624d6013039..fe5ed33471d4 100644 --- a/src/ApiManagement/ApiManagement/help/Get-AzApiManagementApi.md +++ b/src/ApiManagement/ApiManagement/help/Get-AzApiManagementApi.md @@ -37,6 +37,12 @@ Get-AzApiManagementApi -Context -ProductId [-DefaultProfile ] [] ``` +### GetByGatewayId +``` +Get-AzApiManagementApi -Context -GatewayId + [-DefaultProfile ] [] +``` + ## DESCRIPTION The **Get-AzApiManagementApi** cmdlet gets one or more Azure API Management APIs. @@ -66,6 +72,14 @@ PS C:\>Get-AzApiManagementApi -Context $ApiMgmtContext -Name "EchoApi" This command gets the API with the specified name. +### Example 4: Get a management API by GatewayId +``` +PS C:\>$ApiMgmtContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso" +PS C:\>Get-AzApiManagementApi -Context $ApiMgmtContext -GatewayId "g01" +``` + +This command gets the API for the specified GatewayId. + ## PARAMETERS ### -ApiId @@ -128,6 +142,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -GatewayId +If specified will try to get all Gateway APIs. + +```yaml +Type: System.String +Parameter Sets: GetByGatewayId +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -Name Specifies the name of the API to get. diff --git a/src/ApiManagement/ApiManagement/help/Get-AzApiManagementGateway.md b/src/ApiManagement/ApiManagement/help/Get-AzApiManagementGateway.md new file mode 100644 index 000000000000..751733beafb5 --- /dev/null +++ b/src/ApiManagement/ApiManagement/help/Get-AzApiManagementGateway.md @@ -0,0 +1,112 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll-Help.xml +Module Name: Az.ApiManagement +online version: https://docs.microsoft.com/en-us/powershell/module/az.apimanagement/get-azapimanagementgateway +schema: 2.0.0 +--- + +# Get-AzApiManagementGateway + +## SYNOPSIS +Gets all or specific API management Gateway. + +## SYNTAX + +### GetAllGateways (Default) +``` +Get-AzApiManagementGateway -Context [-DefaultProfile ] + [] +``` + +### GetByGatewayId +``` +Get-AzApiManagementGateway -Context -GatewayId + [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **Get-AzApiManagementGateway** cmdlet gets all or specific API management Gateway. + +## EXAMPLES + +### Example 1: Get all gateways +``` +PS C:\>$apimContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso" +PS C:\>Get-AzApiManagementGateway -Context $apimContext +``` + +This command gets all gateways. + +### Example 2: Get a gateway by ID +``` +PS C:\>$apimContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso" +PS C:\>Get-AzApiManagementGateway -Context $apimContext -GatewayId "0123456789" +``` + +This command gets the gateway 0123456789. + +## PARAMETERS + +### -Context +Instance of PsApiManagementContext. +This parameter is required. + +```yaml +Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GatewayId +Identifier of a gateway. +If specified will try to find gateway by the identifier. + +```yaml +Type: System.String +Parameter Sets: GetByGatewayId +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 + +### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway + +## NOTES + +## RELATED LINKS diff --git a/src/ApiManagement/ApiManagement/help/Get-AzApiManagementGatewayHostnameConfiguration.md b/src/ApiManagement/ApiManagement/help/Get-AzApiManagementGatewayHostnameConfiguration.md new file mode 100644 index 000000000000..d8d723cb56a2 --- /dev/null +++ b/src/ApiManagement/ApiManagement/help/Get-AzApiManagementGatewayHostnameConfiguration.md @@ -0,0 +1,128 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll-Help.xml +Module Name: Az.ApiManagement +online version: https://docs.microsoft.com/en-us/powershell/module/az.apimanagement/get-azapimanagementgatewayhostnameconfiguration +schema: 2.0.0 +--- + +# Get-AzApiManagementGatewayHostnameConfiguration + +## SYNOPSIS +Gets all or specific hostname configuration for the existing Gateway. + +## SYNTAX + +### GetByGatewayId (Default) +``` +Get-AzApiManagementGatewayHostnameConfiguration -Context -GatewayId + [-DefaultProfile ] [] +``` + +### GetByGatewayHostnameId +``` +Get-AzApiManagementGatewayHostnameConfiguration -Context -GatewayId + -GatewayHostnameConfigurationId [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **Get-AzApiManagementGatewayHostnameConfiguration** cmdlet gets all or specific hostname configuration for the existing Gateway. + +## EXAMPLES + +### Example 1: Get all hostname configurations for the gateway +``` +PS C:\>$apimContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso" +PS C:\>Get-AzApiManagementGatewayHostnameConfiguration -Context $apimContext -GatewayId "0123456789" +``` + +This command gets all hostname configurations for a "0123456789" gateway. + +### Example 2: Get a hostname configuration for the gateway +``` +PS C:\>$apimContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso" +PS C:\>Get-AzApiManagementGatewayHostnameConfiguration -Context $apimContext -GatewayId "0123456789" -GatewayHostnameConfigurationId "123" +``` + +This command gets "123" hostname configuration for a "0123456789" gateway. + +## PARAMETERS + +### -Context +Instance of PsApiManagementContext. +This parameter is required. + +```yaml +Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GatewayHostnameConfigurationId +Hostname Configuration identifier. +This parameter is optional. + +```yaml +Type: System.String +Parameter Sets: GetByGatewayHostnameId +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -GatewayId +Gateway identifier. +This parameter is required. + +```yaml +Type: System.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 + +### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayHostnameConfiguration + +## NOTES + +## RELATED LINKS diff --git a/src/ApiManagement/ApiManagement/help/Get-AzApiManagementGatewayKey.md b/src/ApiManagement/ApiManagement/help/Get-AzApiManagementGatewayKey.md new file mode 100644 index 000000000000..7b2e5c4aaff1 --- /dev/null +++ b/src/ApiManagement/ApiManagement/help/Get-AzApiManagementGatewayKey.md @@ -0,0 +1,97 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll-Help.xml +Module Name: Az.ApiManagement +online version: https://docs.microsoft.com/en-us/powershell/module/az.apimanagement/get-azapimanagementgatewaykey +schema: 2.0.0 +--- + +# Get-AzApiManagementGatewayKey + +## SYNOPSIS +Gets keys of the existing Gateway + +## SYNTAX + +``` +Get-AzApiManagementGatewayKey -Context -GatewayId + [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **Get-AzApiManagementGatewayKey** cmdlet gets keys of the existing Gateway + +## EXAMPLES + +### Example 2: Get a gateway by ID +``` +PS C:\>$apimContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso" +PS C:\>Get-AzApiManagementGatewayKey -Context $apimContext -GatewayId "0123456789" +``` + +This command gets the keys for a "0123456789" gateway. + +## PARAMETERS + +### -Context +Instance of PsApiManagementContext. +This parameter is required. + +```yaml +Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GatewayId +Gateway identifier. +This parameter is required. + +```yaml +Type: System.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 + +### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayKey + +## NOTES + +## RELATED LINKS diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementApi.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementApi.md index 951e263f33c4..3aad74c5ca33 100644 --- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementApi.md +++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementApi.md @@ -75,7 +75,8 @@ This command creates an API `echoapiv3` in ApiVersionSet `xmsVersionSet` and cop Creates an API. (autogenerated) -```powershell +```powershell + New-AzApiManagementApi -ApiId '0001' -Context -Name 'Echo api' -Path 'echov3' -Protocols Http -ServiceUrl 'https://contoso.com/apis/echo' ``` diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementAuthorizationServer.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementAuthorizationServer.md index cf3ccf659f7c..b304100d776e 100644 --- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementAuthorizationServer.md +++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementAuthorizationServer.md @@ -42,7 +42,8 @@ This command creates an authorization server. Creates an authorization server. (autogenerated) -```powershell +```powershell + New-AzApiManagementAuthorizationServer -AccessTokenSendingMethods AuthorizationHeader -AuthorizationEndpointUrl 'https://contoso/auth' -AuthorizationRequestMethods Get -ClientAuthenticationMethods Basic -ClientId 'clientid' -ClientRegistrationPageUrl 'https://contoso/signup' -ClientSecret '0000000000000000000000000000000000000' -Context -GrantTypes AuthorizationCode -Name 'Contoso OAuth2 server' -ServerId '0123456789' -TokenBodyParameters @{'par1'='val1'} -TokenEndpointUrl 'https://contoso/token' ``` diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementCertificate.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementCertificate.md index f52c8e1c6b1e..f6777ff32787 100644 --- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementCertificate.md +++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementCertificate.md @@ -42,7 +42,8 @@ This command uploads a certificate to Api Management. This certificate can be us Creates an API Management certificate to be used during Authentication with Backend. (autogenerated) -```powershell +```powershell + New-AzApiManagementCertificate -CertificateId '0123456789' -Context -PfxFilePath 'C:\contoso\certificates\apimanagement.pfx' -PfxPassword '1111' ``` diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementGateway.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementGateway.md new file mode 100644 index 000000000000..2c527ac108a6 --- /dev/null +++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementGateway.md @@ -0,0 +1,164 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll-Help.xml +Module Name: Az.ApiManagement +online version: https://docs.microsoft.com/en-us/powershell/module/az.apimanagement/new-azapimanagementgateway +schema: 2.0.0 +--- + +# New-AzApiManagementGateway + +## SYNOPSIS +Creates new Gateway entity. + +## SYNTAX + +``` +New-AzApiManagementGateway -Context [-GatewayId ] [-Description ] + -LocationData [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +The **New-AzApiManagementGateway** cmdlet creates new Gateway entity. + +## EXAMPLES + +### Example 1: Create a gateway +```powershell +PS C:\>$apimContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso" +PS C:\>$location = New-AzApiManagementResourceLocationObject -Name "n1" -City "c1" -District "d1" -CountryOrRegion "r1" +PS C:\>New-AzApiManagementGateway -Context $apimContext -GatewayId "123" -Description "desc" -LocationData $location +``` + +This command creates a gateway. + +## PARAMETERS + +### -Context +Instance of PsApiManagementContext. +This parameter is required. + +```yaml +Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Description +Gateway description. +This parameter is optional. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -GatewayId +Identifier of new gateway. +This parameter is optional. +If not specified will be generated. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -LocationData +Gateway location. +This parameter is required. + +```yaml +Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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.ApiManagement.ServiceManagement.Models.PsApiManagementContext + +### System.String + +### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation + +## OUTPUTS + +### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway + +## NOTES + +## RELATED LINKS diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementGatewayHostnameConfiguration.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementGatewayHostnameConfiguration.md new file mode 100644 index 000000000000..165a279fdd79 --- /dev/null +++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementGatewayHostnameConfiguration.md @@ -0,0 +1,197 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll-Help.xml +Module Name: Az.ApiManagement +online version: https://docs.microsoft.com/en-us/powershell/module/az.apimanagement/new-azapimanagementgatewayhostnameconfiguration +schema: 2.0.0 +--- + +# New-AzApiManagementGatewayHostnameConfiguration + +## SYNOPSIS +Creates a hostname configuratin for the existing Gateway. + +## SYNTAX + +``` +New-AzApiManagementGatewayHostnameConfiguration -Context -GatewayId + [-GatewayHostnameConfigurationId ] -Hostname -CertificateResourceId + [-NegotiateClientCertificate] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +The **New-AzApiManagementGatewayHostnameConfiguration** cmdlet creates a hostname configuratin for the existing Gateway. + +## EXAMPLES + +### Example 1: Create a hostname configuration for the existing gateway +```powershell +PS C:\>$apimContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso" +PS C:\>$cert = Get-AzApiManagementCertificate -Context $apimContext -CertificateId "333" +PS C:\>New-AzApiManagementGatewayHostnameConfiguration -Context $apimContext -GatewayId "g01" -GatewayHostnameConfigurationId "h01" -Hostname "www.contoso.com" -CertificateResourceId $cert.Id +``` + +This command creates a "h01" hostname configuration for a "g01" gateway. + +## PARAMETERS + +### -CertificateResourceId +A resource identifier for the existing certificate id. +This parameter is required. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Context +Instance of PsApiManagementContext. +This parameter is required. + +```yaml +Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GatewayHostnameConfigurationId +Identifier of new gateway hostname confiuration. +This parameter is optional. +If not specified will be generated. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -GatewayId +Identifier of existing gateway. +This parameter is required. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Hostname +Hostname. +This parameter is required. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -NegotiateClientCertificate +Flag to enforce NegotiateClientCertificate. +This parameter is optional. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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.ApiManagement.ServiceManagement.Models.PsApiManagementContext + +### System.String + +### System.Management.Automation.SwitchParameter + +## OUTPUTS + +### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayHostnameConfiguration + +## NOTES + +## RELATED LINKS diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementGroup.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementGroup.md index 1a83cbc252db..de1e740e4d38 100644 --- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementGroup.md +++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementGroup.md @@ -36,7 +36,8 @@ This command creates a management group. Creates an API management group. (autogenerated) -```powershell +```powershell + New-AzApiManagementGroup -Context -Description 'Create Echo Api V4' -GroupId '0001' -Name 'Group0001' -Type Custom ``` diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementLogger.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementLogger.md index 9d36e8671802..9b2b984d9ea1 100644 --- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementLogger.md +++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementLogger.md @@ -43,7 +43,8 @@ This command creates a logger named ContosoSdkEventHub by using the specified co Creates an API Management Logger. (autogenerated) -```powershell +```powershell + New-AzApiManagementLogger -Context -InstrumentationKey -LoggerId 'Logger123' ``` diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementNamedValue.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementNamedValue.md index 8d1368e61c43..fa02519b3248 100644 --- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementNamedValue.md +++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementNamedValue.md @@ -14,7 +14,8 @@ Creates new Named Value. ``` New-AzApiManagementNamedValue -Context [-NamedValueId ] -Name - -Value [-Secret] [-Tag ] [-DefaultProfile ] [] + -Value [-Secret] [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -160,6 +161,36 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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). diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementOpenIdConnectProvider.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementOpenIdConnectProvider.md index aad6ecd38502..5d937e6ad1df 100644 --- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementOpenIdConnectProvider.md +++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementOpenIdConnectProvider.md @@ -36,7 +36,8 @@ This command creates an OpenID Connect **Provider** named Contoso OpenID Connect Creates an OpenID Connect provider. (autogenerated) -```powershell +```powershell + New-AzApiManagementOpenIdConnectProvider -ClientId '12432143' -ClientSecret '000000000000000000000000000000000000000000' -Context -Description 'OpenID Connect provider description' -MetadataEndpointUri 'https://openid.provider/configuration' -Name 'Contoso OpenID Connect Provider' -OpenIdConnectProviderId 'OICProvider01' ``` diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementResourceLocationObject.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementResourceLocationObject.md new file mode 100644 index 000000000000..8bbeb6f5ae1b --- /dev/null +++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementResourceLocationObject.md @@ -0,0 +1,126 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll-Help.xml +Module Name: Az.ApiManagement +online version: https://docs.microsoft.com/en-us/powershell/module/az.apimanagement/new-azapimanagementresourcelocationobject +schema: 2.0.0 +--- + +# New-AzApiManagementResourceLocationObject + +## SYNOPSIS +Create a new resource location contract (used in Gateways). + +## SYNTAX + +``` +New-AzApiManagementResourceLocationObject -Name [-City ] [-District ] + [-CountryOrRegion ] [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **New-AzApiManagementResourceLocationObject** cmdlet create a new resource location contract (used in Gateways). + +## EXAMPLES + +### Example 1: Create a resource location contract +```powershell +PS C:\>$location = New-AzApiManagementResourceLocationObject -Name "n1" -City "c1" -District "d1" -CountryOrRegion "r1" +``` + +This command creates a resource location. + +## PARAMETERS + +### -City +Location City. +This parameter is optional. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CountryOrRegion +Location Country or Region. +This parameter is optional. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -District +Location District. +This parameter is optional. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Location Name. +This parameter is required. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +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 + +### None + +## OUTPUTS + +### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation + +## NOTES + +## RELATED LINKS diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementSamplingSetting.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementSamplingSetting.md index 5b7f8bbc3db9..18ac477a3fca 100644 --- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementSamplingSetting.md +++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementSamplingSetting.md @@ -37,7 +37,8 @@ Creates a sampling setting of `Fixed` type with logging for 100% of the requests Create a new sampling setting for the Diagnostic. (autogenerated) -```powershell +```powershell + New-AzApiManagementSamplingSetting -SamplingPercentage 100 -SamplingType fixed ``` diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementUserToken.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementUserToken.md index 5d91ccb1d349..9622d48d060e 100644 --- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementUserToken.md +++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementUserToken.md @@ -41,7 +41,8 @@ This script get the Git user configured in ApiManagement service and generates a Generates a Shared Access Token for the User. (autogenerated) -```powershell +```powershell + New-AzApiManagementUserToken -Context -Expiry -UserId ``` diff --git a/src/ApiManagement/ApiManagement/help/Remove-AzApiManagementApiFromGateway.md b/src/ApiManagement/ApiManagement/help/Remove-AzApiManagementApiFromGateway.md new file mode 100644 index 000000000000..9063c2cbbfea --- /dev/null +++ b/src/ApiManagement/ApiManagement/help/Remove-AzApiManagementApiFromGateway.md @@ -0,0 +1,162 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll-Help.xml +Module Name: Az.ApiManagement +online version: https://docs.microsoft.com/en-us/powershell/module/az.apimanagement/remove-azapimanagementapifromgateway +schema: 2.0.0 +--- + +# Remove-AzApiManagementApiFromGateway + +## SYNOPSIS +Attaches an API to a gateway. + +## SYNTAX + +``` +Remove-AzApiManagementApiFromGateway -Context -GatewayId -ApiId + [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Remove-AzApiManagementApiFromGateway** cmdlet attaches an API to a gateway. + +## EXAMPLES + +### Example 1: Remove an API from a gateway +``` +PS C:\>$ApiMgmtContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso" +PS C:\>Remove-AzApiManagementApiFromGateway -Context $ApiMgmtContext -GatewayId "0123456789" -ApiId "0001" -PassThru +``` + +This command removes the specified API from a gateway. + +## PARAMETERS + +### -ApiId +Identifier of existing APIs to remove from the Gateway. +This parameter is required. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Context +Instance of PsApiManagementContext. +This parameter is required. + +```yaml +Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GatewayId +Identifier of existing Gateway to remove API from. +This parameter is required. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PassThru +If specified will write true in case operation succeeds. +This parameter is optional. +Default value is false. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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.ApiManagement.ServiceManagement.Models.PsApiManagementContext + +### System.String + +### System.Management.Automation.SwitchParameter + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/ApiManagement/ApiManagement/help/Remove-AzApiManagementApiRevision.md b/src/ApiManagement/ApiManagement/help/Remove-AzApiManagementApiRevision.md index 87b8b71db8ee..5b3f71e1f2eb 100644 --- a/src/ApiManagement/ApiManagement/help/Remove-AzApiManagementApiRevision.md +++ b/src/ApiManagement/ApiManagement/help/Remove-AzApiManagementApiRevision.md @@ -41,7 +41,8 @@ This command removes the `2` revision of the API `echo-api` from API Management This command removes the 2 revision of the API echo-api from API Management service. (autogenerated) -```powershell +```powershell + Remove-AzApiManagementApiRevision -ApiId '0001' -ApiRevision 6 -Context ``` diff --git a/src/ApiManagement/ApiManagement/help/Remove-AzApiManagementApiSchema.md b/src/ApiManagement/ApiManagement/help/Remove-AzApiManagementApiSchema.md index 1d0e46ccc678..1b4fb6d0c3bf 100644 --- a/src/ApiManagement/ApiManagement/help/Remove-AzApiManagementApiSchema.md +++ b/src/ApiManagement/ApiManagement/help/Remove-AzApiManagementApiSchema.md @@ -47,7 +47,8 @@ The script removes the Schema `2` from the Api `echo-api` if it is not reference The script removes the Schema 2 from the Api echo-api if it is not referenced. (autogenerated) -```powershell +```powershell + Remove-AzApiManagementApiSchema -ApiId '0001' -Context -SchemaId 5cc9cf67e6ed3b1154e638bd ``` diff --git a/src/ApiManagement/ApiManagement/help/Remove-AzApiManagementGateway.md b/src/ApiManagement/ApiManagement/help/Remove-AzApiManagementGateway.md new file mode 100644 index 000000000000..18825750a58f --- /dev/null +++ b/src/ApiManagement/ApiManagement/help/Remove-AzApiManagementGateway.md @@ -0,0 +1,190 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll-Help.xml +Module Name: Az.ApiManagement +online version: https://docs.microsoft.com/en-us/powershell/module/az.apimanagement/remove-azapimanagementgateway +schema: 2.0.0 +--- + +# Remove-AzApiManagementGateway + +## SYNOPSIS +Detaches an API from a Gateway. + +## SYNTAX + +### ContextParameterSetName (Default) +``` +Remove-AzApiManagementGateway -Context -GatewayId [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByInputObjectParameterSet +``` +Remove-AzApiManagementGateway -InputObject [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceIdParameterSet +``` +Remove-AzApiManagementGateway -ResourceId [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Remove-AzApiManagementGateway** cmdlet detaches an API from a Gateway. + +## EXAMPLES + +### Example 1: Remove an existing gateway +```powershell +PS C:\>$apimContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso" +PS C:\>Remove-AzApiManagementGateway -Context $apimContext -GatewayId "g0001" -Force +``` + +This command removes an existing gateway and does not prompt the user for confirmation. + +## PARAMETERS + +### -Context +Instance of PsApiManagementContext. +This parameter is required. + +```yaml +Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext +Parameter Sets: ContextParameterSetName +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GatewayId +Identifier of existing gateway. +This parameter is required. + +```yaml +Type: System.String +Parameter Sets: ContextParameterSetName +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -InputObject +Instance of PsApiManagementGateway. This parameter is required. + +```yaml +Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway +Parameter Sets: ByInputObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -PassThru +If specified will write true in case operation succeeds. +This parameter is optional. +Default value is false. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +Arm ResourceId of the Gateway. This parameter is required. + +```yaml +Type: System.String +Parameter Sets: ByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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.ApiManagement.ServiceManagement.Models.PsApiManagementContext + +### System.String + +### System.Management.Automation.SwitchParameter + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/ApiManagement/ApiManagement/help/Remove-AzApiManagementGatewayHostnameConfiguration.md b/src/ApiManagement/ApiManagement/help/Remove-AzApiManagementGatewayHostnameConfiguration.md new file mode 100644 index 000000000000..cbd09748ffcb --- /dev/null +++ b/src/ApiManagement/ApiManagement/help/Remove-AzApiManagementGatewayHostnameConfiguration.md @@ -0,0 +1,207 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll-Help.xml +Module Name: Az.ApiManagement +online version: https://docs.microsoft.com/en-us/powershell/module/az.apimanagement/remove-azapimanagementgatewayhostnameconfiguration +schema: 2.0.0 +--- + +# Remove-AzApiManagementGatewayHostnameConfiguration + +## SYNOPSIS +Removes a hostname configuration from the existing Gateway. + +## SYNTAX + +### ContextParameterSetName (Default) +``` +Remove-AzApiManagementGatewayHostnameConfiguration -Context -GatewayId + -GatewayHostnameConfigurationId [-PassThru] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### ByInputObjectParameterSet +``` +Remove-AzApiManagementGatewayHostnameConfiguration -InputObject + [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByResourceIdParameterSet +``` +Remove-AzApiManagementGatewayHostnameConfiguration -ResourceId [-PassThru] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Remove-AzApiManagementGatewayHostnameConfiguration** cmdlet removes a hostname configuration from the existing Gateway. + +## EXAMPLES + +### Example 1: Remove an existing gateway hostname configuration +```powershell +PS C:\>$apimContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso" +PS C:\>Remove-AzApiManagementGatewayHostnameConfiguration -Context $apimContext -GatewayId "g0001" -GatewayHostnameConfigurationId "h0001" -Force +``` + +This command removes an existing gateway hostname configuration and does not prompt the user for confirmation. + +## PARAMETERS + +### -Context +Instance of PsApiManagementContext. +This parameter is required. + +```yaml +Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext +Parameter Sets: ContextParameterSetName +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GatewayHostnameConfigurationId +Identifier of existing gateway hostname configuration. +This parameter is required. + +```yaml +Type: System.String +Parameter Sets: ContextParameterSetName +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -GatewayId +Identifier of existing gateway. +This parameter is required. + +```yaml +Type: System.String +Parameter Sets: ContextParameterSetName +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -InputObject +Instance of PsApiManagementGatewayHostnameConfiguration. This parameter is required. + +```yaml +Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGatewayHostnameConfiguration +Parameter Sets: ByInputObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -PassThru +If specified will write true in case operation succeeds. +This parameter is optional. +Default value is false. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +Arm ResourceId of the GatewayHostnameConfiguration. This parameter is required. + +```yaml +Type: System.String +Parameter Sets: ByResourceIdParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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.ApiManagement.ServiceManagement.Models.PsApiManagementContext + +### System.String + +### System.Management.Automation.SwitchParameter + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/ApiManagement/ApiManagement/help/Set-AzApiManagement.md b/src/ApiManagement/ApiManagement/help/Set-AzApiManagement.md index fff9118ace6f..6d981d43e0f1 100644 --- a/src/ApiManagement/ApiManagement/help/Set-AzApiManagement.md +++ b/src/ApiManagement/ApiManagement/help/Set-AzApiManagement.md @@ -13,9 +13,8 @@ Updates an Azure Api Management service ## SYNTAX ``` -Set-AzApiManagement -InputObject [-SystemAssignedIdentity] - [-UserAssignedIdentity ] [-AsJob] [-PassThru] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] +Set-AzApiManagement -InputObject [-SystemAssignedIdentity] [-UserAssignedIdentity ] + [-AsJob] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION diff --git a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementApiSchema.md b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementApiSchema.md index 5da5fe313d74..ba29c56ee228 100644 --- a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementApiSchema.md +++ b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementApiSchema.md @@ -50,7 +50,8 @@ The example updates the Api Schema Modifies an API Schema. (autogenerated) -```powershell +```powershell + Set-AzApiManagementApiSchema -ApiId 'echo-api' -Context -SchemaDocumentContentType swaggerdefinition -SchemaDocumentFilePath C:\Users\sasolank\Downloads\petstoreschema.json -SchemaId '2' ``` diff --git a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementAuthorizationServer.md b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementAuthorizationServer.md index d1976f662a52..3191c77ed8c6 100644 --- a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementAuthorizationServer.md +++ b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementAuthorizationServer.md @@ -42,7 +42,8 @@ This command modifies the specified API Management authorization server. Modifies an authorization server. (autogenerated) -```powershell +```powershell + Set-AzApiManagementAuthorizationServer -AccessTokenSendingMethods AuthorizationHeader -AuthorizationEndpointUrl 'https://contoso/authv2' -AuthorizationRequestMethods Get -ClientAuthenticationMethods Basic -ClientId 'clientid' -ClientRegistrationPageUrl 'https://contoso/signupv2' -ClientSecret '0000000000000000000000000000000000000' -Context -DefaultScope -GrantTypes AuthorizationCode -Name 'Contoso OAuth2 server' -ServerId 0123456789 -TokenEndpointUrl 'https://contoso/tokenv2' ``` diff --git a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementBackend.md b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementBackend.md index 119b354ba8e7..d80da17d1b47 100644 --- a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementBackend.md +++ b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementBackend.md @@ -46,7 +46,8 @@ PS C:\>Set-AzApiManagementBackend -Context $apimContext -BackendId 123 -Descript Updates a Backend. (autogenerated) -```powershell +```powershell + Set-AzApiManagementBackend -BackendId 123 -Context -Credential -Protocol http -ResourceId /subscriptions/subid/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/contoso -Url 'https://contoso.com/awesomeapi' ``` diff --git a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementDiagnostic.md b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementDiagnostic.md index be8c9eae600e..fe15fb2f5892 100644 --- a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementDiagnostic.md +++ b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementDiagnostic.md @@ -83,7 +83,8 @@ This command modifies the specified diagnostic Sampling Percentage from 100 to 5 Modifies an API Management diagnostic at the Global or Api scope. (autogenerated) -```powershell +```powershell + Set-AzApiManagementDiagnostic -AlwaysLog allErrors -ApiId '0001' -Context -DiagnosticId 'applicationinsights' -LoggerId 'Logger123' -SamplingSetting ``` diff --git a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementIdentityProvider.md b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementIdentityProvider.md index 61da2c90f951..32dcf897aa22 100644 --- a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementIdentityProvider.md +++ b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementIdentityProvider.md @@ -47,7 +47,8 @@ The cmdlet updates the Client Secret of the Facebook Identity Provider; Updates the Configuration of an existing Identity Provider. (autogenerated) -```powershell +```powershell + Set-AzApiManagementIdentityProvider -AllowedTenants 'samirtestbc.onmicrosoft.com' -Authority -ClientId 'clientid' -ClientSecret 'updatedSecret' -Context -PasswordResetPolicyName -ProfileEditingPolicyName -SigninPolicyName -SignupPolicyName B2C_1_signup-policy -Type Facebook ``` diff --git a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementLogger.md b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementLogger.md index 48ee8ba8f0fb..831fb7d62f78 100644 --- a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementLogger.md +++ b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementLogger.md @@ -44,7 +44,8 @@ This command modifies a logger that has the ID Logger123. Modifies an API Management Logger. (autogenerated) -```powershell +```powershell + Set-AzApiManagementLogger -Confirm -Context -InstrumentationKey -LoggerId 'Logger123' ``` diff --git a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementNamedValue.md b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementNamedValue.md index 9d27c1925bae..3982d946639d 100644 --- a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementNamedValue.md +++ b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementNamedValue.md @@ -46,7 +46,8 @@ This command changes the named value to be Encrypted. Modifies an API Management Named Value. (autogenerated) -```powershell +```powershell + Set-AzApiManagementNamedValue -Context -Name 'ContosoApi' -NamedValueId 'Property11' -Secret $true -Tag -Value 'Property Value' ``` diff --git a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementOpenIdConnectProvider.md b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementOpenIdConnectProvider.md index efc4404f76f9..2c0c0fba8e00 100644 --- a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementOpenIdConnectProvider.md +++ b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementOpenIdConnectProvider.md @@ -38,7 +38,8 @@ The command specifies a client secret for the provider. Modifies an OpenID Connect provider. (autogenerated) -```powershell +```powershell + Set-AzApiManagementOpenIdConnectProvider -ClientId 'clientid' -ClientSecret 'q2w3e43r45' -Context -OpenIdConnectProviderId 'OICProvider01' -PassThru ``` diff --git a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementOperation.md b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementOperation.md index f0380bf27667..d54d7fde7a82 100644 --- a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementOperation.md +++ b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementOperation.md @@ -38,7 +38,8 @@ This command sets the operation details for API management. Sets API operation details. (autogenerated) -```powershell +```powershell + Set-AzApiManagementOperation -ApiId '0001' -Context -Method 'GET' -Name 'ContosoApi' -OperationId 'Operation003' -UrlTemplate '/newresource' ``` diff --git a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementUser.md b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementUser.md index ea7732ccd672..ba5ecbeb6443 100644 --- a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementUser.md +++ b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementUser.md @@ -38,7 +38,8 @@ This command sets a new user password and email address and blocks the user. Sets user details. (autogenerated) -```powershell +```powershell + Set-AzApiManagementUser -Context -Email 'patti.fuller@contoso.com' -FirstName 'Patti' -LastName 'Fuller' -Password -State Active -UserId '0123456789' ``` diff --git a/src/ApiManagement/ApiManagement/help/Update-AzApiManagementGateway.md b/src/ApiManagement/ApiManagement/help/Update-AzApiManagementGateway.md new file mode 100644 index 000000000000..be696baa3fb9 --- /dev/null +++ b/src/ApiManagement/ApiManagement/help/Update-AzApiManagementGateway.md @@ -0,0 +1,225 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll-Help.xml +Module Name: Az.ApiManagement +online version: https://docs.microsoft.com/en-us/powershell/module/az.apimanagement/Update-AzApiManagementGateway +schema: 2.0.0 +--- + +# Update-AzApiManagementGateway + +## SYNOPSIS +Configures an API management Gateway. + +## SYNTAX + +### ExpandedParameter (Default) +``` +Update-AzApiManagementGateway -Context -GatewayId [-Description ] + [-LocationData ] [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByInputObject +``` +Update-AzApiManagementGateway -InputObject [-Description ] + [-LocationData ] [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### ByResourceId +``` +Update-AzApiManagementGateway -ResourceId [-Description ] + [-LocationData ] [-PassThru] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Update-AzApiManagementGateway** cmdlet configures an API management Gateway. + +## EXAMPLES + +### Example 1: Configure a management group +```powershell +PS C:\>$apimContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso" +PS C:\>Update-AzApiManagementGateway -Context $apimContext -GatewayId "0001" -Description "Updated Gateway" +``` + +This command configures a gateway. + +## PARAMETERS + +### -Context +Instance of PsApiManagementContext. +This parameter is required. + +```yaml +Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementContext +Parameter Sets: ExpandedParameter +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Description +Gateway description. +This parameter is optional. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -GatewayId +Identifier of existing gateway. +This parameter is required. + +```yaml +Type: System.String +Parameter Sets: ExpandedParameter +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -InputObject +Instance of PsApiManagementGateway. This parameter is required. + +```yaml +Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway +Parameter Sets: ByInputObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -LocationData +Gateway location. +This parameter is optional. + +```yaml +Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PassThru +If specified then instance of Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway type representing the modified gateway. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceId +Arm ResourceId of the Gateway. This parameter is required. + +```yaml +Type: System.String +Parameter Sets: ByResourceId +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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.ApiManagement.ServiceManagement.Models.PsApiManagementContext + +### System.String + +### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementResourceLocation + +### System.Management.Automation.SwitchParameter + +## OUTPUTS + +### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementGateway + +## NOTES + +## RELATED LINKS diff --git a/src/ApiManagement/ApiManagement/help/Update-AzApiManagementRegion.md b/src/ApiManagement/ApiManagement/help/Update-AzApiManagementRegion.md index e51b789c7484..a7337e75afc7 100644 --- a/src/ApiManagement/ApiManagement/help/Update-AzApiManagementRegion.md +++ b/src/ApiManagement/ApiManagement/help/Update-AzApiManagementRegion.md @@ -39,7 +39,8 @@ This command gets the API Management Premium SKU service, having regions in Sout Updates existing deployment region in PsApiManagement instance. (autogenerated) -```powershell +```powershell + Update-AzApiManagementRegion -ApiManagement -Capacity 2 -Location 'North Central US' -Sku Developer -VirtualNetwork ``` diff --git a/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.cs b/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.cs index 4d39e299bf8b..0a07b6c08c84 100644 --- a/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.cs +++ b/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.cs @@ -120,6 +120,14 @@ public void TestNetworkRuleSet() TestController.NewInstance.RunPsTest(traceInterceptor, "Test-NetworkRuleSet"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestNetworkRuleSetDefaultActions() + { + TestController.NewInstance.RunPsTest(traceInterceptor, "Test-NetworkRuleSetDefaultActions"); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestGetAccountKeys() diff --git a/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.ps1 b/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.ps1 index 5dd32a78c6af..bb24bb4d8195 100644 --- a/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.ps1 +++ b/src/CognitiveServices/CognitiveServices.Test/ScenarioTests/CognitiveServicesAccountTests.ps1 @@ -510,8 +510,8 @@ function Test-NetworkRuleSet # Test $accountname = 'csa' + $rgname; $vnetname = 'vnet' + $rgname; - $skuname = 'S0'; - $accounttype = 'Face'; + $skuname = 'S1'; + $accounttype = 'TextAnalytics'; $loc = Get-Location -providerNamespace "Microsoft.CognitiveServices" -resourceType "accounts" -preferredLocation "Central US EUAP"; New-AzResourceGroup -Name $rgname -Location $loc; @@ -605,6 +605,51 @@ function Test-NetworkRuleSet } } +<# +.SYNOPSIS +TestNetworkRuleSetDefaultActions +#> +function Test-NetworkRuleSetDefaultActions +{ + # Setup + $rgname = Get-CognitiveServicesManagementTestResourceName; + + try + { + # Test + $accountname = 'csa' + $rgname; + $vnetname = 'vnet' + $rgname; + $skuname = 'S1'; + $accounttype = 'TextAnalytics'; + $loc = Get-Location -providerNamespace "Microsoft.CognitiveServices" -resourceType "accounts" -preferredLocation "Central US EUAP"; + + New-AzResourceGroup -Name $rgname -Location $loc; + + $createdAccount = New-AzCognitiveServicesAccount -ResourceGroupName $rgname -Name $accountname -Type $accounttype -SkuName $skuname -Location $loc -CustomSubdomainName $accountname -Force; + Assert-NotNull $createdAccount; + + $vnet = CreateAndGetVirtualNetwork $rgname $vnetname + + $vnetid = $vnet.Subnets[0].Id + $vnetid2 = $vnet.Subnets[1].Id + + $ruleSet = Get-AzCognitiveServicesAccountNetworkRuleSet -ResourceGroupName $rgname -Name $accountname + Assert-Null $ruleSet + + Add-AzCognitiveServicesAccountNetworkRule -ResourceGroupName $rgname -Name $accountname -VirtualNetworkResourceId $vnetid + $ruleSet = Get-AzCognitiveServicesAccountNetworkRuleSet -ResourceGroupName $rgname -Name $accountname + Assert-NotNull $ruleSet + Assert-AreEqual 'Deny' $ruleSet.DefaultAction + Assert-AreEqual 0 $ruleSet.IpRules.Count + Assert-AreEqual 1 $ruleSet.VirtualNetworkRules.Count + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + <# .SYNOPSIS Test Get-AzCognitiveServicesAccountSkus diff --git a/src/CognitiveServices/CognitiveServices.Test/SessionRecords/CognitiveServices.Test.ScenarioTests.CognitiveServicesAccountTests/TestNetworkRuleSet.json b/src/CognitiveServices/CognitiveServices.Test/SessionRecords/CognitiveServices.Test.ScenarioTests.CognitiveServicesAccountTests/TestNetworkRuleSet.json index e1d7f025fea2..5faf16d5035b 100644 --- a/src/CognitiveServices/CognitiveServices.Test/SessionRecords/CognitiveServices.Test.ScenarioTests.CognitiveServicesAccountTests/TestNetworkRuleSet.json +++ b/src/CognitiveServices/CognitiveServices.Test/SessionRecords/CognitiveServices.Test.ScenarioTests.CognitiveServicesAccountTests/TestNetworkRuleSet.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54f2caa0-2d29-4307-afd1-9878534ade8a" + "0614d077-f954-435d-88a6-8e553fbb9a9a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.19" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "555db691-2757-4984-8a86-5314853665ea" + "67cc3869-eae5-4fc0-bb0c-18c37d664b4a" ], "x-ms-correlation-request-id": [ - "555db691-2757-4984-8a86-5314853665ea" + "67cc3869-eae5-4fc0-bb0c-18c37d664b4a" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232716Z:555db691-2757-4984-8a86-5314853665ea" + "WESTUS2:20200721T174827Z:67cc3869-eae5-4fc0-bb0c-18c37d664b4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:16 GMT" + "Tue, 21 Jul 2020 17:48:27 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "2830" + "4737" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updateAccountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/privateLinkResources\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourcegroups/pstestrg138?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourcegroups/pstestrg2853?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US EUAP\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "db52de7c-4ab3-451d-8784-f547675d87bc" + "9e933039-e7f0-48bf-bd15-d9d0ea8a06b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.19" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "141a1247-6bcc-4594-94f8-9728fa7777dd" + "08ef8dcf-d933-4d54-ad42-df0dd6e50a31" ], "x-ms-correlation-request-id": [ - "141a1247-6bcc-4594-94f8-9728fa7777dd" + "08ef8dcf-d933-4d54-ad42-df0dd6e50a31" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232719Z:141a1247-6bcc-4594-94f8-9728fa7777dd" + "WESTUS2:20200721T174828Z:08ef8dcf-d933-4d54-ad42-df0dd6e50a31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:18 GMT" + "Tue, 21 Jul 2020 17:48:28 GMT" ], "Content-Length": [ - "182" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,32 +123,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138\",\r\n \"name\": \"pstestrg138\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853\",\r\n \"name\": \"pstestrg2853\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"location\": \"Central US EUAP\",\r\n \"properties\": {\r\n \"customSubDomainName\": \"csapstestrg138\"\r\n }\r\n}", + "RequestBody": "{\r\n \"kind\": \"TextAnalytics\",\r\n \"location\": \"Central US EUAP\",\r\n \"properties\": {\r\n \"customSubDomainName\": \"csapstestrg2853\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8bdfbed4-9af4-4086-9e84-eddc8e202600" + "d83d175c-f20c-4840-9546-39afa6ad5ee9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "162" + "172" ] }, "ResponseHeaders": { @@ -159,10 +159,10 @@ "no-cache" ], "ETag": [ - "\"1e0066d6-0000-3300-0000-5d27c5da0000\"" + "\"1400a6aa-0000-3300-0000-5f172a700000\"" ], "x-ms-request-id": [ - "7020464f-476d-4092-975a-0020e00d34a4" + "895e1171-5008-4db0-9699-9af55063b4d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,22 +177,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "5cb79abe-776f-439c-957e-0e160b96f43c" + "8a7edd79-4221-4495-a83e-71caf41faeb0" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232722Z:5cb79abe-776f-439c-957e-0e160b96f43c" + "WESTUS2:20200721T174833Z:8a7edd79-4221-4495-a83e-71caf41faeb0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:22 GMT" + "Tue, 21 Jul 2020 17:48:33 GMT" ], "Content-Length": [ - "585" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -201,26 +201,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0066d6-0000-3300-0000-5d27c5da0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1400a6aa-0000-3300-0000-5f172a700000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3455b0e0-67fd-4b68-a538-ea491691a29f" + "b96ab84e-e4ba-43ab-b8f4-764cf7b3b5b6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -231,10 +231,10 @@ "no-cache" ], "ETag": [ - "\"1e0066d6-0000-3300-0000-5d27c5da0000\"" + "\"1400a6aa-0000-3300-0000-5f172a700000\"" ], "x-ms-request-id": [ - "2dc2c8da-5015-4215-b3b3-00d86974b8ca" + "924af8cc-930b-4ef6-ae74-574ebb936920" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -249,22 +249,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11998" ], "x-ms-correlation-request-id": [ - "cd86ba17-5fd2-4155-a001-d8e6baef23d1" + "3ae72e90-7286-4dd6-8174-49a71bb7a10f" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232722Z:cd86ba17-5fd2-4155-a001-d8e6baef23d1" + "WESTUS2:20200721T174833Z:3ae72e90-7286-4dd6-8174-49a71bb7a10f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:22 GMT" + "Tue, 21 Jul 2020 17:48:33 GMT" ], "Content-Length": [ - "585" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -273,26 +273,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0066d6-0000-3300-0000-5d27c5da0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1400a6aa-0000-3300-0000-5f172a700000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c80da2d2-caac-480f-8b55-aa918c60e9a5" + "376b4990-9d49-445f-8fab-0021fe5583c8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -303,10 +303,10 @@ "no-cache" ], "ETag": [ - "\"1e0066d6-0000-3300-0000-5d27c5da0000\"" + "\"1400a6aa-0000-3300-0000-5f172a700000\"" ], "x-ms-request-id": [ - "8ef4012b-ae77-4055-aa67-680e598dcda2" + "b319615f-48c6-4e3b-b049-898825e0bc23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -321,22 +321,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11997" ], "x-ms-correlation-request-id": [ - "e7ed53f6-e6d3-49de-84f8-802c5caf23a4" + "23c9843e-e18e-4046-8c30-c11d0147fb00" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232729Z:e7ed53f6-e6d3-49de-84f8-802c5caf23a4" + "WESTUS2:20200721T174843Z:23c9843e-e18e-4046-8c30-c11d0147fb00" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:29 GMT" + "Tue, 21 Jul 2020 17:48:42 GMT" ], "Content-Length": [ - "585" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -345,26 +345,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0066d6-0000-3300-0000-5d27c5da0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1400a6aa-0000-3300-0000-5f172a700000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e96675c2-b36d-46d0-a491-9dfb3c07c35f" + "ce021137-a20d-4b13-9959-50297280952e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -375,10 +375,10 @@ "no-cache" ], "ETag": [ - "\"1e0066d6-0000-3300-0000-5d27c5da0000\"" + "\"1400a6aa-0000-3300-0000-5f172a700000\"" ], "x-ms-request-id": [ - "616d2595-c33e-47b0-84ee-9be6e685902b" + "473ce0f4-f0ed-4d53-9e5f-01ef271b3217" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -393,22 +393,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11996" ], "x-ms-correlation-request-id": [ - "5e7781e9-0343-4047-b4be-856876be2164" + "1650f1ca-d2b7-4f49-aab8-b85ecc290d96" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232729Z:5e7781e9-0343-4047-b4be-856876be2164" + "WESTUS2:20200721T174843Z:1650f1ca-d2b7-4f49-aab8-b85ecc290d96" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:29 GMT" + "Tue, 21 Jul 2020 17:48:42 GMT" ], "Content-Length": [ - "585" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -417,26 +417,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0066d6-0000-3300-0000-5d27c5da0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1400a6aa-0000-3300-0000-5f172a700000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6156dc4c-42ad-4b68-b37d-07cd5819b6f6" + "868bd3ce-de81-4f09-a43f-dbb911895580" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -447,10 +447,10 @@ "no-cache" ], "ETag": [ - "\"1e0080d6-0000-3300-0000-5d27c5e20000\"" + "\"1400e5aa-0000-3300-0000-5f172a7c0000\"" ], "x-ms-request-id": [ - "406b6ad1-4006-4bc4-934f-1d47d0dd73d9" + "f1f1a624-1a0c-4167-a709-c9f5aca8457c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -465,22 +465,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11995" ], "x-ms-correlation-request-id": [ - "2aaf2d01-554d-4b16-a196-ff17041aebde" + "33a775d5-057f-4ef6-b431-fe992007c883" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232730Z:2aaf2d01-554d-4b16-a196-ff17041aebde" + "WESTUS2:20200721T174844Z:33a775d5-057f-4ef6-b431-fe992007c883" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:30 GMT" + "Tue, 21 Jul 2020 17:48:44 GMT" ], "Content-Length": [ - "662" + "775" ], "Content-Type": [ "application/json; charset=utf-8" @@ -489,26 +489,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0080d6-0000-3300-0000-5d27c5e20000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1400e5aa-0000-3300-0000-5f172a7c0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8a4d415-1b70-4a9f-b943-33fc8e44e79a" + "4f4ae577-e281-4fc7-8308-acf906f2321c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -519,10 +519,10 @@ "no-cache" ], "ETag": [ - "\"1e0080d6-0000-3300-0000-5d27c5e20000\"" + "\"1400e5aa-0000-3300-0000-5f172a7c0000\"" ], "x-ms-request-id": [ - "6416b1d6-465a-4797-a1fd-b26a79207ba4" + "cbff9f9b-4171-44c7-b39a-c4ca9e784786" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -537,22 +537,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11994" ], "x-ms-correlation-request-id": [ - "cc63c3f6-8ae5-483a-8372-3085e45521e9" + "2cc13938-f110-46d0-9116-098242b15ecc" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232730Z:cc63c3f6-8ae5-483a-8372-3085e45521e9" + "WESTUS2:20200721T174844Z:2cc13938-f110-46d0-9116-098242b15ecc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:30 GMT" + "Tue, 21 Jul 2020 17:48:44 GMT" ], "Content-Length": [ - "662" + "775" ], "Content-Type": [ "application/json; charset=utf-8" @@ -561,26 +561,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0080d6-0000-3300-0000-5d27c5e20000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1400e5aa-0000-3300-0000-5f172a7c0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe852a88-92db-48f6-886a-495776d17eb1" + "a0154bc5-acd5-444b-a53e-e2f19348cd98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -591,10 +591,10 @@ "no-cache" ], "ETag": [ - "\"1e0080d6-0000-3300-0000-5d27c5e20000\"" + "\"1400e5aa-0000-3300-0000-5f172a7c0000\"" ], "x-ms-request-id": [ - "0c14007b-7214-408f-9594-c3caf1b8a25d" + "edbdf864-65b1-49dc-8ea4-7bd71f10fe8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -609,22 +609,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11993" ], "x-ms-correlation-request-id": [ - "df6af627-6bd8-4b5e-8eab-318c420fd715" + "6286b8c1-12c5-435f-bdd2-5cb16d50760f" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232730Z:df6af627-6bd8-4b5e-8eab-318c420fd715" + "WESTUS2:20200721T174845Z:6286b8c1-12c5-435f-bdd2-5cb16d50760f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:30 GMT" + "Tue, 21 Jul 2020 17:48:44 GMT" ], "Content-Length": [ - "662" + "775" ], "Content-Type": [ "application/json; charset=utf-8" @@ -633,26 +633,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0080d6-0000-3300-0000-5d27c5e20000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1400e5aa-0000-3300-0000-5f172a7c0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7020045-ec0a-4cfc-9a50-add17292fa51" + "21356a28-d520-4184-8078-353b30350871" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -663,10 +663,10 @@ "no-cache" ], "ETag": [ - "\"1e00f7d6-0000-3300-0000-5d27c5f00000\"" + "\"140023ab-0000-3300-0000-5f172a880000\"" ], "x-ms-request-id": [ - "0a829c78-2a6d-4620-bf27-25d35b75f9ac" + "790ef517-b926-4108-9af5-070377357ec8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -681,22 +681,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11992" ], "x-ms-correlation-request-id": [ - "cf10d1ae-a199-4ac5-85e1-5fe55422231d" + "c9736f65-8df8-4c63-b238-a24d3844e2d6" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232744Z:cf10d1ae-a199-4ac5-85e1-5fe55422231d" + "WESTUS2:20200721T174857Z:c9736f65-8df8-4c63-b238-a24d3844e2d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:44 GMT" + "Tue, 21 Jul 2020 17:48:56 GMT" ], "Content-Length": [ - "865" + "980" ], "Content-Type": [ "application/json; charset=utf-8" @@ -705,26 +705,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e00f7d6-0000-3300-0000-5d27c5f00000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"140023ab-0000-3300-0000-5f172a880000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "202dbf46-4e81-41f3-a2a6-c572aee9d8a0" + "2c06b6b5-0066-429f-af5e-90b58df63dca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -735,10 +735,10 @@ "no-cache" ], "ETag": [ - "\"1e00f7d6-0000-3300-0000-5d27c5f00000\"" + "\"140023ab-0000-3300-0000-5f172a880000\"" ], "x-ms-request-id": [ - "8031e2d8-ebaa-4e8e-a5cd-1879d4fc54f2" + "ef5cdafe-571c-43b7-9dce-a48036263be9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -753,22 +753,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11991" ], "x-ms-correlation-request-id": [ - "0a40022c-0efd-484a-ba06-1db3a7d1d2ce" + "93d34802-5222-4fc6-8446-669da3ee43cc" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232744Z:0a40022c-0efd-484a-ba06-1db3a7d1d2ce" + "WESTUS2:20200721T174857Z:93d34802-5222-4fc6-8446-669da3ee43cc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:44 GMT" + "Tue, 21 Jul 2020 17:48:56 GMT" ], "Content-Length": [ - "865" + "980" ], "Content-Type": [ "application/json; charset=utf-8" @@ -777,26 +777,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e00f7d6-0000-3300-0000-5d27c5f00000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"140023ab-0000-3300-0000-5f172a880000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c7b547a-e541-4eb9-bc25-bcf134ca4318" + "417f0adf-df4d-4f6d-bd97-0e59e6d97114" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -807,10 +807,10 @@ "no-cache" ], "ETag": [ - "\"1e00f7d6-0000-3300-0000-5d27c5f00000\"" + "\"140023ab-0000-3300-0000-5f172a880000\"" ], "x-ms-request-id": [ - "91b439a1-ea64-4192-907f-431aaeac28e2" + "88e4d82e-2153-45a5-b346-04e69499f955" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -825,22 +825,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11990" ], "x-ms-correlation-request-id": [ - "28ec5b7b-7417-49e1-bf64-56f66cc89ab9" + "ec739d83-b24a-4a19-884c-7a37a6764225" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232744Z:28ec5b7b-7417-49e1-bf64-56f66cc89ab9" + "WESTUS2:20200721T174857Z:ec739d83-b24a-4a19-884c-7a37a6764225" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:44 GMT" + "Tue, 21 Jul 2020 17:48:56 GMT" ], "Content-Length": [ - "865" + "980" ], "Content-Type": [ "application/json; charset=utf-8" @@ -849,26 +849,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e00f7d6-0000-3300-0000-5d27c5f00000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"140023ab-0000-3300-0000-5f172a880000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5c266de-4672-4733-90be-63a11f559811" + "1773c8f2-7529-46c4-969b-5e643600ff40" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -879,10 +879,10 @@ "no-cache" ], "ETag": [ - "\"1e0036d7-0000-3300-0000-5d27c5fd0000\"" + "\"14003cab-0000-3300-0000-5f172a940000\"" ], "x-ms-request-id": [ - "241be275-c57f-4188-b89e-bd5b768b0cd2" + "5a053513-aa4c-4580-bdd8-03c43d5d1fe5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -897,22 +897,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11989" ], "x-ms-correlation-request-id": [ - "d837f2b8-5228-4059-81a7-ff79b6740f92" + "c47b2a28-4328-4449-a508-eecc2f1a48b7" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232757Z:d837f2b8-5228-4059-81a7-ff79b6740f92" + "WESTUS2:20200721T174908Z:c47b2a28-4328-4449-a508-eecc2f1a48b7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:57 GMT" + "Tue, 21 Jul 2020 17:49:08 GMT" ], "Content-Length": [ - "1068" + "1185" ], "Content-Type": [ "application/json; charset=utf-8" @@ -921,26 +921,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0036d7-0000-3300-0000-5d27c5fd0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"14003cab-0000-3300-0000-5f172a940000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56f79dd1-d025-483e-ac4c-d3691e9baa0f" + "0a6c2497-7b20-4aea-ba24-7212197b8179" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -951,10 +951,10 @@ "no-cache" ], "ETag": [ - "\"1e0036d7-0000-3300-0000-5d27c5fd0000\"" + "\"14003cab-0000-3300-0000-5f172a940000\"" ], "x-ms-request-id": [ - "01cadc5c-b68a-405b-ab7d-8371a4987864" + "2bc11216-a272-4fa7-aa46-41e426cb8680" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -969,22 +969,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11988" ], "x-ms-correlation-request-id": [ - "413ae3bf-17bf-4262-8738-b531205d3e59" + "8f7242b7-3f0f-447a-b55e-edb95d15eadb" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232757Z:413ae3bf-17bf-4262-8738-b531205d3e59" + "WESTUS2:20200721T174908Z:8f7242b7-3f0f-447a-b55e-edb95d15eadb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:57 GMT" + "Tue, 21 Jul 2020 17:49:08 GMT" ], "Content-Length": [ - "1068" + "1185" ], "Content-Type": [ "application/json; charset=utf-8" @@ -993,26 +993,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0036d7-0000-3300-0000-5d27c5fd0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"14003cab-0000-3300-0000-5f172a940000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5dfca14-f593-4717-9051-1c7828665841" + "fe735833-6de6-4ec5-96e4-580a65156885" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -1023,10 +1023,10 @@ "no-cache" ], "ETag": [ - "\"1e0036d7-0000-3300-0000-5d27c5fd0000\"" + "\"14003cab-0000-3300-0000-5f172a940000\"" ], "x-ms-request-id": [ - "9169df29-7ad1-4fa3-bda0-e9de57157768" + "3a88dd68-be14-4dd7-be66-9532665120ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1041,22 +1041,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11987" ], "x-ms-correlation-request-id": [ - "b1e7d3ad-45b9-491f-a38d-11f359a103bd" + "4aba7b90-56fe-4ccf-b026-af15bbcc7bbe" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232757Z:b1e7d3ad-45b9-491f-a38d-11f359a103bd" + "WESTUS2:20200721T174908Z:4aba7b90-56fe-4ccf-b026-af15bbcc7bbe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:57 GMT" + "Tue, 21 Jul 2020 17:49:08 GMT" ], "Content-Length": [ - "1068" + "1185" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1065,26 +1065,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0036d7-0000-3300-0000-5d27c5fd0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"14003cab-0000-3300-0000-5f172a940000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "159a1327-bd09-44fd-8a34-684afe5073ef" + "459b126a-ec96-4a00-8c68-4c4204fb669c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -1095,10 +1095,10 @@ "no-cache" ], "ETag": [ - "\"1e0041d7-0000-3300-0000-5d27c6010000\"" + "\"14003fab-0000-3300-0000-5f172a950000\"" ], "x-ms-request-id": [ - "870e876c-1521-4638-aa73-11fbd382a4bf" + "fdf68a5b-b9c9-4737-90ff-824799575c24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1113,22 +1113,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11986" ], "x-ms-correlation-request-id": [ - "37ebdd78-a1fc-45f0-9448-cda13df3d121" + "d222caec-657b-4e43-bb6f-91d0f9bfaef5" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232801Z:37ebdd78-a1fc-45f0-9448-cda13df3d121" + "WESTUS2:20200721T174910Z:d222caec-657b-4e43-bb6f-91d0f9bfaef5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:00 GMT" + "Tue, 21 Jul 2020 17:49:09 GMT" ], "Content-Length": [ - "864" + "979" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1137,26 +1137,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0041d7-0000-3300-0000-5d27c6010000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"14003fab-0000-3300-0000-5f172a950000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b71881f-54a7-4107-aa9e-3ac4b126af42" + "91cdb679-fc09-4ac3-a393-167bed3e1ff1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -1167,10 +1167,10 @@ "no-cache" ], "ETag": [ - "\"1e0041d7-0000-3300-0000-5d27c6010000\"" + "\"14003fab-0000-3300-0000-5f172a950000\"" ], "x-ms-request-id": [ - "ae84b003-3d67-4b95-9d32-83e96f1590f9" + "09cef1a9-a716-4caf-8938-0936e92e5c29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1185,22 +1185,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11985" ], "x-ms-correlation-request-id": [ - "7fca05af-2a97-48ef-acf2-25f03fc83d1f" + "3b11c08c-5c5d-4acb-8c68-0603f7d12ea8" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232801Z:7fca05af-2a97-48ef-acf2-25f03fc83d1f" + "WESTUS2:20200721T174910Z:3b11c08c-5c5d-4acb-8c68-0603f7d12ea8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:01 GMT" + "Tue, 21 Jul 2020 17:49:09 GMT" ], "Content-Length": [ - "864" + "979" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1209,26 +1209,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0041d7-0000-3300-0000-5d27c6010000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"14003fab-0000-3300-0000-5f172a950000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16384b16-0c6b-4c0c-8d16-8b625a1f3664" + "5f002885-43bc-404b-a826-d453f4ec728b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -1239,10 +1239,10 @@ "no-cache" ], "ETag": [ - "\"1e0041d7-0000-3300-0000-5d27c6010000\"" + "\"14003fab-0000-3300-0000-5f172a950000\"" ], "x-ms-request-id": [ - "d5680105-3f40-489e-8662-1024991b7a56" + "ace929fa-1cef-4691-b346-bcc037306e67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1257,22 +1257,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11984" ], "x-ms-correlation-request-id": [ - "0f1b0c71-7984-4489-9514-13f7e380deec" + "e6d61151-9e50-447c-aad9-d425b4354bb3" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232801Z:0f1b0c71-7984-4489-9514-13f7e380deec" + "WESTUS2:20200721T174910Z:e6d61151-9e50-447c-aad9-d425b4354bb3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:01 GMT" + "Tue, 21 Jul 2020 17:49:09 GMT" ], "Content-Length": [ - "864" + "979" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1281,26 +1281,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0041d7-0000-3300-0000-5d27c6010000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"14003fab-0000-3300-0000-5f172a950000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4923e01c-d2d4-449a-8c1c-c980cadcfd3a" + "7475ae64-d758-43d2-8dc9-0f12898c7c4e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -1311,10 +1311,10 @@ "no-cache" ], "ETag": [ - "\"1e007fd7-0000-3300-0000-5d27c60d0000\"" + "\"14005fab-0000-3300-0000-5f172aa10000\"" ], "x-ms-request-id": [ - "629c2d7e-3693-4d07-9c07-a1046979cd02" + "3dfcc617-0786-4320-8761-c4126479faa7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1329,22 +1329,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11982" ], "x-ms-correlation-request-id": [ - "c5fada50-f4ad-43df-af32-515ea7934fab" + "74476178-5f2d-4dc1-b48e-8a395330cfb5" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232813Z:c5fada50-f4ad-43df-af32-515ea7934fab" + "WESTUS2:20200721T174922Z:74476178-5f2d-4dc1-b48e-8a395330cfb5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:13 GMT" + "Tue, 21 Jul 2020 17:49:21 GMT" ], "Content-Length": [ - "662" + "775" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1353,26 +1353,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e007fd7-0000-3300-0000-5d27c60d0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"14005fab-0000-3300-0000-5f172aa10000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "660e2fa4-8fcf-4f91-928f-3175d564c54c" + "9c6184a8-9d14-49b2-96c8-8baf8f535ccd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -1383,10 +1383,10 @@ "no-cache" ], "ETag": [ - "\"1e007fd7-0000-3300-0000-5d27c60d0000\"" + "\"14005fab-0000-3300-0000-5f172aa10000\"" ], "x-ms-request-id": [ - "a77d8bb3-8fe0-4849-9780-6c917a8a8bee" + "ae00a647-df7c-4626-b407-ed0bcbd16858" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1401,22 +1401,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11981" ], "x-ms-correlation-request-id": [ - "d632cc1b-a59d-4fef-8ad5-d478d2f91e19" + "a28e5e53-1cbd-40f5-99c1-1a6f701b4ff7" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232813Z:d632cc1b-a59d-4fef-8ad5-d478d2f91e19" + "WESTUS2:20200721T174922Z:a28e5e53-1cbd-40f5-99c1-1a6f701b4ff7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:13 GMT" + "Tue, 21 Jul 2020 17:49:21 GMT" ], "Content-Length": [ - "662" + "775" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1425,26 +1425,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e007fd7-0000-3300-0000-5d27c60d0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"14005fab-0000-3300-0000-5f172aa10000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5fd5b20c-cc79-459a-bc28-53b2aba5dcdd" + "e2b64d90-dafb-4803-80d3-0f0ccd545ac1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -1455,10 +1455,10 @@ "no-cache" ], "ETag": [ - "\"1e007fd7-0000-3300-0000-5d27c60d0000\"" + "\"14005fab-0000-3300-0000-5f172aa10000\"" ], "x-ms-request-id": [ - "ddf912db-4e2d-414e-82f6-e80b873631be" + "2515acb8-40e8-4f26-b494-f5dd7fa19afe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1473,22 +1473,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11980" ], "x-ms-correlation-request-id": [ - "c564e62a-4195-45c4-99cd-7b226eb0aadf" + "e4099b26-2d78-48e1-8acf-2b743a0ce699" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232813Z:c564e62a-4195-45c4-99cd-7b226eb0aadf" + "WESTUS2:20200721T174922Z:e4099b26-2d78-48e1-8acf-2b743a0ce699" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:13 GMT" + "Tue, 21 Jul 2020 17:49:21 GMT" ], "Content-Length": [ - "662" + "775" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1497,26 +1497,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e007fd7-0000-3300-0000-5d27c60d0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"14005fab-0000-3300-0000-5f172aa10000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2e46429-ab4b-4818-9d7b-b5f5491a37cf" + "694dcba5-9c82-45ea-9ad2-dd7ea31d4799" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -1527,10 +1527,10 @@ "no-cache" ], "ETag": [ - "\"1e0083d7-0000-3300-0000-5d27c60e0000\"" + "\"140067ab-0000-3300-0000-5f172aa20000\"" ], "x-ms-request-id": [ - "6576890c-d7cf-4af0-867e-23dfb16e3966" + "4697c620-e366-4b9e-8989-c9438b3ae333" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1545,22 +1545,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11979" ], "x-ms-correlation-request-id": [ - "77728903-ef0b-4d4e-88b0-fdf9e73653ac" + "acd966fb-b9cb-482b-b739-c3e802fd2dc3" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232814Z:77728903-ef0b-4d4e-88b0-fdf9e73653ac" + "WESTUS2:20200721T174922Z:acd966fb-b9cb-482b-b739-c3e802fd2dc3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:13 GMT" + "Tue, 21 Jul 2020 17:49:21 GMT" ], "Content-Length": [ - "684" + "797" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1569,26 +1569,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0083d7-0000-3300-0000-5d27c60e0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.0\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"140067ab-0000-3300-0000-5f172aa20000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.0\"\r\n }\r\n ]\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f01f120d-0c3e-4502-a4dd-a6089cca74d3" + "63836265-5498-479d-987a-cc988a35ef83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -1599,10 +1599,10 @@ "no-cache" ], "ETag": [ - "\"1e0083d7-0000-3300-0000-5d27c60e0000\"" + "\"140067ab-0000-3300-0000-5f172aa20000\"" ], "x-ms-request-id": [ - "507d8b23-4708-449c-bd8b-51ab92b4b231" + "9135664e-317c-4955-9f00-3cac72b1915f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1617,22 +1617,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11978" ], "x-ms-correlation-request-id": [ - "9ebf3c5b-ea60-4aea-a249-87eb57bf1cbc" + "c45a0ffe-55ba-43f7-b21e-27e9f14b719f" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232814Z:9ebf3c5b-ea60-4aea-a249-87eb57bf1cbc" + "WESTUS2:20200721T174922Z:c45a0ffe-55ba-43f7-b21e-27e9f14b719f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:13 GMT" + "Tue, 21 Jul 2020 17:49:22 GMT" ], "Content-Length": [ - "684" + "797" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1641,26 +1641,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0083d7-0000-3300-0000-5d27c60e0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.0\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"140067ab-0000-3300-0000-5f172aa20000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.0\"\r\n }\r\n ]\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b8638bf-803a-4837-955d-96eafd8686da" + "2c62240d-4264-47aa-84d9-0a1170e5c2d8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -1671,10 +1671,10 @@ "no-cache" ], "ETag": [ - "\"1e0083d7-0000-3300-0000-5d27c60e0000\"" + "\"140067ab-0000-3300-0000-5f172aa20000\"" ], "x-ms-request-id": [ - "8cf6c8fb-4b47-46bd-add4-819144051b8d" + "bf1ddd2b-44b6-42c4-aead-ed1521b5a739" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1689,22 +1689,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11977" ], "x-ms-correlation-request-id": [ - "1bd653e3-e7ff-49b5-97c0-fc707edcfab0" + "ed6139ff-b31a-41ba-a1ae-9d1d48caa0ae" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232814Z:1bd653e3-e7ff-49b5-97c0-fc707edcfab0" + "WESTUS2:20200721T174923Z:ed6139ff-b31a-41ba-a1ae-9d1d48caa0ae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:13 GMT" + "Tue, 21 Jul 2020 17:49:22 GMT" ], "Content-Length": [ - "684" + "797" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1713,26 +1713,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0083d7-0000-3300-0000-5d27c60e0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.0\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"140067ab-0000-3300-0000-5f172aa20000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.0\"\r\n }\r\n ]\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab5cf38f-4264-427f-9a5e-17f77927376e" + "e379993d-10e6-43f3-8a43-d51c26b85519" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -1743,10 +1743,10 @@ "no-cache" ], "ETag": [ - "\"1e008dd7-0000-3300-0000-5d27c60e0000\"" + "\"14006aab-0000-3300-0000-5f172aa30000\"" ], "x-ms-request-id": [ - "42a01a00-ec2c-47fd-91e2-7f1e0d6f7ba0" + "f39f6d4f-5230-4b5d-b0e4-1b6880a1c25a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1761,22 +1761,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11976" ], "x-ms-correlation-request-id": [ - "3df37f22-0bff-4256-b53a-f7c1cc969001" + "fc093afb-f28c-4725-b1bc-4725e62af7c3" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232814Z:3df37f22-0bff-4256-b53a-f7c1cc969001" + "WESTUS2:20200721T174923Z:fc093afb-f28c-4725-b1bc-4725e62af7c3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:14 GMT" + "Tue, 21 Jul 2020 17:49:22 GMT" ], "Content-Length": [ - "707" + "820" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1785,26 +1785,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e008dd7-0000-3300-0000-5d27c60e0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.0\"\r\n },\r\n {\r\n \"value\": \"16.17.18.1\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"14006aab-0000-3300-0000-5f172aa30000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.0\"\r\n },\r\n {\r\n \"value\": \"16.17.18.1\"\r\n }\r\n ]\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c3614a8-b705-4bbe-9d12-ca6ed23344cb" + "42eae8a5-ba50-489d-9fed-3759f593e411" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -1815,10 +1815,10 @@ "no-cache" ], "ETag": [ - "\"1e008dd7-0000-3300-0000-5d27c60e0000\"" + "\"14006aab-0000-3300-0000-5f172aa30000\"" ], "x-ms-request-id": [ - "5acbe22f-f69e-4f17-a64d-397f21013fce" + "1ed035f6-95a6-4daa-9f43-fa0d788c7da3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1833,22 +1833,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11975" ], "x-ms-correlation-request-id": [ - "12ef1707-ee72-4c49-b85d-cf46678f1f53" + "134409d0-cc86-48a1-882e-fb5a96ca9936" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232814Z:12ef1707-ee72-4c49-b85d-cf46678f1f53" + "WESTUS2:20200721T174923Z:134409d0-cc86-48a1-882e-fb5a96ca9936" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:14 GMT" + "Tue, 21 Jul 2020 17:49:22 GMT" ], "Content-Length": [ - "707" + "820" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1857,26 +1857,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e008dd7-0000-3300-0000-5d27c60e0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.0\"\r\n },\r\n {\r\n \"value\": \"16.17.18.1\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"14006aab-0000-3300-0000-5f172aa30000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.0\"\r\n },\r\n {\r\n \"value\": \"16.17.18.1\"\r\n }\r\n ]\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8cfe8699-0c6d-4776-9ec1-a7e3297cec0c" + "4347e255-b194-493f-a52f-1bcde9f0e5e0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -1887,10 +1887,10 @@ "no-cache" ], "ETag": [ - "\"1e008dd7-0000-3300-0000-5d27c60e0000\"" + "\"14006aab-0000-3300-0000-5f172aa30000\"" ], "x-ms-request-id": [ - "6a0c19d3-b63d-40a4-a866-56a67bba1067" + "8c1b5caf-306f-4733-9ad5-837a35e18a4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1905,22 +1905,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11974" ], "x-ms-correlation-request-id": [ - "87db0287-807b-4477-bb1a-8585ff0c991f" + "03a749cd-cdcf-42df-8308-4c87d4dadf4a" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232814Z:87db0287-807b-4477-bb1a-8585ff0c991f" + "WESTUS2:20200721T174923Z:03a749cd-cdcf-42df-8308-4c87d4dadf4a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:14 GMT" + "Tue, 21 Jul 2020 17:49:23 GMT" ], "Content-Length": [ - "707" + "820" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1929,26 +1929,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e008dd7-0000-3300-0000-5d27c60e0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.0\"\r\n },\r\n {\r\n \"value\": \"16.17.18.1\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"14006aab-0000-3300-0000-5f172aa30000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.0\"\r\n },\r\n {\r\n \"value\": \"16.17.18.1\"\r\n }\r\n ]\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dfabc3bc-9eb4-40d8-b5cc-6b65eb2e65fc" + "859d2ddd-8b04-4fb0-a9ed-d57f03b420de" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -1959,10 +1959,10 @@ "no-cache" ], "ETag": [ - "\"1e0092d7-0000-3300-0000-5d27c60f0000\"" + "\"14006fab-0000-3300-0000-5f172aa40000\"" ], "x-ms-request-id": [ - "84ab3057-1197-4f00-8871-aadde708e667" + "6c33dedc-e7d0-4288-94f4-d6fcbfb5b8e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1977,22 +1977,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11973" ], "x-ms-correlation-request-id": [ - "1e901476-8435-46cd-9450-72d38962ec76" + "45283b75-3830-4828-82a3-070ca3430d03" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232815Z:1e901476-8435-46cd-9450-72d38962ec76" + "WESTUS2:20200721T174924Z:45283b75-3830-4828-82a3-070ca3430d03" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:14 GMT" + "Tue, 21 Jul 2020 17:49:23 GMT" ], "Content-Length": [ - "684" + "797" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2001,26 +2001,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0092d7-0000-3300-0000-5d27c60f0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.1\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"14006fab-0000-3300-0000-5f172aa40000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.1\"\r\n }\r\n ]\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5cfcf58-14da-47f2-be12-72720f614518" + "cb47cb98-1b9d-4263-b80f-819c128318a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -2031,10 +2031,10 @@ "no-cache" ], "ETag": [ - "\"1e0092d7-0000-3300-0000-5d27c60f0000\"" + "\"14006fab-0000-3300-0000-5f172aa40000\"" ], "x-ms-request-id": [ - "07c4c927-6172-4b21-bd84-7f756940911c" + "e5087625-13d4-4369-9492-9721f4e57ed4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2049,22 +2049,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11972" ], "x-ms-correlation-request-id": [ - "7a367ad0-ab6f-4692-a904-f9a9e06f394d" + "afbd4b6e-3d47-4a5c-ace0-e4e3b733f597" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232815Z:7a367ad0-ab6f-4692-a904-f9a9e06f394d" + "WESTUS2:20200721T174924Z:afbd4b6e-3d47-4a5c-ace0-e4e3b733f597" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:15 GMT" + "Tue, 21 Jul 2020 17:49:23 GMT" ], "Content-Length": [ - "684" + "797" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2073,26 +2073,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0092d7-0000-3300-0000-5d27c60f0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.1\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"14006fab-0000-3300-0000-5f172aa40000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.1\"\r\n }\r\n ]\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bfe2f431-dc5e-4855-a92b-a2ed3e3a8aba" + "05fba1ed-c20b-486f-b435-df7144095e23" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -2103,10 +2103,10 @@ "no-cache" ], "ETag": [ - "\"1e0092d7-0000-3300-0000-5d27c60f0000\"" + "\"14006fab-0000-3300-0000-5f172aa40000\"" ], "x-ms-request-id": [ - "3c34eca0-0187-41a9-9bfb-cc1205174237" + "99fcfba9-f258-496a-8b7d-b757e31058ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2121,22 +2121,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11971" ], "x-ms-correlation-request-id": [ - "79ff11b7-c69d-4dd7-9dfa-02e969542b47" + "90834fd1-d454-43a2-81b1-4cbb3a28db9a" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232815Z:79ff11b7-c69d-4dd7-9dfa-02e969542b47" + "WESTUS2:20200721T174924Z:90834fd1-d454-43a2-81b1-4cbb3a28db9a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:15 GMT" + "Tue, 21 Jul 2020 17:49:23 GMT" ], "Content-Length": [ - "684" + "797" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2145,26 +2145,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0092d7-0000-3300-0000-5d27c60f0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.1\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"14006fab-0000-3300-0000-5f172aa40000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.1\"\r\n }\r\n ]\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5bf6e6a-febd-4e6f-99fc-c849d2abcdab" + "f21dc220-df71-4fc6-8691-a422dc114d93" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -2175,10 +2175,10 @@ "no-cache" ], "ETag": [ - "\"1e0095d7-0000-3300-0000-5d27c60f0000\"" + "\"140072ab-0000-3300-0000-5f172aa50000\"" ], "x-ms-request-id": [ - "073cb181-5192-478e-acc3-bdf37a22d331" + "9f54eeda-a92c-4bdb-b5f4-80c51b7f35cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2193,22 +2193,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11970" ], "x-ms-correlation-request-id": [ - "d66b07a9-fd6e-4f95-bc38-77ca84e9e1bc" + "cb9e690a-8a96-497b-8b35-ea30633db47f" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232816Z:d66b07a9-fd6e-4f95-bc38-77ca84e9e1bc" + "WESTUS2:20200721T174925Z:cb9e690a-8a96-497b-8b35-ea30633db47f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:15 GMT" + "Tue, 21 Jul 2020 17:49:24 GMT" ], "Content-Length": [ - "662" + "775" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2217,26 +2217,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0095d7-0000-3300-0000-5d27c60f0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"140072ab-0000-3300-0000-5f172aa50000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6162b088-7f80-4a7d-a75a-692e71ee8bfc" + "ddb8078b-4593-4b86-bc98-bc651a67f8cb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -2247,10 +2247,10 @@ "no-cache" ], "ETag": [ - "\"1e0095d7-0000-3300-0000-5d27c60f0000\"" + "\"140072ab-0000-3300-0000-5f172aa50000\"" ], "x-ms-request-id": [ - "c95ac151-067c-4770-be74-e5a8fdda4f5b" + "5ea89600-8656-436d-a98d-08bcce759353" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2265,22 +2265,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11969" ], "x-ms-correlation-request-id": [ - "c83a8033-75a2-4e94-91bd-4d255120a6df" + "81830d94-75fb-45b0-95f6-d700084d5025" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232816Z:c83a8033-75a2-4e94-91bd-4d255120a6df" + "WESTUS2:20200721T174925Z:81830d94-75fb-45b0-95f6-d700084d5025" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:15 GMT" + "Tue, 21 Jul 2020 17:49:24 GMT" ], "Content-Length": [ - "662" + "775" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2289,26 +2289,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0095d7-0000-3300-0000-5d27c60f0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"140072ab-0000-3300-0000-5f172aa50000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6666ea53-a138-422b-8dbe-ec68671adbdb" + "1b7d7bec-45ce-43c4-a261-bcb9adf34fce" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -2319,10 +2319,10 @@ "no-cache" ], "ETag": [ - "\"1e0095d7-0000-3300-0000-5d27c60f0000\"" + "\"140072ab-0000-3300-0000-5f172aa50000\"" ], "x-ms-request-id": [ - "d5a6c70f-d163-4c86-b8de-a3ab69b073e1" + "faef4476-8d14-4790-870f-b0fce2665450" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2337,22 +2337,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11968" ], "x-ms-correlation-request-id": [ - "1512eb3a-fcfb-475f-95bf-599d684d6f4e" + "e404b15e-cee0-48e1-8197-629ae1930bfe" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232816Z:1512eb3a-fcfb-475f-95bf-599d684d6f4e" + "WESTUS2:20200721T174925Z:e404b15e-cee0-48e1-8197-629ae1930bfe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:15 GMT" + "Tue, 21 Jul 2020 17:49:24 GMT" ], "Content-Length": [ - "662" + "775" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2361,26 +2361,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0095d7-0000-3300-0000-5d27c60f0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"140072ab-0000-3300-0000-5f172aa50000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "deab5f37-88b0-4521-9e34-adca0ba0122e" + "4515bbeb-e69e-4f62-a740-7ba392fcb5f1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -2391,10 +2391,10 @@ "no-cache" ], "ETag": [ - "\"1e00a2d7-0000-3300-0000-5d27c6120000\"" + "\"140078ab-0000-3300-0000-5f172aa60000\"" ], "x-ms-request-id": [ - "d4c1f8d6-4454-4eab-9daf-46511cefc128" + "619c0d0b-f26e-418e-ae4a-4e7fe8a08030" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2409,22 +2409,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11967" ], "x-ms-correlation-request-id": [ - "4f3f695e-8a57-463c-875b-114d84047791" + "ecca51ec-3ae5-4be3-97c1-0e2217ab09a7" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232818Z:4f3f695e-8a57-463c-875b-114d84047791" + "WESTUS2:20200721T174927Z:ecca51ec-3ae5-4be3-97c1-0e2217ab09a7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:18 GMT" + "Tue, 21 Jul 2020 17:49:26 GMT" ], "Content-Length": [ - "1114" + "1231" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2433,26 +2433,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e00a2d7-0000-3300-0000-5d27c6120000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Allow\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"200.0.0.0\"\r\n },\r\n {\r\n \"value\": \"28.2.0.0/16\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"140078ab-0000-3300-0000-5f172aa60000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Allow\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"200.0.0.0\"\r\n },\r\n {\r\n \"value\": \"28.2.0.0/16\"\r\n }\r\n ]\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a8fe5921-4315-4663-8143-6e682d0b3214" + "31287490-6cda-40c0-afae-683ba11f1570" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ] }, "ResponseHeaders": { @@ -2463,10 +2463,10 @@ "no-cache" ], "ETag": [ - "\"1e00a2d7-0000-3300-0000-5d27c6120000\"" + "\"140078ab-0000-3300-0000-5f172aa60000\"" ], "x-ms-request-id": [ - "696f8b08-1ac5-4c93-a716-10d509dcf235" + "760f9c98-2399-45a0-b987-bc151a9dc37d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2481,22 +2481,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11966" ], "x-ms-correlation-request-id": [ - "fd43e686-4215-4d18-b3f0-48558a778cde" + "19bbf8e2-7e44-4059-a8b2-14dd7ba7064a" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232818Z:fd43e686-4215-4d18-b3f0-48558a778cde" + "WESTUS2:20200721T174927Z:19bbf8e2-7e44-4059-a8b2-14dd7ba7064a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:18 GMT" + "Tue, 21 Jul 2020 17:49:26 GMT" ], "Content-Length": [ - "1114" + "1231" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2505,26 +2505,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e00a2d7-0000-3300-0000-5d27c6120000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Allow\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"200.0.0.0\"\r\n },\r\n {\r\n \"value\": \"28.2.0.0/16\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"140078ab-0000-3300-0000-5f172aa60000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Allow\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"200.0.0.0\"\r\n },\r\n {\r\n \"value\": \"28.2.0.0/16\"\r\n }\r\n ]\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138?api-version=2018-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm5ldHBzdGVzdHJnMTM4P2FwaS12ZXJzaW9uPTIwMTgtMTItMDE=", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzI4NTM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "86da7d58-e42e-4f7c-8c02-c6da15974ec7" + "7dd16122-4b33-4f06-ac93-3a55848b55e2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -2538,13 +2538,13 @@ "gateway" ], "x-ms-request-id": [ - "e1337946-9b3b-4fec-a795-2fdf893ed33f" + "f6360905-b5ca-49c8-be25-8e11aae09bbb" ], "x-ms-correlation-request-id": [ - "e1337946-9b3b-4fec-a795-2fdf893ed33f" + "f6360905-b5ca-49c8-be25-8e11aae09bbb" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232723Z:e1337946-9b3b-4fec-a795-2fdf893ed33f" + "WESTUS2:20200721T174834Z:f6360905-b5ca-49c8-be25-8e11aae09bbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2553,7 +2553,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:23 GMT" + "Tue, 21 Jul 2020 17:48:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2562,23 +2562,23 @@ "-1" ], "Content-Length": [ - "164" + "234" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetpstestrg138' under resource group 'pstestrg138' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetpstestrg2853' under resource group 'pstestrg2853' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138?api-version=2018-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm5ldHBzdGVzdHJnMTM4P2FwaS12ZXJzaW9uPTIwMTgtMTItMDE=", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzI4NTM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -2589,13 +2589,16 @@ "no-cache" ], "ETag": [ - "W/\"4e47a10e-6945-4078-9eb1-ed665485a2af\"" + "W/\"50db6d55-7736-4bad-9a1d-d27dcf41f7cf\"" ], "x-ms-request-id": [ - "3c036406-9ef6-4b7c-afec-2d0e16a7feae" + "bf31c4c4-d318-4224-b77c-2b9692e4d35f" ], "x-ms-correlation-request-id": [ - "25380694-4038-4160-ae72-96b3b19e3de9" + "80aaf1a2-3ab7-4718-95f4-5e01267addd3" + ], + "x-ms-arm-service-request-id": [ + "a00acbb7-039f-4247-80c7-91560f131c03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2605,19 +2608,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232729Z:25380694-4038-4160-ae72-96b3b19e3de9" + "WESTUS2:20200721T174842Z:80aaf1a2-3ab7-4718-95f4-5e01267addd3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:29 GMT" + "Tue, 21 Jul 2020 17:48:41 GMT" ], "Content-Length": [ - "1733" + "1970" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2626,26 +2629,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg138\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138\",\r\n \"etag\": \"W/\\\"4e47a10e-6945-4078-9eb1-ed665485a2af\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c40e1248-9f2e-4c9a-902a-6945fb91f7eb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/default\",\r\n \"etag\": \"W/\\\"4e47a10e-6945-4078-9eb1-ed665485a2af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"200.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"subnet\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/subnet\",\r\n \"etag\": \"W/\\\"4e47a10e-6945-4078-9eb1-ed665485a2af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"200.0.1.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}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg2853\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853\",\r\n \"etag\": \"W/\\\"50db6d55-7736-4bad-9a1d-d27dcf41f7cf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8e5f3372-4d77-4244-9bfc-27f29b17e3eb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/default\",\r\n \"etag\": \"W/\\\"50db6d55-7736-4bad-9a1d-d27dcf41f7cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"200.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"subnet\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/subnet\",\r\n \"etag\": \"W/\\\"50db6d55-7736-4bad-9a1d-d27dcf41f7cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"200.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138?api-version=2018-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm5ldHBzdGVzdHJnMTM4P2FwaS12ZXJzaW9uPTIwMTgtMTItMDE=", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzI4NTM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "893025dc-865c-401c-91de-ee9c7bd46a27" + "4602ea06-c0b8-40c4-80a6-f50c6634efe5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -2656,13 +2659,16 @@ "no-cache" ], "ETag": [ - "W/\"4e47a10e-6945-4078-9eb1-ed665485a2af\"" + "W/\"50db6d55-7736-4bad-9a1d-d27dcf41f7cf\"" ], "x-ms-request-id": [ - "36ce96bf-763a-44f8-baa2-d6feb20948df" + "cd3a9fb8-6b34-45dc-bdb1-cd71612afa37" ], "x-ms-correlation-request-id": [ - "1851a2c7-1596-491b-96ff-d7c5e9b683cf" + "13147079-ea47-47fe-b816-e4ead3f50013" + ], + "x-ms-arm-service-request-id": [ + "a6b7b631-83bd-4f80-bb3d-88eced2dd047" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2672,19 +2678,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232729Z:1851a2c7-1596-491b-96ff-d7c5e9b683cf" + "WESTUS2:20200721T174842Z:13147079-ea47-47fe-b816-e4ead3f50013" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:29 GMT" + "Tue, 21 Jul 2020 17:48:41 GMT" ], "Content-Length": [ - "1733" + "1970" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2693,26 +2699,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg138\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138\",\r\n \"etag\": \"W/\\\"4e47a10e-6945-4078-9eb1-ed665485a2af\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c40e1248-9f2e-4c9a-902a-6945fb91f7eb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/default\",\r\n \"etag\": \"W/\\\"4e47a10e-6945-4078-9eb1-ed665485a2af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"200.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"subnet\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/subnet\",\r\n \"etag\": \"W/\\\"4e47a10e-6945-4078-9eb1-ed665485a2af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"200.0.1.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}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg2853\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853\",\r\n \"etag\": \"W/\\\"50db6d55-7736-4bad-9a1d-d27dcf41f7cf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8e5f3372-4d77-4244-9bfc-27f29b17e3eb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/default\",\r\n \"etag\": \"W/\\\"50db6d55-7736-4bad-9a1d-d27dcf41f7cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"200.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"subnet\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/subnet\",\r\n \"etag\": \"W/\\\"50db6d55-7736-4bad-9a1d-d27dcf41f7cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"200.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138?api-version=2018-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm5ldHBzdGVzdHJnMTM4P2FwaS12ZXJzaW9uPTIwMTgtMTItMDE=", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzI4NTM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17d5d959-d521-4003-8ef4-83ffb1860637" + "d0f4d162-34d7-4ea0-be5b-c7e077798a99" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -2723,13 +2729,16 @@ "no-cache" ], "ETag": [ - "W/\"4e47a10e-6945-4078-9eb1-ed665485a2af\"" + "W/\"50db6d55-7736-4bad-9a1d-d27dcf41f7cf\"" ], "x-ms-request-id": [ - "e45e30fe-472f-42e7-b701-68ff17c3fdca" + "19505859-0b65-4cfa-a2ec-641956ae5d6c" ], "x-ms-correlation-request-id": [ - "ac5c107f-62cd-4b04-b016-e48d1e22d10e" + "2a8b34dd-cf37-4d04-9b84-57ff412ff40a" + ], + "x-ms-arm-service-request-id": [ + "195120be-830b-44af-bb09-b1fd753a85b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2739,19 +2748,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232729Z:ac5c107f-62cd-4b04-b016-e48d1e22d10e" + "WESTUS2:20200721T174843Z:2a8b34dd-cf37-4d04-9b84-57ff412ff40a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:29 GMT" + "Tue, 21 Jul 2020 17:48:42 GMT" ], "Content-Length": [ - "1733" + "1970" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2760,32 +2769,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg138\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138\",\r\n \"etag\": \"W/\\\"4e47a10e-6945-4078-9eb1-ed665485a2af\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c40e1248-9f2e-4c9a-902a-6945fb91f7eb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/default\",\r\n \"etag\": \"W/\\\"4e47a10e-6945-4078-9eb1-ed665485a2af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"200.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"subnet\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/subnet\",\r\n \"etag\": \"W/\\\"4e47a10e-6945-4078-9eb1-ed665485a2af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"200.0.1.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}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg2853\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853\",\r\n \"etag\": \"W/\\\"50db6d55-7736-4bad-9a1d-d27dcf41f7cf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8e5f3372-4d77-4244-9bfc-27f29b17e3eb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/default\",\r\n \"etag\": \"W/\\\"50db6d55-7736-4bad-9a1d-d27dcf41f7cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"200.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"subnet\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/subnet\",\r\n \"etag\": \"W/\\\"50db6d55-7736-4bad-9a1d-d27dcf41f7cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"200.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138?api-version=2018-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm5ldHBzdGVzdHJnMTM4P2FwaS12ZXJzaW9uPTIwMTgtMTItMDE=", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzI4NTM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"200.0.0.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\": \"default\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"200.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 \"name\": \"subnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"200.0.0.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"200.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"subnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "599659ad-ae70-49ac-ab19-aecd395180c5" + "80e5d33f-4fa3-49c8-b304-c0b2d3397484" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "948" + "1100" ] }, "ResponseHeaders": { @@ -2799,13 +2808,19 @@ "3" ], "x-ms-request-id": [ - "4cbd5f2a-6bc5-4103-9b16-d1a66d41aed5" + "49d5ea4f-be54-4453-9015-806f5b2c9657" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/providers/Microsoft.Network/locations/centraluseuap/operations/4cbd5f2a-6bc5-4103-9b16-d1a66d41aed5?api-version=2018-12-01" + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/providers/Microsoft.Network/locations/centraluseuap/operations/49d5ea4f-be54-4453-9015-806f5b2c9657?api-version=2020-05-01" ], "x-ms-correlation-request-id": [ - "4e6b3d95-ee41-4e0a-a003-c380642f7f50" + "3c5b71c2-6a2a-432f-a1d1-d55b264c9619" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "f60e30f9-a65c-4200-9ba9-422d77f94731" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2818,16 +2833,16 @@ "1199" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232725Z:4e6b3d95-ee41-4e0a-a003-c380642f7f50" + "WESTUS2:20200721T174839Z:3c5b71c2-6a2a-432f-a1d1-d55b264c9619" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:25 GMT" + "Tue, 21 Jul 2020 17:48:38 GMT" ], "Content-Length": [ - "1730" + "1967" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2836,20 +2851,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vnetpstestrg138\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138\",\r\n \"etag\": \"W/\\\"e92cff8a-c66d-4f60-a28e-33869caa785f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c40e1248-9f2e-4c9a-902a-6945fb91f7eb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/default\",\r\n \"etag\": \"W/\\\"e92cff8a-c66d-4f60-a28e-33869caa785f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"200.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"subnet\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/subnet\",\r\n \"etag\": \"W/\\\"e92cff8a-c66d-4f60-a28e-33869caa785f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"200.0.1.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}", + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg2853\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853\",\r\n \"etag\": \"W/\\\"3a8883f0-3787-4732-a64b-09fa79f1d7be\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8e5f3372-4d77-4244-9bfc-27f29b17e3eb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/default\",\r\n \"etag\": \"W/\\\"3a8883f0-3787-4732-a64b-09fa79f1d7be\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"200.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"subnet\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/subnet\",\r\n \"etag\": \"W/\\\"3a8883f0-3787-4732-a64b-09fa79f1d7be\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"200.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\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}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/providers/Microsoft.Network/locations/centraluseuap/operations/4cbd5f2a-6bc5-4103-9b16-d1a66d41aed5?api-version=2018-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzRjYmQ1ZjJhLTZiYzUtNDEwMy05YjE2LWQxYTY2ZDQxYWVkNT9hcGktdmVyc2lvbj0yMDE4LTEyLTAx", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/providers/Microsoft.Network/locations/centraluseuap/operations/49d5ea4f-be54-4453-9015-806f5b2c9657?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzQ5ZDVlYTRmLWJlNTQtNDQ1My05MDE1LTgwNmY1YjJjOTY1Nz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.10.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -2860,10 +2875,13 @@ "no-cache" ], "x-ms-request-id": [ - "2d294ca4-870d-456d-b698-8e29c44d2cda" + "8b8ef741-f50b-4344-ac38-4d206a0957af" ], "x-ms-correlation-request-id": [ - "b8b581b4-3904-449b-a25e-ab5742611837" + "c80636ba-3e5b-42e5-a495-512ef88dada9" + ], + "x-ms-arm-service-request-id": [ + "a3820af0-40b5-41f5-aed9-a4ad6ebc24db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2873,16 +2891,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232729Z:b8b581b4-3904-449b-a25e-ab5742611837" + "WESTUS2:20200721T174842Z:c80636ba-3e5b-42e5-a495-512ef88dada9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:28 GMT" + "Tue, 21 Jul 2020 17:48:41 GMT" ], "Content-Length": [ "29" @@ -2898,28 +2916,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": null,\r\n \"defaultAction\": \"Deny\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c7730315-0c03-487b-b50d-928aa7a1485d" + "57295d5b-eba0-4c03-a4f2-ccc73f07a553" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "167" + "144" ] }, "ResponseHeaders": { @@ -2930,10 +2948,10 @@ "no-cache" ], "ETag": [ - "\"1e0080d6-0000-3300-0000-5d27c5e20000\"" + "\"1400e5aa-0000-3300-0000-5f172a7c0000\"" ], "x-ms-request-id": [ - "c38ffddf-450d-467c-8870-d046a0e33fb1" + "8fa3d2c5-54a8-495d-8595-2ba1633805cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2948,22 +2966,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "fb8117b3-4086-4f55-973b-fcbf0cae2fd4" + "97b35c2f-3b30-4cdb-9bef-ee5d0b7d3b2c" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232730Z:fb8117b3-4086-4f55-973b-fcbf0cae2fd4" + "WESTUS2:20200721T174844Z:97b35c2f-3b30-4cdb-9bef-ee5d0b7d3b2c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:30 GMT" + "Tue, 21 Jul 2020 17:48:44 GMT" ], "Content-Length": [ - "662" + "775" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2972,32 +2990,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0080d6-0000-3300-0000-5d27c5e20000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1400e5aa-0000-3300-0000-5f172a7c0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": null,\r\n \"defaultAction\": \"Deny\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/default\",\r\n \"state\": null,\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b2ab7a41-1400-4722-ae9e-7400d60d9bff" + "5b1f68a6-ffd2-41b0-8223-63f2c209f541" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "450" + "403" ] }, "ResponseHeaders": { @@ -3008,10 +3026,10 @@ "no-cache" ], "ETag": [ - "\"1e00f7d6-0000-3300-0000-5d27c5f00000\"" + "\"140023ab-0000-3300-0000-5f172a880000\"" ], "x-ms-request-id": [ - "ae01af7e-8084-41db-865e-f725c35f8a39" + "5e6f75d4-0eba-4b9c-8f93-95b29b8f443a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3026,22 +3044,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "ab0163e4-aeae-4aa0-9a8d-98f9b15a32d4" + "657a29a0-4624-4b35-8dca-1f5b461216bd" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232744Z:ab0163e4-aeae-4aa0-9a8d-98f9b15a32d4" + "WESTUS2:20200721T174856Z:657a29a0-4624-4b35-8dca-1f5b461216bd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:44 GMT" + "Tue, 21 Jul 2020 17:48:56 GMT" ], "Content-Length": [ - "865" + "980" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3050,32 +3068,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e00f7d6-0000-3300-0000-5d27c5f00000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"140023ab-0000-3300-0000-5f172a880000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": null,\r\n \"defaultAction\": \"Deny\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/default\",\r\n \"state\": null,\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/subnet\",\r\n \"state\": null,\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f7746f31-a236-4bd8-b306-0a081fc4696c" + "570bdcf6-9245-40f9-9da1-b4a26174f706" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "725" + "654" ] }, "ResponseHeaders": { @@ -3086,10 +3104,10 @@ "no-cache" ], "ETag": [ - "\"1e0036d7-0000-3300-0000-5d27c5fd0000\"" + "\"14003cab-0000-3300-0000-5f172a940000\"" ], "x-ms-request-id": [ - "f1604061-217c-409a-bf1c-a5d8c1ec7448" + "8f3c9294-5085-4516-a1f3-6855ab610a1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3104,22 +3122,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-correlation-request-id": [ - "73b65888-adf3-496f-b681-572776956292" + "9190139d-b227-4efa-8cc0-e7ce8b4b3c8c" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232757Z:73b65888-adf3-496f-b681-572776956292" + "WESTUS2:20200721T174908Z:9190139d-b227-4efa-8cc0-e7ce8b4b3c8c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:27:57 GMT" + "Tue, 21 Jul 2020 17:49:07 GMT" ], "Content-Length": [ - "1068" + "1185" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3128,32 +3146,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0036d7-0000-3300-0000-5d27c5fd0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"14003cab-0000-3300-0000-5f172a940000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": null,\r\n \"defaultAction\": \"Deny\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/subnet\",\r\n \"state\": null,\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c1362a3e-11f7-4e7b-8412-01169f05c297" + "b17683d5-2252-4add-841e-a69656c7ad16" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "449" + "402" ] }, "ResponseHeaders": { @@ -3164,10 +3182,10 @@ "no-cache" ], "ETag": [ - "\"1e0041d7-0000-3300-0000-5d27c6010000\"" + "\"14003fab-0000-3300-0000-5f172a950000\"" ], "x-ms-request-id": [ - "54d7d5ad-4bd5-4f92-9848-87eb91fb45cb" + "19b5fb4e-217c-4e90-b03e-3ed87d36f287" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3182,22 +3200,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-correlation-request-id": [ - "164e7386-84ec-4390-bb18-07c690e5b75d" + "13f4c553-cc85-4465-9d58-dc84493d45c4" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232801Z:164e7386-84ec-4390-bb18-07c690e5b75d" + "WESTUS2:20200721T174910Z:13f4c553-cc85-4465-9d58-dc84493d45c4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:00 GMT" + "Tue, 21 Jul 2020 17:49:09 GMT" ], "Content-Length": [ - "864" + "979" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3206,32 +3224,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0041d7-0000-3300-0000-5d27c6010000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"14003fab-0000-3300-0000-5f172a950000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": null,\r\n \"defaultAction\": \"Deny\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "36e77dd6-ff5c-4e82-b53e-83bbfe186101" + "471f5e87-4d5d-4e9a-8368-f816389ac5ec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "167" + "144" ] }, "ResponseHeaders": { @@ -3242,10 +3260,10 @@ "no-cache" ], "ETag": [ - "\"1e007fd7-0000-3300-0000-5d27c60d0000\"" + "\"14005fab-0000-3300-0000-5f172aa10000\"" ], "x-ms-request-id": [ - "46a1e049-7ce4-404a-93b8-c6eb1c2af6e9" + "ec063228-01ca-444a-add3-1f9dd3c40301" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3260,22 +3278,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1194" ], "x-ms-correlation-request-id": [ - "b7023109-f02e-4524-ac1b-65cc6f9a9ca5" + "d65a3ffc-18a5-4b42-9849-de6d3a75e602" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232813Z:b7023109-f02e-4524-ac1b-65cc6f9a9ca5" + "WESTUS2:20200721T174921Z:d65a3ffc-18a5-4b42-9849-de6d3a75e602" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:13 GMT" + "Tue, 21 Jul 2020 17:49:20 GMT" ], "Content-Length": [ - "662" + "775" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3284,32 +3302,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e007fd7-0000-3300-0000-5d27c60d0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"14005fab-0000-3300-0000-5f172aa10000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": null,\r\n \"defaultAction\": \"Deny\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.0\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.0\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ab8307ed-eecf-43f6-b6cb-40bc3c3c20eb" + "c5e4dbc4-43a9-4b16-8a7b-e44952fdcddd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "230" + "207" ] }, "ResponseHeaders": { @@ -3320,10 +3338,10 @@ "no-cache" ], "ETag": [ - "\"1e0083d7-0000-3300-0000-5d27c60e0000\"" + "\"140067ab-0000-3300-0000-5f172aa20000\"" ], "x-ms-request-id": [ - "ac415f09-b67c-4ae7-9960-25140fa91c8c" + "ab9b5c23-75d0-4e0b-aacd-7e2ecd5eb876" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3338,22 +3356,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1193" ], "x-ms-correlation-request-id": [ - "4dbe7e53-423a-44ec-9549-bd8723e75115" + "7321e65b-b2d2-4348-8b22-c3c38dcc330f" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232814Z:4dbe7e53-423a-44ec-9549-bd8723e75115" + "WESTUS2:20200721T174922Z:7321e65b-b2d2-4348-8b22-c3c38dcc330f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:13 GMT" + "Tue, 21 Jul 2020 17:49:21 GMT" ], "Content-Length": [ - "684" + "797" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3362,32 +3380,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0083d7-0000-3300-0000-5d27c60e0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.0\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"140067ab-0000-3300-0000-5f172aa20000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.0\"\r\n }\r\n ]\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": null,\r\n \"defaultAction\": \"Deny\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.0\"\r\n },\r\n {\r\n \"value\": \"16.17.18.1\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.0\"\r\n },\r\n {\r\n \"value\": \"16.17.18.1\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d74997ad-7460-4231-9b96-707a6d5d96b1" + "4838919b-ea78-41d7-b7ee-925c7138b8d4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "286" + "263" ] }, "ResponseHeaders": { @@ -3398,10 +3416,10 @@ "no-cache" ], "ETag": [ - "\"1e008dd7-0000-3300-0000-5d27c60e0000\"" + "\"14006aab-0000-3300-0000-5f172aa30000\"" ], "x-ms-request-id": [ - "a5e6f241-fcca-4327-bf5d-c6db0cffb473" + "4b3b6d11-6b90-4d37-9a96-8ad4fa80e6e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3416,22 +3434,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1192" ], "x-ms-correlation-request-id": [ - "c7115971-3583-40b7-9848-30e8b15c698e" + "2126d6d9-c35e-4b48-a017-f678921ec614" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232814Z:c7115971-3583-40b7-9848-30e8b15c698e" + "WESTUS2:20200721T174923Z:2126d6d9-c35e-4b48-a017-f678921ec614" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:14 GMT" + "Tue, 21 Jul 2020 17:49:22 GMT" ], "Content-Length": [ - "707" + "820" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3440,32 +3458,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e008dd7-0000-3300-0000-5d27c60e0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.0\"\r\n },\r\n {\r\n \"value\": \"16.17.18.1\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"14006aab-0000-3300-0000-5f172aa30000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.0\"\r\n },\r\n {\r\n \"value\": \"16.17.18.1\"\r\n }\r\n ]\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": null,\r\n \"defaultAction\": \"Deny\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.1\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.1\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2e9b1826-5ce7-439d-a68d-8bca90948666" + "4388c75a-ffb3-48f5-b60d-93431df5a6f2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "230" + "207" ] }, "ResponseHeaders": { @@ -3476,10 +3494,10 @@ "no-cache" ], "ETag": [ - "\"1e0092d7-0000-3300-0000-5d27c60f0000\"" + "\"14006fab-0000-3300-0000-5f172aa40000\"" ], "x-ms-request-id": [ - "ed50f2c4-ceef-43d3-83a4-fa94842f115f" + "253803b0-7d93-499e-8853-2857828fcace" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3494,22 +3512,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1191" ], "x-ms-correlation-request-id": [ - "c75e4f64-3450-4eef-bfc5-7dff76b434e6" + "eca3f05d-21b3-4373-926a-b664e570310e" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232815Z:c75e4f64-3450-4eef-bfc5-7dff76b434e6" + "WESTUS2:20200721T174924Z:eca3f05d-21b3-4373-926a-b664e570310e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:14 GMT" + "Tue, 21 Jul 2020 17:49:23 GMT" ], "Content-Length": [ - "684" + "797" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3518,32 +3536,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0092d7-0000-3300-0000-5d27c60f0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.1\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"14006fab-0000-3300-0000-5f172aa40000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"16.17.18.1\"\r\n }\r\n ]\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": null,\r\n \"defaultAction\": \"Deny\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fafab686-d9b3-491f-9adb-e32196255e3c" + "7b9aa3a9-3d71-40de-b899-e0d96b76f58b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "167" + "144" ] }, "ResponseHeaders": { @@ -3554,10 +3572,10 @@ "no-cache" ], "ETag": [ - "\"1e0095d7-0000-3300-0000-5d27c60f0000\"" + "\"140072ab-0000-3300-0000-5f172aa50000\"" ], "x-ms-request-id": [ - "a3862460-d209-449c-b45b-d75e56960d03" + "bbc0721a-fe75-41c3-9b6b-83cb58b053dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3572,22 +3590,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1190" ], "x-ms-correlation-request-id": [ - "4f4029d8-258b-4906-8ebb-02943a631d46" + "6c15f2e6-112c-4d54-95ae-28346b1b9c1c" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232815Z:4f4029d8-258b-4906-8ebb-02943a631d46" + "WESTUS2:20200721T174925Z:6c15f2e6-112c-4d54-95ae-28346b1b9c1c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:15 GMT" + "Tue, 21 Jul 2020 17:49:24 GMT" ], "Content-Length": [ - "662" + "775" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3596,32 +3614,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e0095d7-0000-3300-0000-5d27c60f0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"140072ab-0000-3300-0000-5f172aa50000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138?api-version=2017-04-18", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXMvYWNjb3VudHMvY3NhcHN0ZXN0cmcxMzg/YXBpLXZlcnNpb249MjAxNy0wNC0xOA==", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjg1My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": null,\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"200.0.0.0\"\r\n },\r\n {\r\n \"value\": \"28.2.0.0/16\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/default\",\r\n \"state\": null,\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/subnet\",\r\n \"state\": null,\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"200.0.0.0\"\r\n },\r\n {\r\n \"value\": \"28.2.0.0/16\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dfe11eb8-dc06-4f95-91ea-2bd1915b1b1a" + "89f0bf73-fb0f-493c-b98d-c1e56ebefec9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/6.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "845" + "774" ] }, "ResponseHeaders": { @@ -3632,10 +3650,10 @@ "no-cache" ], "ETag": [ - "\"1e00a2d7-0000-3300-0000-5d27c6120000\"" + "\"140078ab-0000-3300-0000-5f172aa60000\"" ], "x-ms-request-id": [ - "f0c1ae40-e944-47f4-b72b-670b7b5001b6" + "faae23d5-1986-4399-9e39-be355342a3d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3650,22 +3668,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1189" ], "x-ms-correlation-request-id": [ - "11c8d503-df3e-4b0c-bcaf-a31f93d6d0eb" + "6ff25468-2ca7-43dc-8102-16b6f21faae3" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232818Z:11c8d503-df3e-4b0c-bcaf-a31f93d6d0eb" + "WESTUS2:20200721T174926Z:6ff25468-2ca7-43dc-8102-16b6f21faae3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:18 GMT" + "Tue, 21 Jul 2020 17:49:25 GMT" ], "Content-Length": [ - "1114" + "1231" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3674,26 +3692,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.CognitiveServices/accounts/csapstestrg138\",\r\n \"name\": \"csapstestrg138\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"1e00a2d7-0000-3300-0000-5d27c6120000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg138.cognitiveservices.azure.com/face/v1.0\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"28d36b54bd394c9aa9f5e3d80084a960\",\r\n \"dateCreated\": \"2019-07-11T23:27:20.9166363Z\",\r\n \"customSubDomainName\": \"csapstestrg138\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Allow\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg138/providers/Microsoft.Network/virtualNetworks/vnetpstestrg138/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"200.0.0.0\"\r\n },\r\n {\r\n \"value\": \"28.2.0.0/16\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.CognitiveServices/accounts/csapstestrg2853\",\r\n \"name\": \"csapstestrg2853\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"140078ab-0000-3300-0000-5f172aa60000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg2853.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"25bc42a34ae94f9db525917795b75747\",\r\n \"dateCreated\": \"2020-07-21T17:48:31.4900462Z\",\r\n \"customSubDomainName\": \"csapstestrg2853\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Allow\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg2853/providers/Microsoft.Network/virtualNetworks/vnetpstestrg2853/subnets/subnet\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"200.0.0.0\"\r\n },\r\n {\r\n \"value\": \"28.2.0.0/16\"\r\n }\r\n ]\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourcegroups/pstestrg138?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourcegroups/pstestrg2853?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjg1Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d9baa7e-b417-4075-96ff-350a0e8b444b" + "83849af6-fc42-4fd6-b9ca-adbfafcfa959" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.19" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" ] }, "ResponseHeaders": { @@ -3704,7 +3722,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzOC1DRU5UUkFMVVNFVUFQIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXNldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4NTMtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3713,13 +3731,13 @@ "14999" ], "x-ms-request-id": [ - "718c4d19-0b51-4194-a61b-443acb6af026" + "33783bac-3063-4eb4-9906-d0da539c567c" ], "x-ms-correlation-request-id": [ - "718c4d19-0b51-4194-a61b-443acb6af026" + "33783bac-3063-4eb4-9906-d0da539c567c" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232820Z:718c4d19-0b51-4194-a61b-443acb6af026" + "WESTUS2:20200721T174928Z:33783bac-3063-4eb4-9906-d0da539c567c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3728,7 +3746,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:20 GMT" + "Tue, 21 Jul 2020 17:49:27 GMT" ], "Expires": [ "-1" @@ -3741,16 +3759,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzOC1DRU5UUkFMVVNFVUFQIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXNldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6T0MxRFJVNVVVa0ZNVlZORlZVRlFJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4NTMtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TlRNdFEwVk9WRkpCVEZWVFJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpaWFZoY0NKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.19" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" ] }, "ResponseHeaders": { @@ -3761,22 +3779,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzOC1DRU5UUkFMVVNFVUFQIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXNldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4NTMtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "28fd176e-0f26-4eaf-8bb5-77692480f2bd" + "c5811d0c-4bf0-461d-8dc7-33c3c04536ed" ], "x-ms-correlation-request-id": [ - "28fd176e-0f26-4eaf-8bb5-77692480f2bd" + "c5811d0c-4bf0-461d-8dc7-33c3c04536ed" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232835Z:28fd176e-0f26-4eaf-8bb5-77692480f2bd" + "WESTUS2:20200721T174943Z:c5811d0c-4bf0-461d-8dc7-33c3c04536ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3785,7 +3803,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:35 GMT" + "Tue, 21 Jul 2020 17:49:42 GMT" ], "Expires": [ "-1" @@ -3798,16 +3816,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzOC1DRU5UUkFMVVNFVUFQIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXNldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6T0MxRFJVNVVVa0ZNVlZORlZVRlFJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4NTMtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TlRNdFEwVk9WRkpCVEZWVFJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpaWFZoY0NKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.19" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" ] }, "ResponseHeaders": { @@ -3818,22 +3836,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzOC1DRU5UUkFMVVNFVUFQIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXNldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4NTMtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-request-id": [ - "16107681-2db1-4bdf-a752-ba65b5e0b2d7" + "ace79799-bdc2-4a25-9ff4-36f8fde8210a" ], "x-ms-correlation-request-id": [ - "16107681-2db1-4bdf-a752-ba65b5e0b2d7" + "ace79799-bdc2-4a25-9ff4-36f8fde8210a" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232850Z:16107681-2db1-4bdf-a752-ba65b5e0b2d7" + "WESTUS2:20200721T174958Z:ace79799-bdc2-4a25-9ff4-36f8fde8210a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3842,7 +3860,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:28:49 GMT" + "Tue, 21 Jul 2020 17:49:58 GMT" ], "Expires": [ "-1" @@ -3855,16 +3873,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzOC1DRU5UUkFMVVNFVUFQIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXNldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6T0MxRFJVNVVVa0ZNVlZORlZVRlFJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4NTMtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TlRNdFEwVk9WRkpCVEZWVFJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpaWFZoY0NKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.19" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" ] }, "ResponseHeaders": { @@ -3875,22 +3893,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzOC1DRU5UUkFMVVNFVUFQIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXNldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4NTMtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11996" ], "x-ms-request-id": [ - "bdbf142e-5d10-4a2e-b19e-0720e36b9912" + "fc135862-e012-4683-878f-68b7da7cf599" ], "x-ms-correlation-request-id": [ - "bdbf142e-5d10-4a2e-b19e-0720e36b9912" + "fc135862-e012-4683-878f-68b7da7cf599" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232905Z:bdbf142e-5d10-4a2e-b19e-0720e36b9912" + "WESTUS2:20200721T175014Z:fc135862-e012-4683-878f-68b7da7cf599" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3899,7 +3917,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:29:05 GMT" + "Tue, 21 Jul 2020 17:50:13 GMT" ], "Expires": [ "-1" @@ -3912,16 +3930,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzOC1DRU5UUkFMVVNFVUFQIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXNldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6T0MxRFJVNVVVa0ZNVlZORlZVRlFJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4NTMtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TlRNdFEwVk9WRkpCVEZWVFJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpaWFZoY0NKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.19" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" ] }, "ResponseHeaders": { @@ -3932,22 +3950,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzOC1DRU5UUkFMVVNFVUFQIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXNldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4NTMtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11995" ], "x-ms-request-id": [ - "5a40c878-9a32-436a-bc46-e34251afb097" + "be350155-2cc2-431f-920f-70f38c93d97e" ], "x-ms-correlation-request-id": [ - "5a40c878-9a32-436a-bc46-e34251afb097" + "be350155-2cc2-431f-920f-70f38c93d97e" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232920Z:5a40c878-9a32-436a-bc46-e34251afb097" + "WESTUS2:20200721T175029Z:be350155-2cc2-431f-920f-70f38c93d97e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3956,7 +3974,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:29:20 GMT" + "Tue, 21 Jul 2020 17:50:28 GMT" ], "Expires": [ "-1" @@ -3969,16 +3987,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzOC1DRU5UUkFMVVNFVUFQIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXNldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6T0MxRFJVNVVVa0ZNVlZORlZVRlFJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4NTMtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TlRNdFEwVk9WRkpCVEZWVFJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpaWFZoY0NKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.19" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" ] }, "ResponseHeaders": { @@ -3989,22 +4007,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzOC1DRU5UUkFMVVNFVUFQIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXNldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4NTMtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11994" ], "x-ms-request-id": [ - "a1f7f70d-53bd-412c-9928-2ac392acb06f" + "09bf6496-b58e-452f-8a26-671ceefe1332" ], "x-ms-correlation-request-id": [ - "a1f7f70d-53bd-412c-9928-2ac392acb06f" + "09bf6496-b58e-452f-8a26-671ceefe1332" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232936Z:a1f7f70d-53bd-412c-9928-2ac392acb06f" + "WESTUS2:20200721T175044Z:09bf6496-b58e-452f-8a26-671ceefe1332" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4013,7 +4031,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:29:35 GMT" + "Tue, 21 Jul 2020 17:50:43 GMT" ], "Expires": [ "-1" @@ -4026,16 +4044,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzOC1DRU5UUkFMVVNFVUFQIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXNldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6T0MxRFJVNVVVa0ZNVlZORlZVRlFJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4NTMtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TlRNdFEwVk9WRkpCVEZWVFJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpaWFZoY0NKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.19" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" ] }, "ResponseHeaders": { @@ -4046,22 +4064,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzOC1DRU5UUkFMVVNFVUFQIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXNldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4NTMtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11993" ], "x-ms-request-id": [ - "e2932c7d-91a0-4be0-9383-10bd5cfe82b5" + "3edcbb7b-8ebc-4560-823d-015a3a352ed3" ], "x-ms-correlation-request-id": [ - "e2932c7d-91a0-4be0-9383-10bd5cfe82b5" + "3edcbb7b-8ebc-4560-823d-015a3a352ed3" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T232951Z:e2932c7d-91a0-4be0-9383-10bd5cfe82b5" + "WESTUS2:20200721T175059Z:3edcbb7b-8ebc-4560-823d-015a3a352ed3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4070,7 +4088,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:29:50 GMT" + "Tue, 21 Jul 2020 17:50:59 GMT" ], "Expires": [ "-1" @@ -4083,16 +4101,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzOC1DRU5UUkFMVVNFVUFQIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXNldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6T0MxRFJVNVVVa0ZNVlZORlZVRlFJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4NTMtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TlRNdFEwVk9WRkpCVEZWVFJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpaWFZoY0NKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.19" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" ] }, "ResponseHeaders": { @@ -4103,16 +4121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11992" ], "x-ms-request-id": [ - "38351b26-e4bd-46b7-8b48-32b8d60cf5ed" + "88e64b8c-ab40-4fc3-ac8d-ac9255d5de30" ], "x-ms-correlation-request-id": [ - "38351b26-e4bd-46b7-8b48-32b8d60cf5ed" + "88e64b8c-ab40-4fc3-ac8d-ac9255d5de30" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T233006Z:38351b26-e4bd-46b7-8b48-32b8d60cf5ed" + "WESTUS2:20200721T175114Z:88e64b8c-ab40-4fc3-ac8d-ac9255d5de30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4121,7 +4139,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:30:06 GMT" + "Tue, 21 Jul 2020 17:51:14 GMT" ], "Expires": [ "-1" @@ -4134,16 +4152,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzEzOC1DRU5UUkFMVVNFVUFQIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXNldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekV6T0MxRFJVNVVVa0ZNVlZORlZVRlFJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTmxkV0Z3SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI4NTMtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekk0TlRNdFEwVk9WRkpCVEZWVFJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpaWFZoY0NKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28801.04", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.19" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" ] }, "ResponseHeaders": { @@ -4154,16 +4172,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11991" ], "x-ms-request-id": [ - "bfa93a97-8d67-4e28-9575-aacb658f8570" + "79d7affe-68c0-4d67-bd36-9bb7fdd26e71" ], "x-ms-correlation-request-id": [ - "bfa93a97-8d67-4e28-9575-aacb658f8570" + "79d7affe-68c0-4d67-bd36-9bb7fdd26e71" ], "x-ms-routing-request-id": [ - "WESTUS:20190711T233006Z:bfa93a97-8d67-4e28-9575-aacb658f8570" + "WESTUS2:20200721T175115Z:79d7affe-68c0-4d67-bd36-9bb7fdd26e71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4172,7 +4190,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Jul 2019 23:30:06 GMT" + "Tue, 21 Jul 2020 17:51:14 GMT" ], "Expires": [ "-1" @@ -4187,7 +4205,7 @@ ], "Names": { "Test-NetworkRuleSet": [ - "pstestrg138" + "pstestrg2853" ] }, "Variables": { diff --git a/src/CognitiveServices/CognitiveServices.Test/SessionRecords/CognitiveServices.Test.ScenarioTests.CognitiveServicesAccountTests/TestNetworkRuleSetDefaultActions.json b/src/CognitiveServices/CognitiveServices.Test/SessionRecords/CognitiveServices.Test.ScenarioTests.CognitiveServicesAccountTests/TestNetworkRuleSetDefaultActions.json new file mode 100644 index 000000000000..1da59c2f4d4f --- /dev/null +++ b/src/CognitiveServices/CognitiveServices.Test/SessionRecords/CognitiveServices.Test.ScenarioTests.CognitiveServicesAccountTests/TestNetworkRuleSetDefaultActions.json @@ -0,0 +1,1568 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/providers/Microsoft.CognitiveServices?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29nbml0aXZlU2VydmljZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ed7b33ed-7e55-420b-b955-eae3862ba1c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "835688d2-c9ae-445f-8882-44b501f163a6" + ], + "x-ms-correlation-request-id": [ + "835688d2-c9ae-445f-8882-44b501f163a6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174409Z:835688d2-c9ae-445f-8882-44b501f163a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:44:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "4737" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/privateLinkResources\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourcegroups/pstestrg3665?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzY2NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Central US EUAP\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f5418dd-bea5-4428-8090-79b67aa24ade" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "37" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "b852df6c-98f7-4ffc-bb5d-1b9fbde0949f" + ], + "x-ms-correlation-request-id": [ + "b852df6c-98f7-4ffc-bb5d-1b9fbde0949f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174411Z:b852df6c-98f7-4ffc-bb5d-1b9fbde0949f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:44:11 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665\",\r\n \"name\": \"pstestrg3665\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.CognitiveServices/accounts/csapstestrg3665?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY2NS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMzY2NT9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"kind\": \"TextAnalytics\",\r\n \"location\": \"Central US EUAP\",\r\n \"properties\": {\r\n \"customSubDomainName\": \"csapstestrg3665\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "908770f2-fc48-4c01-95ff-d3ef74fa6322" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "172" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"140018a6-0000-3300-0000-5f17296e0000\"" + ], + "x-ms-request-id": [ + "39e54b11-b6d8-4e26-83e8-bff20ebbe979" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "c852bdb2-fbbf-4c65-98ed-822a6eb76487" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174415Z:c852bdb2-fbbf-4c65-98ed-822a6eb76487" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:44:14 GMT" + ], + "Content-Length": [ + "698" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.CognitiveServices/accounts/csapstestrg3665\",\r\n \"name\": \"csapstestrg3665\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"140018a6-0000-3300-0000-5f17296e0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg3665.cognitiveservices.azure.com/\",\r\n \"internalId\": \"cf7200ead0d14940aba8da37fad83c80\",\r\n \"dateCreated\": \"2020-07-21T17:44:13.5939203Z\",\r\n \"customSubDomainName\": \"csapstestrg3665\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.CognitiveServices/accounts/csapstestrg3665?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY2NS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMzY2NT9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "857bb045-b9f2-4fd6-b504-7cb6956d57a4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"140018a6-0000-3300-0000-5f17296e0000\"" + ], + "x-ms-request-id": [ + "ade0917f-8e1e-4486-b0f7-568abd148bc1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "746e2051-2ba4-4bec-80a9-fc805ea53942" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174415Z:746e2051-2ba4-4bec-80a9-fc805ea53942" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:44:15 GMT" + ], + "Content-Length": [ + "698" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.CognitiveServices/accounts/csapstestrg3665\",\r\n \"name\": \"csapstestrg3665\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"140018a6-0000-3300-0000-5f17296e0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg3665.cognitiveservices.azure.com/\",\r\n \"internalId\": \"cf7200ead0d14940aba8da37fad83c80\",\r\n \"dateCreated\": \"2020-07-21T17:44:13.5939203Z\",\r\n \"customSubDomainName\": \"csapstestrg3665\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.CognitiveServices/accounts/csapstestrg3665?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY2NS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMzY2NT9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c9c9544f-02d7-462f-9e2f-a5efc2af8824" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"140018a6-0000-3300-0000-5f17296e0000\"" + ], + "x-ms-request-id": [ + "7c33b5c7-1613-4f67-ad79-e73e0328b4f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "9dbc79d3-72d9-4a10-b1a2-958bcdbef88a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174424Z:9dbc79d3-72d9-4a10-b1a2-958bcdbef88a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:44:24 GMT" + ], + "Content-Length": [ + "698" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.CognitiveServices/accounts/csapstestrg3665\",\r\n \"name\": \"csapstestrg3665\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"140018a6-0000-3300-0000-5f17296e0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg3665.cognitiveservices.azure.com/\",\r\n \"internalId\": \"cf7200ead0d14940aba8da37fad83c80\",\r\n \"dateCreated\": \"2020-07-21T17:44:13.5939203Z\",\r\n \"customSubDomainName\": \"csapstestrg3665\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.CognitiveServices/accounts/csapstestrg3665?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY2NS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMzY2NT9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c34d471f-af66-4059-a61b-c9b6364f084a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"140018a6-0000-3300-0000-5f17296e0000\"" + ], + "x-ms-request-id": [ + "65a96196-f57d-400a-9246-c89a9db6aece" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "aa575362-d398-4a64-93e5-07ee01ea1f92" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174424Z:aa575362-d398-4a64-93e5-07ee01ea1f92" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:44:24 GMT" + ], + "Content-Length": [ + "698" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.CognitiveServices/accounts/csapstestrg3665\",\r\n \"name\": \"csapstestrg3665\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"140018a6-0000-3300-0000-5f17296e0000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg3665.cognitiveservices.azure.com/\",\r\n \"internalId\": \"cf7200ead0d14940aba8da37fad83c80\",\r\n \"dateCreated\": \"2020-07-21T17:44:13.5939203Z\",\r\n \"customSubDomainName\": \"csapstestrg3665\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.CognitiveServices/accounts/csapstestrg3665?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY2NS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMzY2NT9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "95f7724f-bccc-485d-af49-9ee1c55c0de0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"140099a6-0000-3300-0000-5f1729850000\"" + ], + "x-ms-request-id": [ + "6aa38650-d8d6-4330-ad96-890e9533e0f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "e638b660-04ed-4a2e-94a6-9aee6aa6cb8c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174437Z:e638b660-04ed-4a2e-94a6-9aee6aa6cb8c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:44:37 GMT" + ], + "Content-Length": [ + "967" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.CognitiveServices/accounts/csapstestrg3665\",\r\n \"name\": \"csapstestrg3665\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"140099a6-0000-3300-0000-5f1729850000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg3665.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"cf7200ead0d14940aba8da37fad83c80\",\r\n \"dateCreated\": \"2020-07-21T17:44:13.5939203Z\",\r\n \"customSubDomainName\": \"csapstestrg3665\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3665/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ]\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.CognitiveServices/accounts/csapstestrg3665?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY2NS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMzY2NT9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5a7e1af3-af00-4176-b424-4f3eecf43d70" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"140099a6-0000-3300-0000-5f1729850000\"" + ], + "x-ms-request-id": [ + "dc4737c2-2806-4919-bfc9-70efab9a982d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "1b107259-d9bc-4ded-bbe4-b97deea23023" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174437Z:1b107259-d9bc-4ded-bbe4-b97deea23023" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:44:37 GMT" + ], + "Content-Length": [ + "967" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.CognitiveServices/accounts/csapstestrg3665\",\r\n \"name\": \"csapstestrg3665\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"140099a6-0000-3300-0000-5f1729850000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg3665.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"cf7200ead0d14940aba8da37fad83c80\",\r\n \"dateCreated\": \"2020-07-21T17:44:13.5939203Z\",\r\n \"customSubDomainName\": \"csapstestrg3665\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3665/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ]\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3665?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzM2NjU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "89975d29-b7c4-4a20-9580-0601af93ae89" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "a18f0c0b-2825-4ace-9788-b687bd06ef17" + ], + "x-ms-correlation-request-id": [ + "a18f0c0b-2825-4ace-9788-b687bd06ef17" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174415Z:a18f0c0b-2825-4ace-9788-b687bd06ef17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:44:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "234" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vnetpstestrg3665' under resource group 'pstestrg3665' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3665?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzM2NjU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"04a46d9a-77ad-4156-8ab0-65ace135f2ff\"" + ], + "x-ms-request-id": [ + "d03520f1-a347-4c78-a288-936e68827b1c" + ], + "x-ms-correlation-request-id": [ + "64a16ad4-2762-4c4c-9e66-16b9a1b7be74" + ], + "x-ms-arm-service-request-id": [ + "f5b02da3-424f-4ff6-b466-0b38b95d7751" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174423Z:64a16ad4-2762-4c4c-9e66-16b9a1b7be74" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:44:23 GMT" + ], + "Content-Length": [ + "1970" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg3665\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3665\",\r\n \"etag\": \"W/\\\"04a46d9a-77ad-4156-8ab0-65ace135f2ff\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c2a4ed71-5e3c-4a6e-9e16-135e024d5ac5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3665/subnets/default\",\r\n \"etag\": \"W/\\\"04a46d9a-77ad-4156-8ab0-65ace135f2ff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"200.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"subnet\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3665/subnets/subnet\",\r\n \"etag\": \"W/\\\"04a46d9a-77ad-4156-8ab0-65ace135f2ff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"200.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\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}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3665?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzM2NjU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e5af415-7904-488d-8c46-4c6c973fee67" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"04a46d9a-77ad-4156-8ab0-65ace135f2ff\"" + ], + "x-ms-request-id": [ + "2d6b64f4-53bb-4837-a647-18c2ebc90a0c" + ], + "x-ms-correlation-request-id": [ + "19642992-7bd3-4494-a224-9b4d13d529f4" + ], + "x-ms-arm-service-request-id": [ + "7c2bf1a0-0002-4a29-83e2-54ced126a8b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174424Z:19642992-7bd3-4494-a224-9b4d13d529f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:44:23 GMT" + ], + "Content-Length": [ + "1970" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg3665\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3665\",\r\n \"etag\": \"W/\\\"04a46d9a-77ad-4156-8ab0-65ace135f2ff\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c2a4ed71-5e3c-4a6e-9e16-135e024d5ac5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3665/subnets/default\",\r\n \"etag\": \"W/\\\"04a46d9a-77ad-4156-8ab0-65ace135f2ff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"200.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"subnet\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3665/subnets/subnet\",\r\n \"etag\": \"W/\\\"04a46d9a-77ad-4156-8ab0-65ace135f2ff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"200.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\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}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3665?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzM2NjU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6a7ee4b2-e618-4c08-952c-ee634309aa30" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"04a46d9a-77ad-4156-8ab0-65ace135f2ff\"" + ], + "x-ms-request-id": [ + "2cd234d5-cb58-4f3e-b26f-4616c3caf4ae" + ], + "x-ms-correlation-request-id": [ + "3f280b1f-4c69-4036-8ae9-2b0c3bc42dd8" + ], + "x-ms-arm-service-request-id": [ + "2d8846af-0e99-49b4-84a2-3960a4ae9428" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174424Z:3f280b1f-4c69-4036-8ae9-2b0c3bc42dd8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:44:23 GMT" + ], + "Content-Length": [ + "1970" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg3665\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3665\",\r\n \"etag\": \"W/\\\"04a46d9a-77ad-4156-8ab0-65ace135f2ff\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c2a4ed71-5e3c-4a6e-9e16-135e024d5ac5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3665/subnets/default\",\r\n \"etag\": \"W/\\\"04a46d9a-77ad-4156-8ab0-65ace135f2ff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"200.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"subnet\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3665/subnets/subnet\",\r\n \"etag\": \"W/\\\"04a46d9a-77ad-4156-8ab0-65ace135f2ff\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"200.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\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}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3665?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzM2NjU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"200.0.0.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"default\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"200.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"subnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7565446-ba86-41ff-9fb1-0cc3674095e5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1100" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "8fcd7c93-974b-40cb-a713-9ac0004b00d2" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/providers/Microsoft.Network/locations/centraluseuap/operations/8fcd7c93-974b-40cb-a713-9ac0004b00d2?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "a3448e54-3acd-4b3e-aeb7-b1073548f7c0" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "a422d274-e886-4720-be69-6e740accfdf2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174420Z:a3448e54-3acd-4b3e-aeb7-b1073548f7c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:44:19 GMT" + ], + "Content-Length": [ + "1967" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vnetpstestrg3665\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3665\",\r\n \"etag\": \"W/\\\"bd7a578d-dc43-4653-8f4d-35c36b1f6416\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c2a4ed71-5e3c-4a6e-9e16-135e024d5ac5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3665/subnets/default\",\r\n \"etag\": \"W/\\\"bd7a578d-dc43-4653-8f4d-35c36b1f6416\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"200.0.0.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"subnet\",\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3665/subnets/subnet\",\r\n \"etag\": \"W/\\\"bd7a578d-dc43-4653-8f4d-35c36b1f6416\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"200.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\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}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/providers/Microsoft.Network/locations/centraluseuap/operations/8fcd7c93-974b-40cb-a713-9ac0004b00d2?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9vcGVyYXRpb25zLzhmY2Q3YzkzLTk3NGItNDBjYi1hNzEzLTlhYzAwMDRiMDBkMj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "da4efc11-526b-48a8-94d5-57e5507fe40e" + ], + "x-ms-correlation-request-id": [ + "640ed022-6a91-4e26-bbba-c6749c96a3de" + ], + "x-ms-arm-service-request-id": [ + "ec6e23da-f85d-4fd2-98e6-17f6b021d2ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174423Z:640ed022-6a91-4e26-bbba-c6749c96a3de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:44:23 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.CognitiveServices/accounts/csapstestrg3665?api-version=2017-04-18", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzY2NS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvZ25pdGl2ZVNlcnZpY2VzL2FjY291bnRzL2NzYXBzdGVzdHJnMzY2NT9hcGktdmVyc2lvbj0yMDE3LTA0LTE4", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3665/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "caf5df9e-884e-43e6-bc54-fa2b795b5419" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.CognitiveServices.CognitiveServicesManagementClient/7.3.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "381" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"140099a6-0000-3300-0000-5f1729850000\"" + ], + "x-ms-request-id": [ + "6a9ec222-7011-4210-b263-f36bcf26302e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "048347b6-78db-4267-bb9a-c829bbb474a0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174437Z:048347b6-78db-4267-bb9a-c829bbb474a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:44:37 GMT" + ], + "Content-Length": [ + "967" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.CognitiveServices/accounts/csapstestrg3665\",\r\n \"name\": \"csapstestrg3665\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"etag\": \"\\\"140099a6-0000-3300-0000-5f1729850000\\\"\",\r\n \"location\": \"Central US EUAP\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"TextAnalytics\",\r\n \"properties\": {\r\n \"endpoint\": \"https://csapstestrg3665.cognitiveservices.azure.com/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"internalId\": \"cf7200ead0d14940aba8da37fad83c80\",\r\n \"dateCreated\": \"2020-07-21T17:44:13.5939203Z\",\r\n \"customSubDomainName\": \"csapstestrg3665\",\r\n \"networkAcls\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"id\": \"/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourceGroups/pstestrg3665/providers/Microsoft.Network/virtualNetworks/vnetpstestrg3665/subnets/default\",\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n }\r\n ]\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"VirtualNetworks\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/resourcegroups/pstestrg3665?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzY2NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04397b99-5d2a-42a4-9742-1466f32a0a9d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "84adda55-f15e-4ad3-9e09-0ae4c4d152ec" + ], + "x-ms-correlation-request-id": [ + "84adda55-f15e-4ad3-9e09-0ae4c4d152ec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174438Z:84adda55-f15e-4ad3-9e09-0ae4c4d152ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:44:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yTmpVdFEwVk9WRkpCVEZWVFJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpaWFZoY0NKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "9e730e4e-6d40-412b-bba6-38e266ccffbc" + ], + "x-ms-correlation-request-id": [ + "9e730e4e-6d40-412b-bba6-38e266ccffbc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174453Z:9e730e4e-6d40-412b-bba6-38e266ccffbc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:44:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yTmpVdFEwVk9WRkpCVEZWVFJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpaWFZoY0NKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "410b173a-d990-418b-87f4-e2c92279dd96" + ], + "x-ms-correlation-request-id": [ + "410b173a-d990-418b-87f4-e2c92279dd96" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174509Z:410b173a-d990-418b-87f4-e2c92279dd96" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:45:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yTmpVdFEwVk9WRkpCVEZWVFJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpaWFZoY0NKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "80c83d30-af4f-4ab7-9c40-a4a5a5c489c9" + ], + "x-ms-correlation-request-id": [ + "80c83d30-af4f-4ab7-9c40-a4a5a5c489c9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174524Z:80c83d30-af4f-4ab7-9c40-a4a5a5c489c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:45:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yTmpVdFEwVk9WRkpCVEZWVFJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpaWFZoY0NKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "985627a7-bf29-431e-8cdc-f305cb15ac04" + ], + "x-ms-correlation-request-id": [ + "985627a7-bf29-431e-8cdc-f305cb15ac04" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174539Z:985627a7-bf29-431e-8cdc-f305cb15ac04" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:45:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yTmpVdFEwVk9WRkpCVEZWVFJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpaWFZoY0NKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "19a15cb5-326b-4685-84ee-3e1edcf2f5b6" + ], + "x-ms-correlation-request-id": [ + "19a15cb5-326b-4685-84ee-3e1edcf2f5b6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174554Z:19a15cb5-326b-4685-84ee-3e1edcf2f5b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:45:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yTmpVdFEwVk9WRkpCVEZWVFJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpaWFZoY0NKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "558b4544-5056-46de-b0e5-16e16996307b" + ], + "x-ms-correlation-request-id": [ + "558b4544-5056-46de-b0e5-16e16996307b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174609Z:558b4544-5056-46de-b0e5-16e16996307b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:46:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yTmpVdFEwVk9WRkpCVEZWVFJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpaWFZoY0NKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "daaae690-b524-4c99-bba4-7668dca59dc7" + ], + "x-ms-correlation-request-id": [ + "daaae690-b524-4c99-bba4-7668dca59dc7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174624Z:daaae690-b524-4c99-bba4-7668dca59dc7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:46:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f9b96b36-1f5e-4021-8959-51527e26e6d3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM2NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjliOTZiMzYtMWY1ZS00MDIxLTg5NTktNTE1MjdlMjZlNmQzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0yTmpVdFEwVk9WRkpCVEZWVFJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpaWFZoY0NKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28801.04", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "bf25f8f4-d612-48e1-b0a7-e56f8e86b735" + ], + "x-ms-correlation-request-id": [ + "bf25f8f4-d612-48e1-b0a7-e56f8e86b735" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200721T174624Z:bf25f8f4-d612-48e1-b0a7-e56f8e86b735" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 17:46:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-NetworkRuleSetDefaultActions": [ + "pstestrg3665" + ] + }, + "Variables": { + "SubscriptionId": "f9b96b36-1f5e-4021-8959-51527e26e6d3" + } +} \ No newline at end of file diff --git a/src/CognitiveServices/CognitiveServices/ChangeLog.md b/src/CognitiveServices/CognitiveServices/ChangeLog.md index 07a85eaaf124..ba71064dec61 100644 --- a/src/CognitiveServices/CognitiveServices/ChangeLog.md +++ b/src/CognitiveServices/CognitiveServices/ChangeLog.md @@ -19,6 +19,8 @@ --> ## Upcoming Release +* Specifically use "Deny" as NetworkRules default action. + ## Version 1.5.0 * Supported displaying account capabilities. * Supported modifying PublicNetworkAccess. diff --git a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/AddAzureCognitiveServicesAccountNetworkRule.cs b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/AddAzureCognitiveServicesAccountNetworkRule.cs index dec8413e683a..1d26d79c4528 100644 --- a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/AddAzureCognitiveServicesAccountNetworkRule.cs +++ b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/AddAzureCognitiveServicesAccountNetworkRule.cs @@ -104,6 +104,9 @@ public override void ExecuteCmdlet() if (accountACL == null) { accountACL = new NetworkRuleSet(); + // Deny is the default action value from server side, + // Specifically make default action Deny in client side as server side might want this value to be always provided in future. + accountACL.DefaultAction = NetworkRuleAction.Deny; } switch (ParameterSetName) diff --git a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/RemoveAzureCognitiveServicesAccountNetworkRule.cs b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/RemoveAzureCognitiveServicesAccountNetworkRule.cs index d583f79978ee..8c707413af1e 100644 --- a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/RemoveAzureCognitiveServicesAccountNetworkRule.cs +++ b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/RemoveAzureCognitiveServicesAccountNetworkRule.cs @@ -107,6 +107,7 @@ public override void ExecuteCmdlet() if (accountACL == null) { accountACL = new NetworkRuleSet(); + accountACL.DefaultAction = NetworkRuleAction.Deny; } switch (ParameterSetName) diff --git a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/UpdateAzureCognitiveServicesAccountNetworkRuleSet.cs b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/UpdateAzureCognitiveServicesAccountNetworkRuleSet.cs index 81c29440abd3..3f9a275b8a3a 100644 --- a/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/UpdateAzureCognitiveServicesAccountNetworkRuleSet.cs +++ b/src/CognitiveServices/CognitiveServices/CognitiveServicesAccount/UpdateAzureCognitiveServicesAccountNetworkRuleSet.cs @@ -45,13 +45,13 @@ public class UpdateAzureCognitiveServicesAccountNetworkRuleSetCommand : Cognitiv [Parameter( Mandatory = false, - HelpMessage = "Cognitive Services Account NetworkRule DefaultAction.")] + HelpMessage = "Cognitive Services Account NetworkRule DefaultAction. Default value `Deny`.")] [ValidateNotNullOrEmpty] public PSNetWorkRuleDefaultActionEnum DefaultAction { get { - return defaultAction == null ? PSNetWorkRuleDefaultActionEnum.Allow : defaultAction.Value; + return defaultAction == null ? PSNetWorkRuleDefaultActionEnum.Deny : defaultAction.Value; } set { @@ -119,6 +119,7 @@ public override void ExecuteCmdlet() if (accountACL == null) { accountACL = new NetworkRuleSet(); + accountACL.DefaultAction = NetworkRuleAction.Deny; } PSNetworkRuleSet psNetworkRule = PSNetworkRuleSet.Create(accountACL); diff --git a/src/CognitiveServices/CognitiveServices/help/Update-AzCognitiveServicesAccountNetworkRuleSet.md b/src/CognitiveServices/CognitiveServices/help/Update-AzCognitiveServicesAccountNetworkRuleSet.md index 0bca56040c53..50395d0c0cba 100644 --- a/src/CognitiveServices/CognitiveServices/help/Update-AzCognitiveServicesAccountNetworkRuleSet.md +++ b/src/CognitiveServices/CognitiveServices/help/Update-AzCognitiveServicesAccountNetworkRuleSet.md @@ -50,7 +50,7 @@ This command clean up rules of NetworkRule of a Cognitive Services account (othe ## PARAMETERS ### -DefaultAction -Cognitive Services Account NetworkRule DefaultAction. +Cognitive Services Account NetworkRule DefaultAction. Default value `Deny`. ```yaml Type: Microsoft.Azure.Commands.Management.CognitiveServices.Models.PSNetWorkRuleDefaultActionEnum diff --git a/src/Databricks/examples/Update-AzDatabricksWorkspace.md b/src/Databricks/examples/Update-AzDatabricksWorkspace.md index b580f3294b4f..bba7932744a5 100644 --- a/src/Databricks/examples/Update-AzDatabricksWorkspace.md +++ b/src/Databricks/examples/Update-AzDatabricksWorkspace.md @@ -20,9 +20,10 @@ Name Location Managed Resource Group ID workspaceypae6l East US 2 EUAP /subscriptions/0140911e-1040-48da-8bc9-b99fb3dd88a6/resourceGroups/databricks-rg-workspaceypae6l-wzefrgv2b075t ``` -Enabling encryption on a Databricks workspace takes two steps: -1. Update a workspace with `-PrepareEncryption` (if the workspace was not created with `-PrepareEncryption`) -1. Update the encryption key with the following parameters: +Enabling encryption on a Databricks workspace takes three steps: +1. Update the workspace with `-PrepareEncryption` (if it was not created so). +1. Find `StorageAccountIdentityPrincipalId` in the output of the last step. Grant key permissions to the principal. +1. Update the workspace again to fill in information about the encryption key: - `-EncryptionKeySource` - `-EncryptionKeyVaultUri` - `-EncryptionKeyName` diff --git a/src/Databricks/help/Az.Databricks.md b/src/Databricks/help/Az.Databricks.md index 154104b34619..980a55e1365a 100644 --- a/src/Databricks/help/Az.Databricks.md +++ b/src/Databricks/help/Az.Databricks.md @@ -10,10 +10,6 @@ Locale: en-US ## Description Microsoft Azure PowerShell: Databricks cmdlets -While the Az.Databricks PowerShell module is in preview, you must install it separately from the Az PowerShell module using the following command: `Install-Module -Name Az.Databricks`. Once the Az.Databricks PowerShell module is generally available, it becomes part of future Az PowerShell module releases and available natively from within Azure Cloud Shell. - -This module allows the management of service features in preview which may not be available yet for your region or subscription. - ## Az.Databricks Cmdlets ### [Get-AzDatabricksWorkspace](Get-AzDatabricksWorkspace.md) Gets the workspace. diff --git a/src/Databricks/help/Update-AzDatabricksWorkspace.md b/src/Databricks/help/Update-AzDatabricksWorkspace.md index e3590b7e2c6f..1694fb953ddc 100644 --- a/src/Databricks/help/Update-AzDatabricksWorkspace.md +++ b/src/Databricks/help/Update-AzDatabricksWorkspace.md @@ -55,11 +55,11 @@ Name Location Managed Resource Group ID workspaceypae6l East US 2 EUAP /subscriptions/0140911e-1040-48da-8bc9-b99fb3dd88a6/resourceGroups/databricks-rg-workspaceypae6l-wzefrgv2b075t ``` -Enabling encryption on a Databricks workspace takes two steps: -1. -Update a workspace with `-PrepareEncryption` (if the workspace was not created with `-PrepareEncryption`) -1. -Update the encryption key with the following parameters: +Enabling encryption on a Databricks workspace takes three steps: + +1. Update the workspace with `-PrepareEncryption` (if it was not created so). +1. Find `StorageAccountIdentityPrincipalId` in the output of the last step. Grant key permissions to the principal. +1. Update the workspace again to fill in information about the encryption key: - `-EncryptionKeySource` - `-EncryptionKeyVaultUri` - `-EncryptionKeyName` diff --git a/src/DesktopVirtualization/Az.DesktopVirtualization.psd1 b/src/DesktopVirtualization/Az.DesktopVirtualization.psd1 index 17c77a8a86ab..bb788ad9191d 100644 --- a/src/DesktopVirtualization/Az.DesktopVirtualization.psd1 +++ b/src/DesktopVirtualization/Az.DesktopVirtualization.psd1 @@ -12,7 +12,7 @@ RootModule = './Az.DesktopVirtualization.psm1' # Version number of this module. -ModuleVersion = '2.0.0' +ModuleVersion = '1.0.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' diff --git a/src/DesktopVirtualization/ChangeLog.md b/src/DesktopVirtualization/ChangeLog.md index b33daf82e622..6b366f0562ef 100644 --- a/src/DesktopVirtualization/ChangeLog.md +++ b/src/DesktopVirtualization/ChangeLog.md @@ -18,8 +18,6 @@ - Additional information about change #1 --> ## Upcoming Release - -## Version 2.0.0 * Require Location property for creating top level arm objects. * Made `ApplicationGroupType` required for `New-AzWvdApplicationGroup`. * Made `HostPoolArmPath` required for `New-AzWvdApplicationGroup`. diff --git a/src/HDInsight/HDInsight.Test/HDInsight.Test.csproj b/src/HDInsight/HDInsight.Test/HDInsight.Test.csproj index 166b97f64cf4..ba74572141de 100644 --- a/src/HDInsight/HDInsight.Test/HDInsight.Test.csproj +++ b/src/HDInsight/HDInsight.Test/HDInsight.Test.csproj @@ -12,10 +12,11 @@ - + + diff --git a/src/HDInsight/HDInsight.Test/ScenarioTests/Common.ps1 b/src/HDInsight/HDInsight.Test/ScenarioTests/Common.ps1 index 7132a9ab8cd6..fd2786cdebe7 100644 --- a/src/HDInsight/HDInsight.Test/ScenarioTests/Common.ps1 +++ b/src/HDInsight/HDInsight.Test/ScenarioTests/Common.ps1 @@ -53,20 +53,62 @@ function Create-KeyIdentity{ <# .SYNOPSIS -Create cluster +Create Vnet with subnet +#> +function Create-VnetkWithSubnet{ + param( + [string] $resourceGroupName, + [string] $location, + [string] $vnetName, + [string] $subnetName="default", + [bool] $subnetPrivateEndpointNetworkPoliciesFlag=$true, + [bool] $subnetPrivateLinkServiceNetworkPoliciesFlag=$true + ) + + $vnet= [Commands.HDInsight.Test.ScenarioTests.TestHelper]::CreateVirtualNetworkWithSubnet($resourceGroupName, $location,$vnetName, $subnetName, $subnetPrivateEndpointNetworkPoliciesFlag, $subnetPrivateLinkServiceNetworkPoliciesFlag) + return $vnet +} + +class ClusterCommonCreateParameter{ + [string] $clusterName + [string] $location + [string] $resourceGroupName + [string] $storageAccountName + [string] $clusterType + [int] $clusterSizeInNodes + [string] $storageAccountKey + [System.Management.Automation.PSCredential] $httpCredential + [System.Management.Automation.PSCredential] $sshCredential + [string] $minSupportedTlsVersion + + ClusterCommonCreateParameter([string] $clusterName, [string] $location, [string] $resourceGroupName, + [string] $storageAccountName, [string] $clusterType, [int] $clusterSizeInNodes, + [string] $storageAccountKey, [System.Management.Automation.PSCredential] $httpCredential, + [System.Management.Automation.PSCredential] $sshCredential, [string] $minSupportedTlsVersion){ + $this.clusterName=$clusterName + $this.location=$location + $this.resourceGroupName=$resourceGroupName + $this.storageAccountName=$storageAccountName + $this.clusterType=$clusterType + $this.clusterSizeInNodes=$clusterSizeInNodes + $this.storageAccountKey=$storageAccountKey + $this.httpCredential=$httpCredential + $this.sshCredential=$sshCredential + $this.minSupportedTlsVersion=$minSupportedTlsVersion + } +} + +<# +.SYNOPSIS + Create Common Parameter for creating cluster. #> -function Create-Cluster{ +function Prepare-ClusterCreateParameterForWASB{ param( [string] $clusterName="hdi-ps-test", [string] $location="East US", [string] $resourceGroupName="group-ps-test", - [string] $clusterType="Spark", - [string] $storageAccountName="storagepstest", - [string] $minSupportedTlsVersion="1.2", - [bool] $enableCMK=$false, - [string] $assignedIdentityName="ami-ps-cmktest", - [string] $vaultName="vault-ps-cmktest", - [string] $keyName="key-ps-cmktest" + [string] $storageAccountName="storagepstest", + [string] $clusterType="Spark" ) $clusterName=Generate-Name($clusterName) @@ -82,44 +124,55 @@ function Create-Cluster{ $storageAccountKey=$storageAccountKey[0].Value $httpUser="admin" - $textPassword= "YourPw!00953" + $textPassword= "YourPw!00953" $httpPassword=ConvertTo-SecureString $textPassword -AsPlainText -Force $sshUser="sshuser" $sshPassword=$httpPassword $httpCredential=New-Object System.Management.Automation.PSCredential($httpUser, $httpPassword) $sshCredential=New-Object System.Management.Automation.PSCredential($sshUser, $sshPassword) - + $clusterSizeInNodes=2 + $minSupportedTlsVersion="1.2" + return [ClusterCommonCreateParameter]::new($clusterName, $location, $resourceGroupName,$storageAccountName, + $clusterType, $clusterSizeInNodes,$storageAccountKey, $httpCredential, + $sshCredential, $minSupportedTlsVersion) +} - if($enableCMK) - { - # new user-assigned identity - $assignedIdentity= New-AzUserAssignedIdentity -ResourceGroupName $resourceGroupName -Name $assignedIdentityName - $assignedIdentityId=$assignedIdentity.Id - # new key-vault - $encryptionKeyVault=New-AzKeyVault -VaultName $vaultName -ResourceGroupName $resourceGroupName -Location $location - $principalId = Get-PrincipalObjectId - # add access police for key-vault - $encryptionKeyVault=Set-AzKeyVaultAccessPolicy -VaultName $vaultName -ObjectId $principalId -PermissionsToKeys create,import,delete,list -PermissionsToSecrets Get,Set -PermissionsToCertificates Get,List - $encryptionKeyVault=Set-AzKeyVaultAccessPolicy -VaultName $vaultName -ObjectId $assignedIdentity.PrincipalId -PermissionsToKeys Get,UnwrapKey,WrapKey -PermissionsToSecrets Get,Set,Delete - # new key identity - $encryptionKey=Create-KeyIdentity -resourceGroupName $resourceGroupName -vaultName $vaultName -keyName $keyName - $encryptionVaultUri=$encryptionKey.Vault - $encryptionKeyVersion=$encryptionKey.Version - $encryptionKeyName=$encryptionKey.Name - # new hdi cluster with cmk - $cluster=New-AzHDInsightCluster -Location $location -ResourceGroupName $resourceGroup.ResourceGroupName -ClusterName $clusterName ` - -ClusterSizeInNodes $clusterSizeInNodes -ClusterType $clusterType -DefaultStorageAccountName $storageAccountName ` - -DefaultStorageAccountKey $storageAccountKey -HttpCredential $httpCredential -SshCredential $sshCredential ` - -AssignedIdentity $assignedIdentityId -EncryptionKeyName $encryptionKeyName -EncryptionKeyVersion $encryptionKeyVersion ` - -EncryptionVaultUri $encryptionVaultUri - } - else - { - $cluster=New-AzHDInsightCluster -Location $location -ResourceGroupName $resourceGroup.ResourceGroupName -ClusterName $clusterName ` - -ClusterSizeInNodes $clusterSizeInNodes -ClusterType $clusterType -DefaultStorageAccountName $storageAccountName ` - -DefaultStorageAccountKey $storageAccountKey -HttpCredential $httpCredential -SshCredential $sshCredential -MinSupportedTlsVersion $minSupportedTlsVersion - } +<# +.SYNOPSIS +Create cluster +#> +function Create-CMKCluster{ + param( + [string] $clusterName="hdi-ps-test", + [string] $location="East US", + [string] $assignedIdentityName="ami-ps-cmktest", + [string] $vaultName="vault-ps-cmktest", + [string] $keyName="key-ps-cmktest" + ) + + $params=Prepare-ClusterCreateParameterForWASB -clusterName $clusterName -location $location + + # new user-assigned identity + $assignedIdentity= New-AzUserAssignedIdentity -ResourceGroupName $params.resourceGroupName -Name $assignedIdentityName + $assignedIdentityId=$assignedIdentity.Id + # new key-vault + $encryptionKeyVault=New-AzKeyVault -VaultName $vaultName -ResourceGroupName $params.resourceGroupName -Location $params.location + $principalId = Get-PrincipalObjectId + # add access police for key-vault + $encryptionKeyVault=Set-AzKeyVaultAccessPolicy -VaultName $vaultName -ObjectId $principalId -PermissionsToKeys create,import,delete,list -PermissionsToSecrets Get,Set -PermissionsToCertificates Get,List + $encryptionKeyVault=Set-AzKeyVaultAccessPolicy -VaultName $vaultName -ObjectId $assignedIdentity.PrincipalId -PermissionsToKeys Get,UnwrapKey,WrapKey -PermissionsToSecrets Get,Set,Delete + # new key identity + $encryptionKey=Create-KeyIdentity -resourceGroupName $params.resourceGroupName -vaultName $vaultName -keyName $keyName + $encryptionVaultUri=$encryptionKey.Vault + $encryptionKeyVersion=$encryptionKey.Version + $encryptionKeyName=$encryptionKey.Name + # new hdi cluster with cmk + $cluster=New-AzHDInsightCluster -Location $params.location -ResourceGroupName $params.resourceGroupName -ClusterName $params.clusterName ` + -ClusterSizeInNodes $params.clusterSizeInNodes -ClusterType $params.clusterType -DefaultStorageAccountName $params.storageAccountName ` + -DefaultStorageAccountKey $params.storageAccountKey -HttpCredential $params.httpCredential -SshCredential $params.sshCredential ` + -AssignedIdentity $assignedIdentityId -EncryptionKeyName $encryptionKeyName -EncryptionKeyVersion $encryptionKeyVersion ` + -EncryptionVaultUri $encryptionVaultUri return $cluster } @@ -171,4 +224,4 @@ function Assert-CompressionTypes($types1, $types2) throw "Compression content not equal. " + $value1 + " cannot be found in second array" } } -} \ No newline at end of file +} diff --git a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightClusterTests.cs b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightClusterTests.cs index ab72655c7dd7..17f86171f13a 100644 --- a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightClusterTests.cs +++ b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightClusterTests.cs @@ -42,5 +42,19 @@ public void TestCmkClusterRelatedCommands() { TestController.NewInstance.RunPowerShellTest(_logger, "Test-CmkClusterRelatedCommands"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestCreateClusterWithEncryptionInTransit() + { + TestController.NewInstance.RunPowerShellTest(_logger, "Test-CreateClusterWithEncryptionInTransit"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestCreateClusterWithPrivateLink() + { + TestController.NewInstance.RunPowerShellTest(_logger, "Test-CreateClusterWithPrivateLink"); + } } } diff --git a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightClusterTests.ps1 b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightClusterTests.ps1 index d4907d29772c..1f75ffa9457c 100644 --- a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightClusterTests.ps1 +++ b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightClusterTests.ps1 @@ -22,8 +22,16 @@ function Test-ClusterRelatedCommands{ # Create some resources that will be used throughout test try { + # prepare parameter for creating parameter + $params= Prepare-ClusterCreateParameterForWASB + # test create cluster - $cluster = Create-Cluster + $cluster = New-AzHDInsightCluster -Location $params.location -ResourceGroupName $params.resourceGroupName ` + -ClusterName $params.clusterName -ClusterSizeInNodes $params.clusterSizeInNodes -ClusterType $params.clusterType ` + -DefaultStorageAccountName $params.storageAccountName -DefaultStorageAccountKey $params.storageAccountKey ` + -HttpCredential $params.httpCredential -SshCredential $params.sshCredential ` + -MinSupportedTlsVersion $params.minSupportedTlsVersion + Assert-NotNull $cluster #test Get-AzHDInsightCluster @@ -41,7 +49,6 @@ function Test-ClusterRelatedCommands{ Remove-AzHDInsightCluster -ClusterName $cluster.Name Remove-AzResourceGroup -ResourceGroupName $cluster.ResourceGroup } - } @@ -67,7 +74,7 @@ function Test-CmkClusterRelatedCommands{ $newKeyName=Generate-Name($newKeyName) # test create cluster - $cluster = Create-Cluster -clusterName $clusterName -location $location -enableCMK $true -vaultName $vaultName -KeyName $keyName -assignedIdentityName $assignedIdentityName + $cluster = Create-CMKCluster -clusterName $clusterName -location $location -vaultName $vaultName -KeyName $keyName -assignedIdentityName $assignedIdentityName Assert-NotNull $cluster Assert-AreEqual $cluster.DiskEncryption.KeyName $keyName @@ -84,7 +91,75 @@ function Test-CmkClusterRelatedCommands{ Remove-AzHDInsightCluster -ClusterName $cluster.Name Remove-AzResourceGroup -ResourceGroupName $cluster.ResourceGroup } +} +<# +.SYNOPSIS +Test Create Azure HDInsight Cluster which Enalbes Encryption In Transit +#> + +function Test-CreateClusterWithEncryptionInTransit{ + + # Create some resources that will be used throughout test + try + { + # prepare parameter for creating parameter + $params= Prepare-ClusterCreateParameterForWASB -Location "South Central US" + $encryptionInTransit=$true + + # create cluster + $cluster=New-AzHDInsightCluster -Location $params.location -ResourceGroupName $params.resourceGroupName ` + -ClusterName $params.clusterName -ClusterSizeInNodes $params.clusterSizeInNodes -ClusterType $params.clusterType ` + -DefaultStorageAccountName $params.storageAccountName -DefaultStorageAccountKey $params.storageAccountKey ` + -HttpCredential $params.httpCredential -SshCredential $params.sshCredential ` + -MinSupportedTlsVersion $params.minSupportedTlsVersion -EncryptionInTransit $encryptionInTransit + + Assert-AreEqual $cluster.EncryptionInTransit $encryptionInTransit + + } + finally + { + # Delete cluster and resource group + Remove-AzHDInsightCluster -ClusterName $cluster.Name + Remove-AzResourceGroup -ResourceGroupName $cluster.ResourceGroup + } } +<# +.SYNOPSIS +Test Create Azure HDInsight Cluster which Private Link +#> + +function Test-CreateClusterWithPrivateLink{ + + # Create some resources that will be used throughout test + try + { + # prepare parameter for creating parameter + $params= Prepare-ClusterCreateParameterForWASB -location "South Central US" + + # Prepare virtual network + $vnetName=Generate-Name("hdi-ps-vnet") + $vnet=Create-VnetkWithSubnet -location $params.location -resourceGroupName $params.resourceGroupName ` + -vnetName $vnetName -subnetPrivateLinkServiceNetworkPoliciesFlag $false + # create cluster + $cluster=New-AzHDInsightCluster -Location $params.location -ResourceGroupName $params.resourceGroupName ` + -ClusterName $params.clusterName -ClusterSizeInNodes $params.clusterSizeInNodes -ClusterType $params.clusterType ` + -DefaultStorageAccountName $params.storageAccountName -DefaultStorageAccountKey $params.storageAccountKey ` + -HttpCredential $params.httpCredential -SshCredential $params.sshCredential ` + -MinSupportedTlsVersion $params.minSupportedTlsVersion ` + -VirtualNetworkId $vnet.Id -SubnetName $vnet.Subnets[0].Id ` + -PublicNetworkAccessType OutboundOnly -OutboundPublicNetworkAccessType PublicLoadBalancer + + Assert-AreEqual $cluster.PublicNetworkAccessType OutboundOnly + Assert-AreEqual $cluster.OutboundPublicNetworkAccessType PublicLoadBalancer + + } + finally + { + # Delete cluster and resource group + Remove-AzHDInsightCluster -ClusterName $cluster.Name + Remove-AzResourceGroup -ResourceGroupName $cluster.ResourceGroup + } +} diff --git a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightHostTests.ps1 b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightHostTests.ps1 index 1bb488d5968c..46cb4c9e7908 100644 --- a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightHostTests.ps1 +++ b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightHostTests.ps1 @@ -22,8 +22,15 @@ function Test-HostRelatedCommands{ # Create some resources that will be used throughout test try { - # test create cluster - $cluster = Create-Cluster -location "South Central US" + # prepare parameter for creating parameter + $params= Prepare-ClusterCreateParameterForWASB + + # create cluster that will be used throughout test + $cluster = New-AzHDInsightCluster -Location $params.location -ResourceGroupName $params.resourceGroupName ` + -ClusterName $params.clusterName -ClusterSizeInNodes $params.clusterSizeInNodes -ClusterType $params.clusterType ` + -DefaultStorageAccountName $params.storageAccountName -DefaultStorageAccountKey $params.storageAccountKey ` + -HttpCredential $params.httpCredential -SshCredential $params.sshCredential ` + -MinSupportedTlsVersion $params.minSupportedTlsVersion Assert-NotNull $cluster #test Get-AzHDInsightHost diff --git a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightSetGatewayCredentialTest.ps1 b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightSetGatewayCredentialTest.ps1 index b14ac4ebe2e9..5568b2505bdf 100644 --- a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightSetGatewayCredentialTest.ps1 +++ b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightSetGatewayCredentialTest.ps1 @@ -21,8 +21,15 @@ function Test-SetGatewayCredential{ # Create some resources that will be used throughout test try { + # prepare parameter for creating parameter + $params= Prepare-ClusterCreateParameterForWASB + # create cluster that will be used throughout test - $cluster= Create-Cluster + $cluster = New-AzHDInsightCluster -Location $params.location -ResourceGroupName $params.resourceGroupName ` + -ClusterName $params.clusterName -ClusterSizeInNodes $params.clusterSizeInNodes -ClusterType $params.clusterType ` + -DefaultStorageAccountName $params.storageAccountName -DefaultStorageAccountKey $params.storageAccountKey ` + -HttpCredential $params.httpCredential -SshCredential $params.sshCredential ` + -MinSupportedTlsVersion $params.minSupportedTlsVersion $username = "admin" $textPassword= "YourPw!00953" diff --git a/src/HDInsight/HDInsight.Test/ScenarioTests/TestController.cs b/src/HDInsight/HDInsight.Test/ScenarioTests/TestController.cs index 8f623926a556..aafb69f570f6 100644 --- a/src/HDInsight/HDInsight.Test/ScenarioTests/TestController.cs +++ b/src/HDInsight/HDInsight.Test/ScenarioTests/TestController.cs @@ -30,6 +30,7 @@ using System.Diagnostics; using System.IO; using System.Linq; +using Microsoft.Azure.Management.Network; namespace Commands.HDInsight.Test.ScenarioTests { @@ -44,6 +45,7 @@ public class TestController : RMTestBase public KeyVaultManagementClient KeyVaultManagementClient { get; private set; } public KeyVaultClient KeyVaultClient { get; private set; } public ManagedServiceIdentityClient ManagedServiceIdentityClient { get; private set; } + public NetworkManagementClient NetworkManagementClient { get; private set; } public static TestHelper TestHelper { get; private set; } public static TestController NewInstance => new TestController(); @@ -60,6 +62,7 @@ protected void SetupManagementClient(MockContext context) OperationalInsightsManagementClient = GetOperationalInsightsManagementClient(context); KeyVaultManagementClient = GetKeyVaultManagementClient(context); ManagedServiceIdentityClient = GetManagedServiceIdentityClient(context); + NetworkManagementClient = GetNetworkManagementClient(context); _helper.SetupManagementClients(ResourceManagementClient, HDInsightManagementClient, StorageManagementClient, OperationalInsightsManagementClient, KeyVaultManagementClient, ManagedServiceIdentityClient); } @@ -166,9 +169,14 @@ private static ManagedServiceIdentityClient GetManagedServiceIdentityClient(Mock return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); } + private static NetworkManagementClient GetNetworkManagementClient(MockContext context) + { + return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + } + private TestHelper GetTestHelper() { - return new TestHelper(KeyVaultManagementClient, KeyVaultClient); + return new TestHelper(KeyVaultManagementClient, KeyVaultClient, NetworkManagementClient); } } } diff --git a/src/HDInsight/HDInsight.Test/ScenarioTests/TestHelper.cs b/src/HDInsight/HDInsight.Test/ScenarioTests/TestHelper.cs index a2d6f4df150f..729824687186 100644 --- a/src/HDInsight/HDInsight.Test/ScenarioTests/TestHelper.cs +++ b/src/HDInsight/HDInsight.Test/ScenarioTests/TestHelper.cs @@ -13,6 +13,9 @@ using Microsoft.Azure.Management.KeyVault.Models; using Microsoft.Azure.KeyVault.Models; using Microsoft.Azure.KeyVault.WebKey; +using Microsoft.Azure.Management.Network.Models; +using System.Collections.Generic; +using Microsoft.Azure.Management.Network; namespace Commands.HDInsight.Test.ScenarioTests { @@ -20,11 +23,13 @@ public class TestHelper { public static KeyVaultManagementClient KeyVaultManagementClient { get; set; } public static KeyVaultClient KeyVaultClient { get; set; } + public static NetworkManagementClient NetworkManagementClient { get; set; } - public TestHelper(KeyVaultManagementClient keyVaultManagementClient, KeyVaultClient keyVaultClient) + public TestHelper(KeyVaultManagementClient keyVaultManagementClient, KeyVaultClient keyVaultClient, NetworkManagementClient networkManagementClient) { KeyVaultManagementClient = keyVaultManagementClient; KeyVaultClient = keyVaultClient; + NetworkManagementClient = networkManagementClient; } /// @@ -144,5 +149,31 @@ public static Vault GetVault(string resourceGroupName, string vaultName) { return KeyVaultManagementClient.Vaults.Get(resourceGroupName, vaultName); } + + public static VirtualNetwork CreateVirtualNetworkWithSubnet(string resourceGroupName, string location, string virtualNetworkName, string subnetName, bool subnetPrivateEndpointNetworkPoliciesFlag = true, bool subnetPrivateLinkServiceNetworkPoliciesFlag = true) + { + VirtualNetwork vnet = new VirtualNetwork() + { + Location = location, + AddressSpace = new AddressSpace() + { + AddressPrefixes = new List() + { + "10.0.0.0/16", + } + }, + Subnets = new List() + { + new Subnet() + { + Name = subnetName, + AddressPrefix = "10.0.0.0/24", + PrivateEndpointNetworkPolicies = subnetPrivateEndpointNetworkPoliciesFlag ? "Enabled" : "Disabled", + PrivateLinkServiceNetworkPolicies = subnetPrivateLinkServiceNetworkPoliciesFlag ? "Enabled" : "Disabled" + } + } + }; + return NetworkManagementClient.VirtualNetworks.CreateOrUpdate(resourceGroupName, virtualNetworkName, vnet); + } } } diff --git a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithEncryptionInTransit.json b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithEncryptionInTransit.json new file mode 100644 index 000000000000..ce488b78607c --- /dev/null +++ b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithEncryptionInTransit.json @@ -0,0 +1,3104 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test7992?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9adf8639-20b8-4237-959d-e35c6346a1aa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "38" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "fdda875d-9ad4-4477-827c-31ad9ea72194" + ], + "x-ms-correlation-request-id": [ + "fdda875d-9ad4-4477-827c-31ad9ea72194" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T133641Z:fdda875d-9ad4-4477-827c-31ad9ea72194" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:36:40 GMT" + ], + "Content-Length": [ + "195" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992\",\r\n \"name\": \"group-ps-test7992\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.Storage/storageAccounts/storagepstest9407?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDk0MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"South Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff1c0a72-e002-433f-9819-7ab9166618fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.17" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "110" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/c65bc955-008b-49bf-a195-b21c9edd1ff2?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "c65bc955-008b-49bf-a195-b21c9edd1ff2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "1cec612e-f72b-4f18-bc46-4b0e1f905da1" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T133649Z:1cec612e-f72b-4f18-bc46-4b0e1f905da1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:36:49 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/c65bc955-008b-49bf-a195-b21c9edd1ff2?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvYXN5bmNvcGVyYXRpb25zL2M2NWJjOTU1LTAwOGItNDliZi1hMTk1LWIyMWM5ZWRkMWZmMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "12a0fe9e-6a4b-4ab1-8726-449aef99e7ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "07f4c86c-f84a-4f72-9ded-7e58feef7e27" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T133707Z:07f4c86c-f84a-4f72-9ded-7e58feef7e27" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:37:06 GMT" + ], + "Content-Length": [ + "1408" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.Storage/storageAccounts/storagepstest9407\",\r\n \"name\": \"storagepstest9407\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-21T13:36:49.0570816Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-21T13:36:49.0570816Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-07-21T13:36:48.9789532Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest9407.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest9407.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest9407.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest9407.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"northcentralus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest9407-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest9407-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest9407-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.Storage/storageAccounts/storagepstest9407/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDk0MDcvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2d87ce75-8587-42a2-8556-0722a6c68f73" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "48d6a9db-6e41-4c0f-910a-f2a17eb250de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "d5bef948-fe55-45ed-95a5-1f08c1a2eabc" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T133707Z:d5bef948-fe55-45ed-95a5-1f08c1a2eabc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:37:07 GMT" + ], + "Content-Length": [ + "288" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"BlQBULw7BgoUSOBisdId1elHks1HS+6f44eny2Xb0MM8Hg3WDHLP0pvn1YoaP0ZEd/LBspHgzeaWS80iLnV8uA==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"SjS9AIotarsgoH8f0CWLHkCtLj7sdmsNqomzDWI81FDwls4zVXUEm4FGtB/yExTxYIyTF9FpR9+kkJ/ngkJZuw==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"default\",\r\n \"osType\": \"Linux\",\r\n \"tier\": \"Standard\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {},\r\n \"configurations\": {\r\n \"core-site\": {\r\n \"fs.defaultFS\": \"wasb://hdi-ps-test4709@storagepstest9407.blob.core.windows.net\",\r\n \"fs.azure.account.key.storagepstest9407.blob.core.windows.net\": \"BlQBULw7BgoUSOBisdId1elHks1HS+6f44eny2Xb0MM8Hg3WDHLP0pvn1YoaP0ZEd/LBspHgzeaWS80iLnV8uA==\"\r\n },\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Small\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a806412-1c52-42b0-9f63-507eeb92421a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2034" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"da843a0c-a64d-4cab-813b-ddee63b7c460\"" + ], + "x-ms-hdi-clusteruri": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709?api-version=2018-06-01-preview" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview" + ], + "x-ms-request-id": [ + "e7154987-4814-4c60-92f0-b1c9727ff788" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "b5028c06-6445-4adb-b3f0-d7b113b2580a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T133722Z:b5028c06-6445-4adb-b3f0-d7b113b2580a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:37:21 GMT" + ], + "Content-Length": [ + "1477" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709\",\r\n \"name\": \"hdi-ps-test4709\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"da843a0c-a64d-4cab-813b-ddee63b7c460\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2007190637.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"45ae380d2bb24c0c9cc91195525b378e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2020-07-21T13:37:20.473\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "80dd01f1-c6e9-4f1e-8793-140a8f26631b" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "17cdfc98-b3b0-422f-bd20-c1c2c8588fa2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11881" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T133752Z:17cdfc98-b3b0-422f-bd20-c1c2c8588fa2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:37:52 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cd6a919d-5844-41af-913a-3071c7603afb" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "8507ee87-3537-47b2-ae1f-814479f73b80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11879" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T133823Z:8507ee87-3537-47b2-ae1f-814479f73b80" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:38:22 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "78c24832-2e12-4761-b2ef-bd351096529a" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "66ce84d2-8445-4d50-ae9c-fbe19de30026" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11877" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T133854Z:66ce84d2-8445-4d50-ae9c-fbe19de30026" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:38:53 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b0ab433d-7f94-4064-bb91-fa2ad28ea7ff" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "119ed9a0-c0ef-4391-a037-d5ebdb3de0c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11875" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T133925Z:119ed9a0-c0ef-4391-a037-d5ebdb3de0c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:39:24 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "02649ced-d88d-48a8-b65a-a1c087e3d98e" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "11c42b12-4c97-48bd-b805-525ae3ee63bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11873" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T133955Z:11c42b12-4c97-48bd-b805-525ae3ee63bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:39:55 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cb3d3b4d-5591-4124-8d26-c8315c47d42a" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "55e0438e-ec1b-426f-bff7-bd204e7e7700" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11880" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T134026Z:55e0438e-ec1b-426f-bff7-bd204e7e7700" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:40:25 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a17f1541-1586-403f-9f04-1153d4984b67" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "5dd42b8a-5b00-481e-93f0-58b6f845b7cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11878" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T134056Z:5dd42b8a-5b00-481e-93f0-58b6f845b7cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:40:56 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6187bbe0-eb69-411d-9f1b-ec182b85b295" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "f32988b4-a86a-4a8e-be62-af2260dc96cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11876" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T134127Z:f32988b4-a86a-4a8e-be62-af2260dc96cd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:41:27 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8777c928-5855-475c-acfb-7583a02bc6a3" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "717abaac-f1e8-4279-bf9d-89dc6cb27b7c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11874" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T134159Z:717abaac-f1e8-4279-bf9d-89dc6cb27b7c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:41:58 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "99d26947-2d70-4e33-990e-0e12087bc675" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "f57bbefe-b1ae-4bef-8ed6-c383b7cf696c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11873" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T134229Z:f57bbefe-b1ae-4bef-8ed6-c383b7cf696c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:42:29 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "080754fe-3467-41ab-8770-357ab1d0b6d8" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "e977ba23-5b99-4571-a88f-5033b747c9de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11871" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T134300Z:e977ba23-5b99-4571-a88f-5033b747c9de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:42:59 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e558c939-1a97-46c4-99c4-57f51dccd1c4" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "a45da102-7e99-4de0-9f01-c365891cf704" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11869" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T134331Z:a45da102-7e99-4de0-9f01-c365891cf704" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:43:30 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aea642f3-61cb-41e5-8e66-58d6767f1282" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "acc358b8-fbef-4665-b9a9-3fc4aeae3dc7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11867" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T134401Z:acc358b8-fbef-4665-b9a9-3fc4aeae3dc7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:44:01 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c36d8d61-3157-44d1-ac1a-690935be01cf" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "d1c0258d-638c-4965-bd21-eaad4a435420" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11865" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T134432Z:d1c0258d-638c-4965-bd21-eaad4a435420" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:44:31 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "37110375-a325-4bcd-97a1-bec529be9744" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "84b6dec6-d893-4d58-98d1-f90a28376d73" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11872" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T134503Z:84b6dec6-d893-4d58-98d1-f90a28376d73" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:45:03 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "02ebc75f-f70f-46a3-8a3c-0ac3adf018ba" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "38d54520-4383-4450-9287-86a2c75c4c4f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11870" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T134533Z:38d54520-4383-4450-9287-86a2c75c4c4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:45:33 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "98a0035a-fa4d-4203-98cb-61263fe282fc" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "e21bf6ba-3cf8-47eb-871f-98bcfc10edfe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11868" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T134604Z:e21bf6ba-3cf8-47eb-871f-98bcfc10edfe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:46:04 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0243c495-7893-43ab-823b-09a1c3b72afe" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "79fef472-58d6-4b18-b268-a7b69c6bfbbb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11866" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T134636Z:79fef472-58d6-4b18-b268-a7b69c6bfbbb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:46:35 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2661af08-c6ff-4ad4-a968-b5debcb899b2" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "417e36f3-8501-4f9f-915c-2abab7ddefb7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11864" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T134706Z:417e36f3-8501-4f9f-915c-2abab7ddefb7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:47:05 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "197476fd-63be-44d0-9319-f70357979c98" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "3b71d985-c934-4bf0-8da7-45a5dddeb92d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11862" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T134737Z:3b71d985-c934-4bf0-8da7-45a5dddeb92d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:47:36 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "038dc0d7-7977-4171-b815-3d27d4314578" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "16e7c843-b2e3-4117-a842-e4d6d0dd0d3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11860" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T134808Z:16e7c843-b2e3-4117-a842-e4d6d0dd0d3e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:48:07 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "874118dd-687c-489c-ad64-d43ebd90e8ed" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "6ab0f375-b827-41c9-b6a0-dc782c3d6471" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11858" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T134838Z:6ab0f375-b827-41c9-b6a0-dc782c3d6471" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:48:38 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "97ba360f-a105-4737-a12b-f0615f6277ca" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "324aa594-4acd-4705-89a7-f3d4ccf00394" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11856" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T134909Z:324aa594-4acd-4705-89a7-f3d4ccf00394" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:49:09 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b62a1165-cf45-4998-a602-8cae26af6480" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "1be164e2-0c5d-4f41-9858-adff3adb67f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11854" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T134939Z:1be164e2-0c5d-4f41-9858-adff3adb67f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:49:39 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2b5a3722-dc30-4d46-8c64-023cea2116ed" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "d66ca4ac-99b3-4105-bad0-74e08b296e56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11862" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135010Z:d66ca4ac-99b3-4105-bad0-74e08b296e56" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:50:09 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "79b376c9-a5cf-4255-8970-178a7bbbc2e3" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "9c536dbc-6eef-4956-98ab-4a4a460ddf67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11860" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135041Z:9c536dbc-6eef-4956-98ab-4a4a460ddf67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:50:40 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3c4229ba-b9d9-49f2-beed-1a1dbe3560f8" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "a70ec63c-affa-409c-bc35-4f4f7c8c0ce3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11858" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135112Z:a70ec63c-affa-409c-bc35-4f4f7c8c0ce3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:51:12 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "607977c2-6258-42ed-9879-a9f8ec6d40f8" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "2fde85e9-d086-4ef2-8493-4d9f7112e384" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11857" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135143Z:2fde85e9-d086-4ef2-8493-4d9f7112e384" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:51:42 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2a673771-f34a-4812-9c1e-c68091d8432a" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "1bb3e518-d72a-4370-bd50-58f046799718" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11856" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135214Z:1bb3e518-d72a-4370-bd50-58f046799718" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:52:13 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6486381d-00ea-46ce-b0c9-747277e5fa5e" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "fbdc930f-6da0-4497-a858-35051bc92517" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11855" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135244Z:fbdc930f-6da0-4497-a858-35051bc92517" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:52:44 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "146a0369-28ac-4af1-bbda-dbcd666ea4b8" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "b6dc1533-184c-467f-9b3b-732d740ebf41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11854" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135315Z:b6dc1533-184c-467f-9b3b-732d740ebf41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:53:15 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bcb3fdd1-b794-4add-b484-8d64f9f1ef50" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "4769e1ef-5fd7-442d-8206-a3da6545da95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11853" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135345Z:4769e1ef-5fd7-442d-8206-a3da6545da95" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:53:45 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ee00688c-013d-4108-9f89-c37e47b7a293" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "80802b56-ec3f-4a4b-a552-2512fa9f9fde" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11852" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135416Z:80802b56-ec3f-4a4b-a552-2512fa9f9fde" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:54:15 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "be6ff4a7-6d33-40ef-a7a6-d4fdd67de077" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "32cce58e-9a96-4218-849c-b18a79b0b3cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11851" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135447Z:32cce58e-9a96-4218-849c-b18a79b0b3cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:54:47 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5df370e4-b5a3-4ddd-99a2-be963d28aa58" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "47441e66-390b-4623-a06e-7a2663dab7e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11850" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135447Z:47441e66-390b-4623-a06e-7a2663dab7e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:54:47 GMT" + ], + "Content-Length": [ + "1696" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709\",\r\n \"name\": \"hdi-ps-test4709\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"da843a0c-a64d-4cab-813b-ddee63b7c460\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.0.20\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2007190637.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"45ae380d2bb24c0c9cc91195525b378e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-21T13:37:20.473\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test4709-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test4709.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/clusters?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f9d4b39d-8ab6-44ae-8e45-ce0e0a26d83a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "80064094-cf4b-427e-8e86-3ec602c6d3d6", + "af9a49d0-f0fb-430d-a90d-59b812a99a0d", + "993b8bf8-c76f-46aa-9e2f-2b91581f83eb", + "e2470b8b-5f1d-4938-849e-3b492279c8b2", + "40d9ac26-5d95-4f87-8eea-2dc2e8167e29", + "810ddcbe-44ab-4df6-bf7a-14308084da79", + "204c7ab6-6701-45ba-a0dd-cd63b2b7cf4a", + "52fd5052-7312-40fb-8b96-c6423be4ad65", + "", + "f02611df-1d97-4fdc-9f47-8d8510a8ee38" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11858" + ], + "x-ms-request-id": [ + "ebf60869-5a7a-4567-a906-9ba640164551" + ], + "x-ms-correlation-request-id": [ + "ebf60869-5a7a-4567-a906-9ba640164551" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135508Z:ebf60869-5a7a-4567-a906-9ba640164551" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:55:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "181201" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestrg/providers/Microsoft.HDInsight/clusters/mktestsimplecluster\",\r\n \"name\": \"mktestsimplecluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"f347b6f1-522e-4766-9178-4164d1795972\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\r\n }\r\n },\r\n \"clusterId\": \"63239156629d4484a4cac63082bc5685\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-09T18:13:56.877\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsimplecluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsimplecluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"karthikkv4223hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsimplecluster-2020-07-09t18-13-03-973z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sfts-westus2-rg/providers/Microsoft.HDInsight/clusters/sfts1-westus2-vnet-20200702-1101\",\r\n \"name\": \"sfts1-westus2-vnet-20200702-1101\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"d29e396b-9086-4524-a847-f62defc28b35\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"3.1.2.1-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2003150128.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"3c19f679238e41d881b8258a25b0cffb\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sfts-westus2-rg/providers/Microsoft.Network/virtualNetworks/sfts-westus2-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sfts-westus2-rg/providers/Microsoft.Network/virtualNetworks/sfts-westus2-vnet/subnets/sfts-westus2-vnet-snet-0\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sfts-westus2-rg/providers/Microsoft.Network/virtualNetworks/sfts-westus2-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sfts-westus2-rg/providers/Microsoft.Network/virtualNetworks/sfts-westus2-vnet/subnets/sfts-westus2-vnet-snet-0\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sfts-westus2-rg/providers/Microsoft.Network/virtualNetworks/sfts-westus2-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sfts-westus2-rg/providers/Microsoft.Network/virtualNetworks/sfts-westus2-vnet/subnets/sfts-westus2-vnet-snet-0\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-02T18:01:32.93\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sfts1-westus2-vnet-20200702-1101-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sfts1-westus2-vnet-20200702-1101.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sfts1-westus2-vnet-20200702-1101-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sftswestus2stg2.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sfts1-westus2-vnet-20200702-1101\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvargCanEast/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-ambari1\",\r\n \"name\": \"nabikhch-ambari1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"a02609a2-e0c6-4614-ad97-d58c66180bb4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1910030544.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"5cc1f33f31d0464abde96f17cc3cf86e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode2\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode3\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-10-14T23:24:08.527\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-ambari1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-ambari1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"amittesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-ambari1-2019-10-14t23-22-55-513z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-canadaeast\",\r\n \"name\": \"nabikhch-canadaeast\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"7ab47101-9dca-43db-871e-56f9aac597cf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1908082122.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"55765300d6af43b7a1c39c9bc8344456\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-09-05T16:43:38.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidScaledownHostErrorCode\",\r\n \"message\": \"Invalid node 'workernode10' passed to scale down. NodesToDelete:'workernode10' WorkerNodes:'wn0-nabikh.xqgznflp4znetnj4yywmq4jeof.vx.internal.cloudapp.net,wn10-nabikh.xqgznflp4znetnj4yywmq4jeof.vx.internal.cloudapp.net,wn6-nabikh.xqgznflp4znetnj4yywmq4jeof.vx.internal.cloudapp.net\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-canadaeast-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-canadaeast.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhchcanadaeastsa.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-canadaeast-2019-09-05t16-42-08-126z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-rg/providers/Microsoft.HDInsight/clusters/adkorlepbootdg\",\r\n \"name\": \"adkorlepbootdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Europe\",\r\n \"etag\": \"b0c68120-1466-452e-b012-0573d8d3dad6\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"351acd2067c946eeb1db596acbd854d3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-rg/providers/Microsoft.Network/virtualNetworks/adkorlepbootVN\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-rg/providers/Microsoft.Network/virtualNetworks/adkorlepbootVN/subnets/adkorlepsubnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-rg/providers/Microsoft.Network/virtualNetworks/adkorlepbootVN\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-rg/providers/Microsoft.Network/virtualNetworks/adkorlepbootVN/subnets/adkorlepsubnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-rg/providers/Microsoft.Network/virtualNetworks/adkorlepbootVN\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-rg/providers/Microsoft.Network/virtualNetworks/adkorlepbootVN/subnets/adkorlepsubnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-14T05:44:28.16\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"adkorlepbootdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"adkorlepbootdg.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"adkorlepbootdg-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adkorlepbootdh.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"adkorlepbootdg-2020-07-14t05-42-38-023z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mariusonerg1/providers/Microsoft.HDInsight/clusters/mariusonehdi1\",\r\n \"name\": \"mariusonehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Europe\",\r\n \"etag\": \"50926cec-036f-4376-a172-6d9e3ea7448a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3022-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2004291541.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"b5a4d09b4f4b4d7f8c6496b6c8ec5852\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mariusonerg1/providers/Microsoft.Network/virtualNetworks/mariusonevnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mariusonerg1/providers/Microsoft.Network/virtualNetworks/mariusonevnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mariusonerg1/providers/Microsoft.Network/virtualNetworks/mariusonevnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mariusonerg1/providers/Microsoft.Network/virtualNetworks/mariusonevnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mariusonerg1/providers/Microsoft.Network/virtualNetworks/mariusonevnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mariusonerg1/providers/Microsoft.Network/virtualNetworks/mariusonevnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-05-14T16:18:59.917\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidScriptLocation\",\r\n \"message\": \"Failed to validate script action at URI https://mariusonestg1.blob.core.windows.net/testscriptaction/noop.sh?sp=r&st=2020-05-14T17:13:39Z&se=2021-05-16T01:13:39Z&spr=https&sv=2019-10-10&sr=b&sig=KwMJg70dZLFm2TlCWK2%2FUCnNs%2FbwPMGKCSPY8e7ZPgM%3D. Exception message: The remote server returned an error: (403) Forbidden..\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mariusonehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mariusonehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mariusonehdi1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mariusonestg1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mariusonehdi1-2020-05-14t16-16-46-039z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-sep-northeurope/providers/Microsoft.HDInsight/clusters/test-neu-clus12\",\r\n \"name\": \"test-neu-clus12\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Europe\",\r\n \"etag\": \"f54ae05b-9ca9-4944-a30c-5de9c3595ff7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"clusterId\": \"7d91b80fe42f42a7bb69300afc4b7bab\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-sep-northeurope/providers/Microsoft.Network/virtualNetworks/sepvnetneu\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-sep-northeurope/providers/Microsoft.Network/virtualNetworks/sepvnetneu/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-sep-northeurope/providers/Microsoft.Network/virtualNetworks/sepvnetneu\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-sep-northeurope/providers/Microsoft.Network/virtualNetworks/sepvnetneu/subnets/default\"\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-sep-northeurope/providers/Microsoft.Network/virtualNetworks/sepvnetneu\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-sep-northeurope/providers/Microsoft.Network/virtualNetworks/sepvnetneu/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-01T02:02:47.85\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-neu-clus12-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-neu-clus12.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-neu-clus12-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testneuclus12hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-neu-clus12-2020-07-01t02-01-17-419z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mariusowesteuroprg1/providers/Microsoft.HDInsight/clusters/mariusoadlgen2westeuhdi1\",\r\n \"name\": \"mariusoadlgen2westeuhdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"36e2c90e-6ae7-441d-a483-f5a0bf14e857\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"3.1.2.1-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2003150128.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"639998b59ea449e4b0bba01583afe2bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-24T17:15:14.097\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mariusoadlgen2westeuhdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mariusoadlgen2westeuhdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mariusoadlsgen2westeu1.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mariusowesteuroprg1/providers/Microsoft.Storage/storageAccounts/mariusoadlsgen2westeu1\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/mariusowesteuroprg1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mariusomsiwesteu1\",\r\n \"key\": null,\r\n \"fileSystem\": \"mariusoadlgen2westeuhdi-2020-06-24t17-11-11-445z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/mariusowesteuroprg1/providers/microsoft.managedidentity/userassignedidentities/mariusomsiwesteu1\": {\r\n \"principalId\": \"6e9be8e2-f1e5-4d1a-bddd-7468f72f8f2c\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ammeng/providers/Microsoft.HDInsight/clusters/ammengtesthadoop\",\r\n \"name\": \"ammengtesthadoop\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"61ce539a-579a-4233-b777-27ae07ed1d25\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"46760c6c130b42c2b54e8ca042986f70\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"ammeng\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"ammeng\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"ammeng\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-24T01:53:28.943\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ammengtesthadoop-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ammengtesthadoop.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ammengtesthadoop.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ammengtesthadoop-2020-06-24t01-50-49-952z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ammeng/providers/Microsoft.HDInsight/clusters/ammengtestspark\",\r\n \"name\": \"ammengtestspark\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"d90d69a1-837d-46c0-8a15-a2e80ac9878b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"325c83eadbd4489b99f5c4cdceb57970\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"ammeng\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"ammeng\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"ammeng\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-24T02:14:50.193\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ammengTestSpark-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ammengTestSpark.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ammengtestspark1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ammengtestspark-2020-06-24t02-12-42-581z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cdub-rg/providers/Microsoft.HDInsight/clusters/cdubkafka1dot1hdi3dot6\",\r\n \"name\": \"cdubkafka1dot1hdi3dot6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"e3fb7f66-81ae-4c67-ac30-3d0ddd6e4e95\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3022-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.2004291541.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"clusterId\": \"fe70a816330b4bdd8a34fe39f790dc1d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-02T07:32:08.28\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"ScriptExecutionFailed\",\r\n \"message\": \"The remote server returned an error: (502) Bad Gateway.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdubkafka1dot1hdi3dot6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdubkafka1dot1hdi3dot6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cdubkafka1dothdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cdubkafka1dot1hdi3dot6-2020-06-02t07-31-24-377z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cdub-rg/providers/Microsoft.HDInsight/clusters/cdubkafka1dot1hdi4dot0\",\r\n \"name\": \"cdubkafka1dot1hdi4dot0\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"aa0b2d3b-b8e5-4f80-865c-617b30cf4d94\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.1000.0.2003140425.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"clusterId\": \"1a1855ab5f4d4a37926d5091817b119a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-02T07:33:19.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdubkafka1dot1hdi4dot0-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdubkafka1dot1hdi4dot0.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cdubkafka1dothdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cdubkafka1dot1hdi4dot0-2020-06-02t07-32-30-151z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cdub-rg/providers/Microsoft.HDInsight/clusters/cdubkrphardwareoverrideeastus\",\r\n \"name\": \"cdubkrphardwareoverrideeastus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"1b3d21e6-5be7-46e0-a719-165edd418c07\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"3.1.2.1-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.2000.1.2003150128.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"47cb06587c044f6395f57ea465fc3d06\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"kafkamanagementnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-10T23:21:39.32\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 52\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdubKRPHardwareOverrideEastUS-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdubKRPHardwareOverrideEastUS.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"KafkaRestProxyPublicEndpoint\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdubkrphardwareoverrideeastus-kafkarest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"kafkaRestProperties\": {\r\n \"clientGroupInfo\": {\r\n \"groupName\": \"adgroup4522\",\r\n \"groupId\": \"6eccdfac-68e3-4c4f-a726-1a1f9949ddbb\"\r\n },\r\n \"configurationOverride\": null\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cdubkrphardwahdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cdubkrphardwareoverride-2020-06-10t23-20-41-341z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/deshrivae64i\",\r\n \"name\": \"deshrivae64i\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"ce5b03fe-9fa4-4c1b-b88f-39becd6c1fce\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2003150128.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"6743a13e42f74f65af08abdfaae9d267\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64i_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2020-06-06T03:15:21.49\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 136\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"deshrivae64i-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"deshrivae64i.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"deshrivatestchdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"deshrivae64i-2020-06-06t03-14-05-278z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/deshrivamarketplace\",\r\n \"name\": \"deshrivamarketplace\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"524a31f6-624a-4c16-9826-ed99ade77e5e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"c0454a498b2c49f5a182dd4f765485c2\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-24T17:37:53.81\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"deshrivamarketplace-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"deshrivamarketplace.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"deshrivamktplc.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"deshrivamarketplace-2020-06-24t17-36-34-439z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadywtraining/providers/Microsoft.HDInsight/clusters/fadywspark40\",\r\n \"name\": \"fadywspark40\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8fd3f584-e137-4d44-8540-f8235b6c7d9d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"3.1.2.1-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2003150128.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"040f0650af5240b29a02e07ec2896a31\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-02T05:48:40.42\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadywspark40-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadywspark40.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"fadywportalsdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fadywspark40-2020-06-02t05-47-52-287z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gavDevRp/providers/Microsoft.HDInsight/clusters/gavtest1\",\r\n \"name\": \"gavtest1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7bbdae3e-edd2-42ff-98fc-a03ceae86a95\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"4dc118bb26594350a504c52166669851\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-26T21:51:15.4\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"gavtest1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"gavtest1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"gavteststorage12.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"gavtest1-2020-06-26t21-48-02-279z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cdub-rg/providers/Microsoft.HDInsight/clusters/hbasetestcluster\",\r\n \"name\": \"hbasetestcluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"c06f34cc-b680-40f5-b591-0d0a3d500f89\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"3.1.2.1-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.2000.1.2003150128.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"33d36637c36c475cb2e5867bb083acfb\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-17T18:40:10.74\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 28\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hbasetestcluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hbasetestcluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cdub0527hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hbasetestcluster-2020-07-17t18-37-14-480z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/hdips-common\",\r\n \"name\": \"hdips-common\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"eecab269-2ef6-437f-a857-a1935b9f4e1b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"cf2875d153bb4f65823e0af4e45b9f1e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-21T07:27:16.013\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-common-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-common.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-custv-cluster-rg/providers/Microsoft.HDInsight/clusters/mawolfen-clust-to-lock\",\r\n \"name\": \"mawolfen-clust-to-lock\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"2b8ecc2c-9556-42ca-b0b9-e7827f14eb2f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3004-13\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810270004.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e29521270a734d1ab894e2ed53ed6e60\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-12-10T17:35:07.003\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestrg/providers/Microsoft.HDInsight/clusters/mktestisvapps\",\r\n \"name\": \"mktestisvapps\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"58c428ae-7232-4ef8-a091-6dfa5e55113f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"3.1.2.1-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.2000.1.2003150128.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"bb0772f2592746788157891ef5ac246a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-20T17:00:58.61\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestisvapps-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestisvapps.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestisvappshdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestisvapps-2020-07-20t16-59-47-111z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-ambari36\",\r\n \"name\": \"nabikhch-ambari36\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"c076c042-1056-486e-9ae6-a2d7f2a22c28\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3022-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2004291541.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"b168dcf458da4dc18d8d0291b1c3821b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-05-15T04:15:36.463\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-ambari36-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-ambari36.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bharathbhuestore.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-ambari36-2020-05-15t04-12-58-590z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.HDInsight/clusters/shangwei-sparktest\",\r\n \"name\": \"shangwei-sparktest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"ea07aafd-d4c0-4b7a-964e-e4ee33a89e4a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"1449ae0cc6fc499d804735ca8ca0c9b5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-16T09:15:19.657\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-sparktest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-sparktest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweistorageaccount.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-sparktest-2020-07-16t09-12-44-461z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/vingang-cluster/providers/Microsoft.HDInsight/clusters/testclustereastus\",\r\n \"name\": \"testclustereastus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"46ce7f2e-17c9-47e0-8277-606b6e6b112f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"1c0c48af03304b1ea346dd385c93774a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T00:51:57.01\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testClusterEastUS-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testClusterEastUS.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"vinaystorageaccount.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testclustereastus-2020-02-26t00-50-39-128z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzynoprivatelink\",\r\n \"name\": \"zzynoprivatelink\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"3b502ce4-ed10-4f45-bdc8-42918dac26f8\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"dee5cc17177a4fab951022cd2b97940b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-15T03:11:59.323\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzynoprivatelink-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzynoprivatelink.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzynoprivatelink-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzynoprivatelhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzynoprivatelink-2020-07-15t03-09-44-861z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzytestautoscale\",\r\n \"name\": \"zzytestautoscale\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"ecb24898-27e5-4989-ad62-f094682ba39a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"0dd69dd7dd2f489990c4324f934f38d6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 3,\r\n \"maxInstanceCount\": 8\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-09T08:06:05.377\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytestautoscale-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytestautoscale.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytestautoscale-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzytestautoscale-2020-07-09t08-04-15-542z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzy-test-cmk-cluster\",\r\n \"name\": \"zzy-test-cmk-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"dbb2e655-e122-4519-aa79-2b2977a6fc41\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3015-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2003150128.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"dae5ffde7f064a5597d723a17d6471ed\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-04-10T09:24:09.973\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy-test-cmk-cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy-test-cmk-cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://t-shasun-keyvault.vault.azure.net\",\r\n \"keyName\": \"CMK-psdev\",\r\n \"keyVersion\": \"2e3f6b896bf84900825767af8891a459\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/zzy-test-rg/providers/microsoft.managedidentity/userassignedidentities/zzy-ps-test-cmk\"\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytestcmkcluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzy-test-cmk-cluster-2020-04-10t09-22-39-579z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/zzy-test-rg/providers/microsoft.managedidentity/userassignedidentities/zzy-ps-test-cmk\": {\r\n \"principalId\": \"0afa8f76-81c1-4ea6-ba9a-f8331c260e93\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ammengRC/providers/Microsoft.HDInsight/clusters/ammengforrc\",\r\n \"name\": \"ammengforrc\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"57f800dd-67b6-4837-ba76-ab84c1bb0252\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2004291541.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"d33b7a753734465cac4aba0434ef5554\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2020-05-28T06:06:42.63\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StoragePermissionsBlockedForMsi\",\r\n \"message\": \"The Managed Identity does not have permissions on the storage account. Please verify that 'Storage Blob Data Owner' role is assigned to the Managed Identity for the storage account. Storage: /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-bugtest/providers/Microsoft.Storage/storageAccounts/congrliadlgen2, Managed Identity: /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/ammeng/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ammengMSI, Missing permissions: Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/add/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/deleteAutomaticSnapshot/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/runAsSuperUser/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/filter/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/tags/read,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/tags/write\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrliadlgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-bugtest/providers/Microsoft.Storage/storageAccounts/congrliadlgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/ammeng/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ammengMSI\",\r\n \"key\": null,\r\n \"fileSystem\": \"ammengforrc-2020-05-28t06-04-31-744z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/ammeng/providers/microsoft.managedidentity/userassignedidentities/ammengmsi\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ammengRC/providers/Microsoft.HDInsight/clusters/ammengforrcrcrc\",\r\n \"name\": \"ammengforrcrcrc\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"d5fa92d0-1fc4-43b3-bad0-3e2c09c2ef59\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2004291541.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"9ffadcd2a56949ab8629c926b6c43d83\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2020-05-29T00:30:18.28\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StoragePermissionsBlockedForMsi\",\r\n \"message\": \"The Managed Identity does not have permissions on the storage account. Please verify that 'Storage Blob Data Owner' role is assigned to the Managed Identity for the storage account. Storage: /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-bugtest/providers/Microsoft.Storage/storageAccounts/congrliadlgen2, Managed Identity: /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/ammeng/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ammengMSI, Missing permissions: Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/add/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/deleteAutomaticSnapshot/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/runAsSuperUser/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/filter/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/tags/read,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/tags/write\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://ammengtest.vault.azure.net\",\r\n \"keyName\": \"ammengRCTEST\",\r\n \"keyVersion\": \"3e315578ef4b4789bcbd5bc4b1caf934\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/ammeng/providers/microsoft.managedidentity/userassignedidentities/ammengmsi\"\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrliadlgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-bugtest/providers/Microsoft.Storage/storageAccounts/congrliadlgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/ammeng/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ammengMSI\",\r\n \"key\": null,\r\n \"fileSystem\": \"ammengforrcrcrc-2020-05-29t00-28-54-505z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/ammeng/providers/microsoft.managedidentity/userassignedidentities/ammengmsi\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ammengRC/providers/Microsoft.HDInsight/clusters/ammengtestrc\",\r\n \"name\": \"ammengtestrc\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"700a5f87-0137-4e36-8b8f-2fb5ffb15842\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2004291541.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"149b41cd0b514494b7b4fcbdab7f60bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2020-05-28T06:12:52.09\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StoragePermissionsBlockedForMsi\",\r\n \"message\": \"The Managed Identity does not have permissions on the storage account. Please verify that 'Storage Blob Data Owner' role is assigned to the Managed Identity for the storage account. Storage: /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-bugtest/providers/Microsoft.Storage/storageAccounts/congrliadlgen2, Managed Identity: /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/ammeng/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ammengMSI, Missing permissions: Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/add/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/deleteAutomaticSnapshot/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/runAsSuperUser/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/filter/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/tags/read,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/tags/write\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrliadlgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-bugtest/providers/Microsoft.Storage/storageAccounts/congrliadlgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/ammeng/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ammengMSI\",\r\n \"key\": null,\r\n \"fileSystem\": \"ammengtestrc-2020-05-28t06-11-35-578z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/ammeng/providers/microsoft.managedidentity/userassignedidentities/ammengmsi\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadywtraining/providers/Microsoft.HDInsight/clusters/fadyhadoopness\",\r\n \"name\": \"fadyhadoopness\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"9848f8a6-d094-4f17-9099-6d849fb9ba43\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2003150128.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"35b940144df6480abffe2ff0e89545fb\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2020-04-15T19:45:53.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToConnectWithClusterThroughGatewayErrorCode\",\r\n \"message\": \"Unable to connect to cluster management endpoint. Please retry later.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadyhadoopness-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadyhadoopness.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"fadyw.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fadyhadoopness-2020-04-15t19-43-01-528z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Test-FW-RG/providers/Microsoft.HDInsight/clusters/testoozieerror1\",\r\n \"name\": \"testoozieerror1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"2499aa33-194c-4618-8e8c-ae8bc9726b38\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"bfa0137bcf56473eac44c26380751856\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Test-FW-RG/providers/Microsoft.Network/virtualNetworks/Test-FW-VN\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Test-FW-RG/providers/Microsoft.Network/virtualNetworks/Test-FW-VN/subnets/Workload-SN\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Test-FW-RG/providers/Microsoft.Network/virtualNetworks/Test-FW-VN\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Test-FW-RG/providers/Microsoft.Network/virtualNetworks/Test-FW-VN/subnets/Workload-SN\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Test-FW-RG/providers/Microsoft.Network/virtualNetworks/Test-FW-VN\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Test-FW-RG/providers/Microsoft.Network/virtualNetworks/Test-FW-VN/subnets/Workload-SN\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2020-02-10T18:42:28.42\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidNetworkConfigurationErrorCode\",\r\n \"message\": \"Virtual Network configuration is not compatible with HDInsight Requirement. Error: 'Failed to connect to Azure SQL', Please follow https://go.microsoft.com/fwlink/?linkid=853974 to fix it. \"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testoozieerror1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testoozieerror1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testoozieerror1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testooziestg1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testoozieerror1-2020-02-10t18-41-26-343z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-test-wawon-rg/providers/Microsoft.HDInsight/clusters/wawon-test\",\r\n \"name\": \"wawon-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"2f286f2f-9bb1-4348-9fbd-7ee9fc35091b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3003-25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810062023.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e9017f01897f4a65bcf8e231ac3c01bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-11-12T01:23:36.633\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cdub-rg/providers/Microsoft.HDInsight/clusters/cdubkafka11hdi40\",\r\n \"name\": \"cdubkafka11hdi40\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"b813a5d7-bfb5-4a40-85e7-e75b14b9241d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.1000.0.2005250626.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"clusterId\": \"9ebfb234ac654796849fec584bc09744\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-05-29T06:24:09.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdubkafka11hdi40-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdubkafka11hdi40.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cdubkafka11hdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cdubkafka11hdi40-2020-05-29t06-23-09-112z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-scus/providers/Microsoft.HDInsight/clusters/congrli0610\",\r\n \"name\": \"congrli0610\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"90beba44-a429-4258-ad16-0c2a1f76fab2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"22d87ce7ad974de6bae9ab73ba8e5f3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-06-11T00:33:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrli0610storage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"congrli0610-2020-06-11t00-31-49-109z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicli-bunyk/providers/Microsoft.HDInsight/clusters/hdicli-hx5okkrgt\",\r\n \"name\": \"hdicli-hx5okkrgt\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"0be8ea2f-e76c-4db5-a2a2-23e96617114e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.1\",\r\n \"clusterHdpVersion\": \"3.1.6.2-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.1.2006192058.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c88be94e908d47339a7587556d0528c6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-28T11:28:03.203\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdicli-hx5okkrgt-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdicli-hx5okkrgt.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicliu6jej5gfxueebmfxgt.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicli-os32y/providers/Microsoft.HDInsight/clusters/hdicli-x3yvj44f7\",\r\n \"name\": \"hdicli-x3yvj44f7\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"99f72d3c-00e1-4b5b-bfc1-365dec9ef8e1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.1\",\r\n \"clusterHdpVersion\": \"3.1.6.2-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.1.2006192058.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"83a9398c046e4c88ba4654eb9b516ed6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-28T11:57:17.74\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdicli-x3yvj44f7-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdicli-x3yvj44f7.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdiclinb4i2ompcm5m3pt5j7.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/hdips-encryption\",\r\n \"name\": \"hdips-encryption\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"5322f7b1-14c4-4dcd-be49-1011e44355dc\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.0.20\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2007190637.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"61ae003b6865462bbf4bbdcc506bcb5b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-21T04:18:28.917\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-encryption-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-encryption.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/hdi-ps-privatelink\",\r\n \"name\": \"hdi-ps-privatelink\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"923a8494-c894-4760-9dcb-166f14dcea34\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2007190637.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"96cbcfcea24a477a9df53892eb73328b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/forprivatelink\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/forprivatelink\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/forprivatelink\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2020-07-21T08:18:19.817\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToConnectWithClusterErrorCode\",\r\n \"message\": \"Unable to connect to cluster management endpoint. Please retry later.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-privatelink-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-privatelink.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-privatelink-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n },\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"InboundAndOutbound\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709\",\r\n \"name\": \"hdi-ps-test4709\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"da843a0c-a64d-4cab-813b-ddee63b7c460\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.0.20\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2007190637.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"45ae380d2bb24c0c9cc91195525b378e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-21T13:37:20.473\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test4709-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test4709.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9926/providers/Microsoft.HDInsight/clusters/hdisdk-network5840\",\r\n \"name\": \"hdisdk-network5840\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"1631c6b6-eb9a-417d-bbaa-4d3087dd8f28\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.0.2006141704.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"8eed74fe34904b35949e4790ab233aed\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser829\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser829\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser829\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2020-06-18T14:04:19.877\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"SubnetNotConfiguredForPrivateLinkAccess\",\r\n \"message\": \"The subnet is not configured correctly for private link access. VirtualNetworkId: '/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus', Subnet: '/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/default'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage1355.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5005\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n },\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"OutboundOnly\",\r\n \"outboundOnlyPublicNetworkAccessType\": \"PublicLoadBalancer\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg529/providers/Microsoft.HDInsight/clusters/hdisdk-nodereboot9778\",\r\n \"name\": \"hdisdk-nodereboot9778\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"da68f382-7966-46b2-a346-88a28d54f3b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.0.2006040535.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"407dcfca269744e788dd72060f60f800\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser341\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 5,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser341\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser341\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-05T06:09:30.3\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 28\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-nodereboot9778-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-nodereboot9778.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3505.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default2967\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/hdi-zzyprivatelink4901\",\r\n \"name\": \"hdi-zzyprivatelink4901\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"2d1520b0-cd0e-4ab5-a944-52e74757a35f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3027-5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007090134.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"ed598a6b81c8457181ebc3cf50b6e5db\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3571\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/forprivatelink\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3571\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/forprivatelink\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3571\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/forprivatelink\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-14T12:31:42.867\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-zzyprivatelink4901-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-zzyprivatelink4901.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-zzyprivatelink4901-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5101.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6669\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n },\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"OutboundOnly\",\r\n \"outboundOnlyPublicNetworkAccessType\": \"PublicLoadBalancer\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzynovnet\",\r\n \"name\": \"zzynovnet\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"1e65ca6f-ab29-4b03-96ee-2c77dcc430ce\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3027-5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007090134.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"f084ff14e71b4ef480a3aa13f688961f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-15T03:51:05.58\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzynovnet-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzynovnet.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzyhadoophdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzynovnet-2020-07-15t03-47-27-033z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzy-outboundonly\",\r\n \"name\": \"zzy-outboundonly\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"efad0cbe-7b57-4f00-876e-946b69126958\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.0.20\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2007190637.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"d16b3144d31541d784ea6a8c9f6bda43\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/forprivatelink\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/forprivatelink\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/forprivatelink\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-21T08:54:47.027\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy-outboundonly-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy-outboundonly.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy-outboundonly-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n },\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"OutboundOnly\",\r\n \"outboundOnlyPublicNetworkAccessType\": \"PublicLoadBalancer\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cdub-rg/providers/Microsoft.HDInsight/clusters/cdubkafka2dot1hdi4dot0\",\r\n \"name\": \"cdubkafka2dot1hdi4dot0\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"40cb328e-3945-4c20-8d31-abfcdfa49086\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.0-50\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.1000.0.1810270004.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"0b2f69f07e5e4e15b523b0024bd15b07\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-02T07:35:12.707\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdubkafka2dot1hdi4dot0-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdubkafka2dot1hdi4dot0.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cdubkafka2dothdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cdubkafka2dot1hdi4dot0-2020-06-02t07-34-11-761z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg5609/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok7332\",\r\n \"name\": \"hdisdk-kafka-byok7332\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4bce3be2-6fd6-4f14-b892-644eed7e41dd\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3005-27\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1901050618.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"clusterId\": \"4bc3f816f75d417192f9347af461f69c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5189\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5189\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5189\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-17T15:42:37.437\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok7332-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok7332.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault703.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey16641\",\r\n \"keyVersion\": \"428c8ccbf3b84086a339ea9ce1d71e61\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg5609/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi4649\"\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage9970.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9088\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg5609/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi4649\": {\r\n \"principalId\": \"b30ff039-95f2-4143-bbe5-81903321e5e5\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg2974/providers/Microsoft.HDInsight/clusters/hdisdk-updateautoscale2079\",\r\n \"name\": \"hdisdk-updateautoscale2079\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5e826f5-ec2e-4438-b8e1-0238260d79f4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3005-27\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1901050618.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"3f38908795e244d3ab7051a3546819b6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser6069\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser6069\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser6069\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-14T11:42:12.407\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-updateautoscale2079-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-updateautoscale2079.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage4442.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1642\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-rg/providers/Microsoft.HDInsight/clusters/testcomponents1\",\r\n \"name\": \"testcomponents1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"2b051c9c-002c-487f-9a74-ae1d099edca2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3005-27\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1901050618.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"c476f7c986b0412ab4ba6f718b23b532\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-06T18:22:24.097\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testComponents1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testComponents1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testcomponenthdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testcomponents1-2020-07-06t18-20-16-270z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-rg/providers/Microsoft.HDInsight/clusters/vhdspark3\",\r\n \"name\": \"vhdspark3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"58efe5de-7951-4723-8758-4cbb46925816\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3005-27\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1901050618.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"5a6e3139ab3949a6b65f06e79a9cc5e6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-24T04:47:08.2\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"vhdspark3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"vhdspark3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"vhdspa.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"vhdspark3-2020-06-24t04-45-30-337z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzyadlsgen1test\",\r\n \"name\": \"zzyadlsgen1test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"45d66e53-9956-44a1-b9c9-b78eef485437\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3005-27\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1901050618.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"d4fa75adaddf4173a57d60bd979ee5e4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-04T08:57:17.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzyadlsgen1test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzyadlsgen1test.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/vingang-cluster/providers/Microsoft.HDInsight/clusters/testconfigureazsecpackactivity1\",\r\n \"name\": \"testconfigureazsecpackactivity1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"etag\": \"1a69f9a6-932e-40cf-a386-13a10b19b55f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2001031559.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"97496e8df4d546af8fa99b3042eb74fb\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2020-01-07T20:03:43.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToConnectWithClusterErrorCode\",\r\n \"message\": \"Unable to connect to cluster management endpoint. Please retry later.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"TestConfigureAzSecPackActivity1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"TestConfigureAzSecPackActivity1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"vinayteststorageaccount1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testconfigureazsecpacka-2020-01-07t19-56-17-373z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/serverlessdb-vinay/providers/Microsoft.HDInsight/clusters/testconfigureazsecpackactivityhadoop\",\r\n \"name\": \"testconfigureazsecpackactivityhadoop\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"etag\": \"41ff47fc-a069-46f3-92e2-8ceb93789d51\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001031559.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"d30f3fc1f364413581d521aab4f47fce\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2020-01-07T20:14:19.17\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToConnectWithClusterErrorCode\",\r\n \"message\": \"Unable to connect to cluster management endpoint. Please retry later.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"TestConfigureAzSecPackActivityHadoop-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"TestConfigureAzSecPackActivityHadoop.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testconfigurehdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testconfigureazsecpacka-2020-01-07t20-12-26-825z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7992/providers/Microsoft.HDInsight/clusters/hdi-ps-test4709?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NDcwOT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ed03e143-00e8-4466-9780-baba31cc3075" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/operationresults/030f4521-2119-495e-ae84-e1eb700bb8a9-0-r?api-version=2018-06-01-preview" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South Central US/azureasyncoperations/030f4521-2119-495e-ae84-e1eb700bb8a9-0-r?api-version=2018-06-01-preview" + ], + "x-ms-request-id": [ + "144e4230-ebe1-45f8-8f1e-448fb93b5af1" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "315448e7-647e-44f4-a4b7-7eb1a5fb464c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135512Z:315448e7-647e-44f4-a4b7-7eb1a5fb464c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:55:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/030f4521-2119-495e-ae84-e1eb700bb8a9-0-r?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy8wMzBmNDUyMS0yMTE5LTQ5NWUtYWU4NC1lMWViNzAwYmI4YTktMC1yP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e9bc6bd4-9d55-4e89-aadc-a171d9d0b947" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "980ad578-599a-4509-8e7e-2b5bf819f915" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11857" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135613Z:980ad578-599a-4509-8e7e-2b5bf819f915" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:56:13 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/operationresults/030f4521-2119-495e-ae84-e1eb700bb8a9-0-r?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzAzMGY0NTIxLTIxMTktNDk1ZS1hZTg0LWUxZWI3MDBiYjhhOS0wLXI/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bd2f7c33-c69b-4e27-ac66-a117b6ca4cea" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "d6cba3f2-b916-48e5-8e19-5d1d61e3e0b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11856" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135614Z:d6cba3f2-b916-48e5-8e19-5d1d61e3e0b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:56:13 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test7992?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTkyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f33a174-9084-423f-a3fc-110da1b14949" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5OTItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "9b90fec9-d8f4-4928-9f68-6682154b0ee8" + ], + "x-ms-correlation-request-id": [ + "9b90fec9-d8f4-4928-9f68-6682154b0ee8" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135617Z:9b90fec9-d8f4-4928-9f68-6682154b0ee8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:56:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5OTItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM1T1RJdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5OTItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "7af83281-d674-4d27-9602-cd46f63c442e" + ], + "x-ms-correlation-request-id": [ + "7af83281-d674-4d27-9602-cd46f63c442e" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135633Z:7af83281-d674-4d27-9602-cd46f63c442e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:56:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5OTItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM1T1RJdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5OTItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "e783ad22-fc1d-4d5d-8ff2-a96e6c71a8bd" + ], + "x-ms-correlation-request-id": [ + "e783ad22-fc1d-4d5d-8ff2-a96e6c71a8bd" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135648Z:e783ad22-fc1d-4d5d-8ff2-a96e6c71a8bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:56:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5OTItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM1T1RJdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5OTItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "b65d59d3-56b2-4092-8ffa-66368dc411e0" + ], + "x-ms-correlation-request-id": [ + "b65d59d3-56b2-4092-8ffa-66368dc411e0" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135704Z:b65d59d3-56b2-4092-8ffa-66368dc411e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:57:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5OTItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM1T1RJdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5OTItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "b914e660-aff6-405b-938e-73a47c80e1fa" + ], + "x-ms-correlation-request-id": [ + "b914e660-aff6-405b-938e-73a47c80e1fa" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135720Z:b914e660-aff6-405b-938e-73a47c80e1fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:57:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5OTItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM1T1RJdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5OTItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "8e0322ea-738f-4f67-a70c-2599bc4265bf" + ], + "x-ms-correlation-request-id": [ + "8e0322ea-738f-4f67-a70c-2599bc4265bf" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135735Z:8e0322ea-738f-4f67-a70c-2599bc4265bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:57:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5OTItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM1T1RJdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5OTItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "e28f4e26-528a-4664-97e8-262e909d0c4f" + ], + "x-ms-correlation-request-id": [ + "e28f4e26-528a-4664-97e8-262e909d0c4f" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135751Z:e28f4e26-528a-4664-97e8-262e909d0c4f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:57:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5OTItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM1T1RJdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "c35f5a02-4dac-4d85-a43f-f0cc80fc5d28" + ], + "x-ms-correlation-request-id": [ + "c35f5a02-4dac-4d85-a43f-f0cc80fc5d28" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135806Z:c35f5a02-4dac-4d85-a43f-f0cc80fc5d28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:58:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5OTItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM1T1RJdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "81dfee6a-cfb7-4fa3-ad9a-5870ca6618ea" + ], + "x-ms-correlation-request-id": [ + "81dfee6a-cfb7-4fa3-ad9a-5870ca6618ea" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200721T135807Z:81dfee6a-cfb7-4fa3-ad9a-5870ca6618ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 21 Jul 2020 13:58:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateClusterWithEncryptionInTransit": [ + "hdi-ps-test4709", + "group-ps-test7992", + "storagepstest9407" + ] + }, + "Variables": { + "SubscriptionId": "964c10bb-8a6c-43bc-83d3-6b318c6c7305" + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithPrivateLink.json b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithPrivateLink.json new file mode 100644 index 000000000000..45b13ef5b83b --- /dev/null +++ b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithPrivateLink.json @@ -0,0 +1,4167 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6542?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "502a2326-f372-42a7-a042-ee511766758f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "38" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "8fa5343c-4236-4a23-83f7-a0e73124e7df" + ], + "x-ms-correlation-request-id": [ + "8fa5343c-4236-4a23-83f7-a0e73124e7df" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T065123Z:8fa5343c-4236-4a23-83f7-a0e73124e7df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 06:51:23 GMT" + ], + "Content-Length": [ + "195" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542\",\r\n \"name\": \"group-ps-test6542\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Storage/storageAccounts/storagepstest8786?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDg3ODY/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"South Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d2bb8424-341a-4481-a2f8-b78995f05e68" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.17" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "110" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/dc7bc4d1-1064-46ce-96a2-669ff6c81488?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "dc7bc4d1-1064-46ce-96a2-669ff6c81488" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "aabdb3af-fff9-4835-a89b-f0107ac94f7a" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T065131Z:aabdb3af-fff9-4835-a89b-f0107ac94f7a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 06:51:31 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/dc7bc4d1-1064-46ce-96a2-669ff6c81488?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvYXN5bmNvcGVyYXRpb25zL2RjN2JjNGQxLTEwNjQtNDZjZS05NmEyLTY2OWZmNmM4MTQ4OD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d7353970-e6ab-4a9a-97e3-4d8e20d50809" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "ba5af937-2d8a-462d-ba4f-facbf59fa259" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T065149Z:ba5af937-2d8a-462d-ba4f-facbf59fa259" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 06:51:49 GMT" + ], + "Content-Length": [ + "1408" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Storage/storageAccounts/storagepstest8786\",\r\n \"name\": \"storagepstest8786\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-22T06:51:31.2875105Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-22T06:51:31.2875105Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-07-22T06:51:31.1937839Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest8786.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest8786.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest8786.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest8786.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"northcentralus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest8786-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest8786-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest8786-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Storage/storageAccounts/storagepstest8786/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDg3ODYvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f3ac95fb-d72e-4e84-a94c-eff203720c29" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6526c269-f0b1-4c75-a681-9ff59ca4e759" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "ca0e867c-a0b2-4df9-a3eb-3c9f381f2138" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T065150Z:ca0e867c-a0b2-4df9-a3eb-3c9f381f2138" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 06:51:49 GMT" + ], + "Content-Length": [ + "288" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"dApc7iIvzTl+4qxAXjQwKYUQiUsr+QOrtDdGXq7d4SdvGz4ydb7AGjqIBMBd9atZowQILRITskUh46OZaa6bVw==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"U0aCd8XDy4IX9nSnB7uBQCYAQw7cgLj5ObSDbYj9Y4QokygzgG4/o3CKfQbGa91yc1MdLfIEFYMmEfpdui5Lew==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvaGRpLXBzLXZuZXQ0ODcxP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "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.0.0/24\",\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Disabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ]\r\n },\r\n \"location\": \"South Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "47447e9b-563d-424e-8305-40bd40b9e95d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "419" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "a1880874-0a0b-4cd9-a45c-2b793d91fcf0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Network/locations/southcentralus/operations/a1880874-0a0b-4cd9-a45c-2b793d91fcf0?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "6b924777-6b6f-4e2a-9d3c-8251857c0774" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "fbb52128-1d56-474b-a4a4-acdf01fc2921" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T065158Z:6b924777-6b6f-4e2a-9d3c-8251857c0774" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 06:51:58 GMT" + ], + "Content-Length": [ + "1291" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"hdi-ps-vnet4871\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871\",\r\n \"etag\": \"W/\\\"bb144aac-6a35-4cfd-b0c6-a177025759ca\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f1622b74-29ed-4dd1-800d-86db97f2f57d\",\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\": \"default\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871/subnets/default\",\r\n \"etag\": \"W/\\\"bb144aac-6a35-4cfd-b0c6-a177025759ca\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Disabled\"\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}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Network/locations/southcentralus/operations/a1880874-0a0b-4cd9-a45c-2b793d91fcf0?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9ucy9hMTg4MDg3NC0wYTBiLTRjZDktYTQ1Yy0yYjc5M2Q5MWZjZjA/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "af0ee1e6-9e59-4cd5-b9a3-ce3354710f4c" + ], + "x-ms-correlation-request-id": [ + "c1013a83-07c3-460a-a49b-8b71fdb861b0" + ], + "x-ms-arm-service-request-id": [ + "4f508393-a389-4858-aa32-2f1e5ffd81cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T065202Z:c1013a83-07c3-460a-a49b-8b71fdb861b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 06:52:01 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvaGRpLXBzLXZuZXQ0ODcxP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"6265c1f4-9191-4b45-915b-841a53fb8b53\"" + ], + "x-ms-request-id": [ + "fd715b66-01fe-44ba-8af3-93789da02ddd" + ], + "x-ms-correlation-request-id": [ + "8c86bac1-6524-4fed-90f4-b1ecc2e94c53" + ], + "x-ms-arm-service-request-id": [ + "9e1ca99f-0e50-483d-870e-e2c4edbbe499" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T065202Z:8c86bac1-6524-4fed-90f4-b1ecc2e94c53" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 06:52:02 GMT" + ], + "Content-Length": [ + "1293" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"hdi-ps-vnet4871\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871\",\r\n \"etag\": \"W/\\\"6265c1f4-9191-4b45-915b-841a53fb8b53\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f1622b74-29ed-4dd1-800d-86db97f2f57d\",\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\": \"default\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871/subnets/default\",\r\n \"etag\": \"W/\\\"6265c1f4-9191-4b45-915b-841a53fb8b53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Disabled\"\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}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4ND9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"default\",\r\n \"osType\": \"Linux\",\r\n \"tier\": \"Standard\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {},\r\n \"configurations\": {\r\n \"core-site\": {\r\n \"fs.defaultFS\": \"wasb://hdi-ps-test2184@storagepstest8786.blob.core.windows.net\",\r\n \"fs.azure.account.key.storagepstest8786.blob.core.windows.net\": \"dApc7iIvzTl+4qxAXjQwKYUQiUsr+QOrtDdGXq7d4SdvGz4ydb7AGjqIBMBd9atZowQILRITskUh46OZaa6bVw==\"\r\n },\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871/subnets/default\"\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871/subnets/default\"\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Small\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871/subnets/default\"\r\n }\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"OutboundOnly\",\r\n \"outboundOnlyPublicNetworkAccessType\": \"PublicLoadBalancer\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "19e1cfed-642a-4ffb-a706-706a60665a70" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3304" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"e1588c10-8b5f-4676-bc8b-d02c9c136cf8\"" + ], + "x-ms-hdi-clusteruri": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184?api-version=2018-06-01-preview" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview" + ], + "x-ms-request-id": [ + "35327fab-73fe-4eac-a337-d670ddfd9806" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "9f0be3fa-92ad-4088-b561-f5bea7daeb6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T065215Z:9f0be3fa-92ad-4088-b561-f5bea7daeb6e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 06:52:15 GMT" + ], + "Content-Length": [ + "2644" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184\",\r\n \"name\": \"hdi-ps-test2184\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"e1588c10-8b5f-4676-bc8b-d02c9c136cf8\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.1.2007210011.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cd28ecfc4ad04b75a2c264e09e4952e7\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2020-07-22T06:52:13.833\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n },\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"OutboundOnly\",\r\n \"outboundOnlyPublicNetworkAccessType\": \"PublicLoadBalancer\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f11b4aa6-f84f-47c4-9cf4-047a6581ba00" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "6ba578e4-c9a6-48fc-ab3f-f9d79c2b8004" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T065246Z:6ba578e4-c9a6-48fc-ab3f-f9d79c2b8004" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 06:52:45 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f6f1481c-f068-4afe-825b-4de53e2d931f" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "fe6b859f-8aa8-491a-a717-be5f65cf0463" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T065316Z:fe6b859f-8aa8-491a-a717-be5f65cf0463" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 06:53:15 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9d1007c2-7e7c-47ce-911a-7f6196f8d0e2" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "989b4bdc-05b8-4f54-ba92-8107fce1b411" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T065347Z:989b4bdc-05b8-4f54-ba92-8107fce1b411" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 06:53:47 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "62967909-79d7-465f-b18a-da5e6714b51b" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "bf11f610-f088-4f39-9a8f-06d3b21ffc9b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T065417Z:bf11f610-f088-4f39-9a8f-06d3b21ffc9b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 06:54:17 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "97ba8f13-a549-4c0d-800c-07e706460ca8" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "0bff53db-0a87-4367-997f-0bbab0393be2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T065448Z:0bff53db-0a87-4367-997f-0bbab0393be2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 06:54:47 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "26524305-f217-44e5-af3d-75a678ef6aeb" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "3442016e-d203-43e2-8edf-963c1a5d4dad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T065519Z:3442016e-d203-43e2-8edf-963c1a5d4dad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 06:55:18 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "abc1bfd7-b67b-4aa3-bd79-0d9804aa89ac" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "7e91d9aa-ec90-4aba-95a9-553bc23ffeed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T065549Z:7e91d9aa-ec90-4aba-95a9-553bc23ffeed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 06:55:49 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "73746110-64a8-4b11-b149-13228200e626" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "97f05d50-4c5a-45e7-84b5-33dc6e13ebb1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T065620Z:97f05d50-4c5a-45e7-84b5-33dc6e13ebb1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 06:56:19 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4e5dbc62-0556-4273-94e1-535d76f8c6b3" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "3632ad4f-3e2e-47c0-80df-e861e85b262a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T065650Z:3632ad4f-3e2e-47c0-80df-e861e85b262a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 06:56:50 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "55fa9f86-4f86-4202-b08f-4080a0bcfca3" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "5f09f219-958a-4a42-9d67-95a30c7ce984" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T065721Z:5f09f219-958a-4a42-9d67-95a30c7ce984" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 06:57:20 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "52c5ff4b-678d-4943-8993-a82a2adda6e7" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "afa72467-840a-4b5e-a6f6-69ce53c09522" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T065752Z:afa72467-840a-4b5e-a6f6-69ce53c09522" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 06:57:51 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f17c6e16-49bb-4184-95f9-134b5524bc44" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "cc37611f-8f67-46d2-b89d-924345ea58eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T065822Z:cc37611f-8f67-46d2-b89d-924345ea58eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 06:58:22 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "61a59d5b-b121-4faa-95a1-44238bca2140" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "73f1ad41-bb22-4def-9698-0b13f000f9fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T065854Z:73f1ad41-bb22-4def-9698-0b13f000f9fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 06:58:53 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9be20f36-62ac-4a31-aadc-5376681e8db7" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "a54b97a7-6eea-43d3-9a6e-fd38dd47b93b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T065924Z:a54b97a7-6eea-43d3-9a6e-fd38dd47b93b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 06:59:24 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6a38402a-160d-4877-b837-09f8e808b3b0" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "6ce95306-def1-4bc6-bc35-7c4cac7b7a1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T065955Z:6ce95306-def1-4bc6-bc35-7c4cac7b7a1f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 06:59:55 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "54c90c66-6c77-46e8-b04b-f60556e1cfb9" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "51e80830-4940-4582-ba8e-c156cc3192ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T070026Z:51e80830-4940-4582-ba8e-c156cc3192ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:00:25 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7491cece-5e73-486f-9698-dfbb3bc9e709" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "c2506a72-6a9a-4a9c-9a89-2d41e9cb8c40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T070056Z:c2506a72-6a9a-4a9c-9a89-2d41e9cb8c40" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:00:55 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "64144209-7d71-485c-be23-10943564c49e" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "872d6d49-553c-48ed-932e-a881df14883f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T070127Z:872d6d49-553c-48ed-932e-a881df14883f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:01:27 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "55b6bc26-83c4-4385-8284-690c3814f8fe" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "477533e2-e3cd-482b-a642-78e1825ff9b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T070158Z:477533e2-e3cd-482b-a642-78e1825ff9b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:01:57 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cf815ec3-be8b-4776-8c94-b94d561de783" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "63d7f4e7-0849-449e-9cab-42894eed0a03" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T070228Z:63d7f4e7-0849-449e-9cab-42894eed0a03" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:02:27 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2def83c7-b78f-4058-b0b8-f05713930588" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "7cd14435-049d-4eeb-b931-f3bb5bc746c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T070259Z:7cd14435-049d-4eeb-b931-f3bb5bc746c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:02:59 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "13e10ec1-d2b1-4c62-9ad6-608ab0bee3f2" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "580869ef-8f41-4c1d-b80b-cbd0f9ddc6b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T070329Z:580869ef-8f41-4c1d-b80b-cbd0f9ddc6b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:03:29 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c20c575b-0a37-4bb0-9066-50c7703bcbbb" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "e4a1fd4b-dcb8-40fb-b0c2-40310d748f0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T070400Z:e4a1fd4b-dcb8-40fb-b0c2-40310d748f0a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:03:59 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e445372d-014c-4b5d-aee3-4f713c3c0c5f" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "9e90c305-27f3-41b2-b1b6-f7052f5f666f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T070431Z:9e90c305-27f3-41b2-b1b6-f7052f5f666f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:04:30 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ce998072-2bea-4bb2-9bf7-b6d508240129" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "a54240be-8d1c-4ebf-a572-70efec411a59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T070501Z:a54240be-8d1c-4ebf-a572-70efec411a59" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:05:01 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "35f2f144-8a52-4723-8593-23dc63ba5843" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "e8f7f952-5ac1-4838-b1e1-f2bfdd855059" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T070533Z:e8f7f952-5ac1-4838-b1e1-f2bfdd855059" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:05:33 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4ab7b476-99da-49ed-bab3-a421575fef24" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "2427704d-072d-4bf4-9295-a33aa052201a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T070604Z:2427704d-072d-4bf4-9295-a33aa052201a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:06:03 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d3d49665-354b-4104-96c9-de1d8d1948b0" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "7da962db-b92c-4e35-abcc-bef4360ff1be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T070634Z:7da962db-b92c-4e35-abcc-bef4360ff1be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:06:34 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f4607399-fb5a-4d83-9e08-2af8d1b61705" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "c9370416-9dc8-458e-830f-57485dfe1646" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T070705Z:c9370416-9dc8-458e-830f-57485dfe1646" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:07:05 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "103d968c-a1fb-493b-b882-e39b8f97657a" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "f27039be-6cda-409c-8bc8-9f923ffa1d4d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T070736Z:f27039be-6cda-409c-8bc8-9f923ffa1d4d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:07:35 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f9efe393-dddb-427c-9e14-b8df6b14d696" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "7d706672-bcb1-4257-8e6c-38eb071b29a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T070806Z:7d706672-bcb1-4257-8e6c-38eb071b29a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:08:05 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1f1871ec-54d9-43f1-8100-551a65b3a84a" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "efeffdf5-4511-47d2-828d-071c868782f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T070837Z:efeffdf5-4511-47d2-828d-071c868782f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:08:36 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d1b9f63c-a935-452b-9e7b-e1f487bed032" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "0b9ca01a-3692-4f21-a2ee-a46313c703bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T070908Z:0b9ca01a-3692-4f21-a2ee-a46313c703bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:09:07 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7ecd54ba-d1d6-4d73-80fa-e6c4bb13cac4" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "1dfcddca-480d-47d8-b80e-c348a4ff6871" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T070938Z:1dfcddca-480d-47d8-b80e-c348a4ff6871" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:09:38 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9ac51fc6-d1f7-4d3f-a263-c912b83eea10" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "9abe5dff-e11b-46e8-83b7-a703e9256fbd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T071009Z:9abe5dff-e11b-46e8-83b7-a703e9256fbd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:10:08 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4ND9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9fa8f275-942f-4edf-9efd-a3b5817e1ddd" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "5ae6ca70-0d2c-4320-8b41-bd8d018a2c30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T071009Z:5ae6ca70-0d2c-4320-8b41-bd8d018a2c30" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:10:09 GMT" + ], + "Content-Length": [ + "2970" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184\",\r\n \"name\": \"hdi-ps-test2184\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"e1588c10-8b5f-4676-bc8b-d02c9c136cf8\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.1\",\r\n \"clusterHdpVersion\": \"3.1.6.2-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.1.2007210011.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cd28ecfc4ad04b75a2c264e09e4952e7\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-22T06:52:13.833\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2184-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2184.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2184-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n },\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"OutboundOnly\",\r\n \"outboundOnlyPublicNetworkAccessType\": \"PublicLoadBalancer\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/clusters?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e58acfc-4587-4510-a3e6-ce16829673c6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "2fdf227f-6368-4556-ba06-89954949ec35", + "80147d5c-4a36-466c-8e83-fadbb8626bee", + "0bf2db29-435f-4604-b4de-2002957805ad", + "d976e813-8452-453e-921c-4412b1a16231", + "6cce6d3b-8d7a-4bb9-b1c1-f7a3be7aed59", + "718d1d1d-d895-4571-8431-59966d9218b5", + "1e25609c-f19b-446a-b68c-323ba685a7c2", + "", + "", + "49343d3a-f920-4a32-a445-87ea642db9e0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-request-id": [ + "ef9b317a-4052-4418-853e-37fb36137863" + ], + "x-ms-correlation-request-id": [ + "ef9b317a-4052-4418-853e-37fb36137863" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T071030Z:ef9b317a-4052-4418-853e-37fb36137863" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:10:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "162035" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestrg/providers/Microsoft.HDInsight/clusters/mktestsimplecluster\",\r\n \"name\": \"mktestsimplecluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"f347b6f1-522e-4766-9178-4164d1795972\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\r\n }\r\n },\r\n \"clusterId\": \"63239156629d4484a4cac63082bc5685\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-09T18:13:56.877\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsimplecluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsimplecluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"karthikkv4223hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsimplecluster-2020-07-09t18-13-03-973z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestrg/providers/Microsoft.HDInsight/clusters/sadfasdfasdf\",\r\n \"name\": \"sadfasdfasdf\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"6cd1be0b-5ed7-495f-bf0b-949f51d84076\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"23cd88b60e36450c87df71579e195b48\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-22T01:00:21.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sadfasdfasdf-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sadfasdfasdf.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sftswestus2stg2.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sadfasdfasdf-2020-07-22t00-59-07-399z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sfts-westus2-rg/providers/Microsoft.HDInsight/clusters/sfts1-westus2-vnet-20200702-1101\",\r\n \"name\": \"sfts1-westus2-vnet-20200702-1101\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"d29e396b-9086-4524-a847-f62defc28b35\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"3.1.2.1-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2003150128.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"3c19f679238e41d881b8258a25b0cffb\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sfts-westus2-rg/providers/Microsoft.Network/virtualNetworks/sfts-westus2-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sfts-westus2-rg/providers/Microsoft.Network/virtualNetworks/sfts-westus2-vnet/subnets/sfts-westus2-vnet-snet-0\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sfts-westus2-rg/providers/Microsoft.Network/virtualNetworks/sfts-westus2-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sfts-westus2-rg/providers/Microsoft.Network/virtualNetworks/sfts-westus2-vnet/subnets/sfts-westus2-vnet-snet-0\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sfts-westus2-rg/providers/Microsoft.Network/virtualNetworks/sfts-westus2-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sfts-westus2-rg/providers/Microsoft.Network/virtualNetworks/sfts-westus2-vnet/subnets/sfts-westus2-vnet-snet-0\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-02T18:01:32.93\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sfts1-westus2-vnet-20200702-1101-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sfts1-westus2-vnet-20200702-1101.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sfts1-westus2-vnet-20200702-1101-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sftswestus2stg2.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sfts1-westus2-vnet-20200702-1101\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvargCanEast/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-ambari1\",\r\n \"name\": \"nabikhch-ambari1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"a02609a2-e0c6-4614-ad97-d58c66180bb4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1910030544.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"5cc1f33f31d0464abde96f17cc3cf86e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode2\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode3\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-10-14T23:24:08.527\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-ambari1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-ambari1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"amittesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-ambari1-2019-10-14t23-22-55-513z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-canadaeast\",\r\n \"name\": \"nabikhch-canadaeast\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"7ab47101-9dca-43db-871e-56f9aac597cf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1908082122.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"55765300d6af43b7a1c39c9bc8344456\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-09-05T16:43:38.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidScaledownHostErrorCode\",\r\n \"message\": \"Invalid node 'workernode10' passed to scale down. NodesToDelete:'workernode10' WorkerNodes:'wn0-nabikh.xqgznflp4znetnj4yywmq4jeof.vx.internal.cloudapp.net,wn10-nabikh.xqgznflp4znetnj4yywmq4jeof.vx.internal.cloudapp.net,wn6-nabikh.xqgznflp4znetnj4yywmq4jeof.vx.internal.cloudapp.net\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-canadaeast-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-canadaeast.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhchcanadaeastsa.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-canadaeast-2019-09-05t16-42-08-126z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-rg/providers/Microsoft.HDInsight/clusters/adkorlepbootdg\",\r\n \"name\": \"adkorlepbootdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Europe\",\r\n \"etag\": \"b0c68120-1466-452e-b012-0573d8d3dad6\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"351acd2067c946eeb1db596acbd854d3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-rg/providers/Microsoft.Network/virtualNetworks/adkorlepbootVN\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-rg/providers/Microsoft.Network/virtualNetworks/adkorlepbootVN/subnets/adkorlepsubnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-rg/providers/Microsoft.Network/virtualNetworks/adkorlepbootVN\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-rg/providers/Microsoft.Network/virtualNetworks/adkorlepbootVN/subnets/adkorlepsubnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-rg/providers/Microsoft.Network/virtualNetworks/adkorlepbootVN\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-rg/providers/Microsoft.Network/virtualNetworks/adkorlepbootVN/subnets/adkorlepsubnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-14T05:44:28.16\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"adkorlepbootdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"adkorlepbootdg.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"adkorlepbootdg-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adkorlepbootdh.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"adkorlepbootdg-2020-07-14t05-42-38-023z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mariusonerg1/providers/Microsoft.HDInsight/clusters/mariusonehdi1\",\r\n \"name\": \"mariusonehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Europe\",\r\n \"etag\": \"50926cec-036f-4376-a172-6d9e3ea7448a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3022-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2004291541.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"b5a4d09b4f4b4d7f8c6496b6c8ec5852\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mariusonerg1/providers/Microsoft.Network/virtualNetworks/mariusonevnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mariusonerg1/providers/Microsoft.Network/virtualNetworks/mariusonevnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mariusonerg1/providers/Microsoft.Network/virtualNetworks/mariusonevnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mariusonerg1/providers/Microsoft.Network/virtualNetworks/mariusonevnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mariusonerg1/providers/Microsoft.Network/virtualNetworks/mariusonevnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mariusonerg1/providers/Microsoft.Network/virtualNetworks/mariusonevnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-05-14T16:18:59.917\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidScriptLocation\",\r\n \"message\": \"Failed to validate script action at URI https://mariusonestg1.blob.core.windows.net/testscriptaction/noop.sh?sp=r&st=2020-05-14T17:13:39Z&se=2021-05-16T01:13:39Z&spr=https&sv=2019-10-10&sr=b&sig=KwMJg70dZLFm2TlCWK2%2FUCnNs%2FbwPMGKCSPY8e7ZPgM%3D. Exception message: The remote server returned an error: (403) Forbidden..\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mariusonehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mariusonehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mariusonehdi1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mariusonestg1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mariusonehdi1-2020-05-14t16-16-46-039z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-sep-northeurope/providers/Microsoft.HDInsight/clusters/test-neu-clus12\",\r\n \"name\": \"test-neu-clus12\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Europe\",\r\n \"etag\": \"f54ae05b-9ca9-4944-a30c-5de9c3595ff7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"clusterId\": \"7d91b80fe42f42a7bb69300afc4b7bab\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-sep-northeurope/providers/Microsoft.Network/virtualNetworks/sepvnetneu\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-sep-northeurope/providers/Microsoft.Network/virtualNetworks/sepvnetneu/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-sep-northeurope/providers/Microsoft.Network/virtualNetworks/sepvnetneu\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-sep-northeurope/providers/Microsoft.Network/virtualNetworks/sepvnetneu/subnets/default\"\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-sep-northeurope/providers/Microsoft.Network/virtualNetworks/sepvnetneu\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-sep-northeurope/providers/Microsoft.Network/virtualNetworks/sepvnetneu/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-01T02:02:47.85\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-neu-clus12-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-neu-clus12.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-neu-clus12-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testneuclus12hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-neu-clus12-2020-07-01t02-01-17-419z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mariusowesteuroprg1/providers/Microsoft.HDInsight/clusters/mariusoadlgen2westeuhdi1\",\r\n \"name\": \"mariusoadlgen2westeuhdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"36e2c90e-6ae7-441d-a483-f5a0bf14e857\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"3.1.2.1-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2003150128.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"639998b59ea449e4b0bba01583afe2bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-24T17:15:14.097\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mariusoadlgen2westeuhdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mariusoadlgen2westeuhdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mariusoadlsgen2westeu1.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mariusowesteuroprg1/providers/Microsoft.Storage/storageAccounts/mariusoadlsgen2westeu1\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/mariusowesteuroprg1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mariusomsiwesteu1\",\r\n \"key\": null,\r\n \"fileSystem\": \"mariusoadlgen2westeuhdi-2020-06-24t17-11-11-445z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/mariusowesteuroprg1/providers/microsoft.managedidentity/userassignedidentities/mariusomsiwesteu1\": {\r\n \"principalId\": \"6e9be8e2-f1e5-4d1a-bddd-7468f72f8f2c\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ammeng/providers/Microsoft.HDInsight/clusters/ammengtesthadoop\",\r\n \"name\": \"ammengtesthadoop\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"61ce539a-579a-4233-b777-27ae07ed1d25\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"46760c6c130b42c2b54e8ca042986f70\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"ammeng\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"ammeng\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"ammeng\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-24T01:53:28.943\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ammengtesthadoop-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ammengtesthadoop.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ammengtesthadoop.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ammengtesthadoop-2020-06-24t01-50-49-952z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ammeng/providers/Microsoft.HDInsight/clusters/ammengtestspark\",\r\n \"name\": \"ammengtestspark\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"d90d69a1-837d-46c0-8a15-a2e80ac9878b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"325c83eadbd4489b99f5c4cdceb57970\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"ammeng\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"ammeng\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"ammeng\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-24T02:14:50.193\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ammengTestSpark-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ammengTestSpark.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ammengtestspark1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ammengtestspark-2020-06-24t02-12-42-581z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cdub-rg/providers/Microsoft.HDInsight/clusters/cdubkafka1dot1hdi3dot6\",\r\n \"name\": \"cdubkafka1dot1hdi3dot6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"e3fb7f66-81ae-4c67-ac30-3d0ddd6e4e95\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3022-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.2004291541.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"clusterId\": \"fe70a816330b4bdd8a34fe39f790dc1d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-02T07:32:08.28\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"ScriptExecutionFailed\",\r\n \"message\": \"The remote server returned an error: (502) Bad Gateway.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdubkafka1dot1hdi3dot6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdubkafka1dot1hdi3dot6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cdubkafka1dothdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cdubkafka1dot1hdi3dot6-2020-06-02t07-31-24-377z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cdub-rg/providers/Microsoft.HDInsight/clusters/cdubkafka1dot1hdi4dot0\",\r\n \"name\": \"cdubkafka1dot1hdi4dot0\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"aa0b2d3b-b8e5-4f80-865c-617b30cf4d94\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.1000.0.2003140425.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"clusterId\": \"1a1855ab5f4d4a37926d5091817b119a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-02T07:33:19.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdubkafka1dot1hdi4dot0-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdubkafka1dot1hdi4dot0.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cdubkafka1dothdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cdubkafka1dot1hdi4dot0-2020-06-02t07-32-30-151z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cdub-rg/providers/Microsoft.HDInsight/clusters/cdubkrphardwareoverrideeastus\",\r\n \"name\": \"cdubkrphardwareoverrideeastus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"1b3d21e6-5be7-46e0-a719-165edd418c07\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"3.1.2.1-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.2000.1.2003150128.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"47cb06587c044f6395f57ea465fc3d06\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"kafkamanagementnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-10T23:21:39.32\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 52\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdubKRPHardwareOverrideEastUS-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdubKRPHardwareOverrideEastUS.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"KafkaRestProxyPublicEndpoint\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdubkrphardwareoverrideeastus-kafkarest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"kafkaRestProperties\": {\r\n \"clientGroupInfo\": {\r\n \"groupName\": \"adgroup4522\",\r\n \"groupId\": \"6eccdfac-68e3-4c4f-a726-1a1f9949ddbb\"\r\n },\r\n \"configurationOverride\": null\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cdubkrphardwahdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cdubkrphardwareoverride-2020-06-10t23-20-41-341z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/deshrivae64i\",\r\n \"name\": \"deshrivae64i\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"ce5b03fe-9fa4-4c1b-b88f-39becd6c1fce\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2003150128.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"6743a13e42f74f65af08abdfaae9d267\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64i_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2020-06-06T03:15:21.49\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 136\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"deshrivae64i-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"deshrivae64i.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"deshrivatestchdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"deshrivae64i-2020-06-06t03-14-05-278z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/deshrivamarketplace\",\r\n \"name\": \"deshrivamarketplace\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"524a31f6-624a-4c16-9826-ed99ade77e5e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"c0454a498b2c49f5a182dd4f765485c2\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-24T17:37:53.81\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"deshrivamarketplace-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"deshrivamarketplace.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"deshrivamktplc.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"deshrivamarketplace-2020-06-24t17-36-34-439z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadywtraining/providers/Microsoft.HDInsight/clusters/fadywspark40\",\r\n \"name\": \"fadywspark40\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8fd3f584-e137-4d44-8540-f8235b6c7d9d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"3.1.2.1-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2003150128.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"040f0650af5240b29a02e07ec2896a31\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-02T05:48:40.42\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadywspark40-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadywspark40.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"fadywportalsdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fadywspark40-2020-06-02t05-47-52-287z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gavDevRp/providers/Microsoft.HDInsight/clusters/gavtest1\",\r\n \"name\": \"gavtest1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7bbdae3e-edd2-42ff-98fc-a03ceae86a95\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"4dc118bb26594350a504c52166669851\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-26T21:51:15.4\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"gavtest1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"gavtest1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"gavteststorage12.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"gavtest1-2020-06-26t21-48-02-279z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cdub-rg/providers/Microsoft.HDInsight/clusters/hbasetestcluster\",\r\n \"name\": \"hbasetestcluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"c06f34cc-b680-40f5-b591-0d0a3d500f89\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"3.1.2.1-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.2000.1.2003150128.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"33d36637c36c475cb2e5867bb083acfb\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-17T18:40:10.74\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 28\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hbasetestcluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hbasetestcluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cdub0527hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hbasetestcluster-2020-07-17t18-37-14-480z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/hdips-common\",\r\n \"name\": \"hdips-common\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"eecab269-2ef6-437f-a857-a1935b9f4e1b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"cf2875d153bb4f65823e0af4e45b9f1e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-21T07:27:16.013\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-common-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-common.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-custv-cluster-rg/providers/Microsoft.HDInsight/clusters/mawolfen-clust-to-lock\",\r\n \"name\": \"mawolfen-clust-to-lock\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"2b8ecc2c-9556-42ca-b0b9-e7827f14eb2f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3004-13\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810270004.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e29521270a734d1ab894e2ed53ed6e60\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-12-10T17:35:07.003\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestrg/providers/Microsoft.HDInsight/clusters/mktestisvapps\",\r\n \"name\": \"mktestisvapps\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"58c428ae-7232-4ef8-a091-6dfa5e55113f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"3.1.2.1-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.2000.1.2003150128.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"bb0772f2592746788157891ef5ac246a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-20T17:00:58.61\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestisvapps-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestisvapps.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestisvappshdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestisvapps-2020-07-20t16-59-47-111z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-ambari36\",\r\n \"name\": \"nabikhch-ambari36\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"c076c042-1056-486e-9ae6-a2d7f2a22c28\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3022-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2004291541.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"b168dcf458da4dc18d8d0291b1c3821b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-05-15T04:15:36.463\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-ambari36-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-ambari36.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bharathbhuestore.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-ambari36-2020-05-15t04-12-58-590z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.HDInsight/clusters/shangwei-sparktest\",\r\n \"name\": \"shangwei-sparktest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"ea07aafd-d4c0-4b7a-964e-e4ee33a89e4a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"1449ae0cc6fc499d804735ca8ca0c9b5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-16T09:15:19.657\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-sparktest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-sparktest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweistorageaccount.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-sparktest-2020-07-16t09-12-44-461z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/vingang-cluster/providers/Microsoft.HDInsight/clusters/testclustereastus\",\r\n \"name\": \"testclustereastus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"46ce7f2e-17c9-47e0-8277-606b6e6b112f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"1c0c48af03304b1ea346dd385c93774a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T00:51:57.01\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testClusterEastUS-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testClusterEastUS.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"vinaystorageaccount.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testclustereastus-2020-02-26t00-50-39-128z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzynoprivatelink\",\r\n \"name\": \"zzynoprivatelink\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"3b502ce4-ed10-4f45-bdc8-42918dac26f8\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"dee5cc17177a4fab951022cd2b97940b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-15T03:11:59.323\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzynoprivatelink-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzynoprivatelink.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzynoprivatelink-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzynoprivatelhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzynoprivatelink-2020-07-15t03-09-44-861z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzytestautoscale\",\r\n \"name\": \"zzytestautoscale\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"ecb24898-27e5-4989-ad62-f094682ba39a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"0dd69dd7dd2f489990c4324f934f38d6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 3,\r\n \"maxInstanceCount\": 8\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyvneteastus/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-09T08:06:05.377\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytestautoscale-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytestautoscale.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytestautoscale-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzytestautoscale-2020-07-09t08-04-15-542z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzy-test-cmk-cluster\",\r\n \"name\": \"zzy-test-cmk-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"dbb2e655-e122-4519-aa79-2b2977a6fc41\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3015-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2003150128.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"dae5ffde7f064a5597d723a17d6471ed\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-04-10T09:24:09.973\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy-test-cmk-cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy-test-cmk-cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://t-shasun-keyvault.vault.azure.net\",\r\n \"keyName\": \"CMK-psdev\",\r\n \"keyVersion\": \"2e3f6b896bf84900825767af8891a459\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/zzy-test-rg/providers/microsoft.managedidentity/userassignedidentities/zzy-ps-test-cmk\"\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytestcmkcluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzy-test-cmk-cluster-2020-04-10t09-22-39-579z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/zzy-test-rg/providers/microsoft.managedidentity/userassignedidentities/zzy-ps-test-cmk\": {\r\n \"principalId\": \"0afa8f76-81c1-4ea6-ba9a-f8331c260e93\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ammengRC/providers/Microsoft.HDInsight/clusters/ammengforrc\",\r\n \"name\": \"ammengforrc\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"57f800dd-67b6-4837-ba76-ab84c1bb0252\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2004291541.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"d33b7a753734465cac4aba0434ef5554\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2020-05-28T06:06:42.63\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StoragePermissionsBlockedForMsi\",\r\n \"message\": \"The Managed Identity does not have permissions on the storage account. Please verify that 'Storage Blob Data Owner' role is assigned to the Managed Identity for the storage account. Storage: /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-bugtest/providers/Microsoft.Storage/storageAccounts/congrliadlgen2, Managed Identity: /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/ammeng/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ammengMSI, Missing permissions: Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/add/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/deleteAutomaticSnapshot/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/runAsSuperUser/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/filter/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/tags/read,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/tags/write\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrliadlgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-bugtest/providers/Microsoft.Storage/storageAccounts/congrliadlgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/ammeng/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ammengMSI\",\r\n \"key\": null,\r\n \"fileSystem\": \"ammengforrc-2020-05-28t06-04-31-744z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/ammeng/providers/microsoft.managedidentity/userassignedidentities/ammengmsi\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ammengRC/providers/Microsoft.HDInsight/clusters/ammengforrcrcrc\",\r\n \"name\": \"ammengforrcrcrc\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"d5fa92d0-1fc4-43b3-bad0-3e2c09c2ef59\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2004291541.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"9ffadcd2a56949ab8629c926b6c43d83\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2020-05-29T00:30:18.28\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StoragePermissionsBlockedForMsi\",\r\n \"message\": \"The Managed Identity does not have permissions on the storage account. Please verify that 'Storage Blob Data Owner' role is assigned to the Managed Identity for the storage account. Storage: /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-bugtest/providers/Microsoft.Storage/storageAccounts/congrliadlgen2, Managed Identity: /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/ammeng/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ammengMSI, Missing permissions: Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/add/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/deleteAutomaticSnapshot/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/runAsSuperUser/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/filter/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/tags/read,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/tags/write\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://ammengtest.vault.azure.net\",\r\n \"keyName\": \"ammengRCTEST\",\r\n \"keyVersion\": \"3e315578ef4b4789bcbd5bc4b1caf934\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/ammeng/providers/microsoft.managedidentity/userassignedidentities/ammengmsi\"\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrliadlgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-bugtest/providers/Microsoft.Storage/storageAccounts/congrliadlgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/ammeng/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ammengMSI\",\r\n \"key\": null,\r\n \"fileSystem\": \"ammengforrcrcrc-2020-05-29t00-28-54-505z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/ammeng/providers/microsoft.managedidentity/userassignedidentities/ammengmsi\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ammengRC/providers/Microsoft.HDInsight/clusters/ammengtestrc\",\r\n \"name\": \"ammengtestrc\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"700a5f87-0137-4e36-8b8f-2fb5ffb15842\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2004291541.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"149b41cd0b514494b7b4fcbdab7f60bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2020-05-28T06:12:52.09\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StoragePermissionsBlockedForMsi\",\r\n \"message\": \"The Managed Identity does not have permissions on the storage account. Please verify that 'Storage Blob Data Owner' role is assigned to the Managed Identity for the storage account. Storage: /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-bugtest/providers/Microsoft.Storage/storageAccounts/congrliadlgen2, Managed Identity: /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/ammeng/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ammengMSI, Missing permissions: Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/add/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/deleteAutomaticSnapshot/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/runAsSuperUser/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/filter/action,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/tags/read,Microsoft.Storage/storageAccounts/blobServices/containers/blobs/tags/write\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrliadlgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-bugtest/providers/Microsoft.Storage/storageAccounts/congrliadlgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/ammeng/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ammengMSI\",\r\n \"key\": null,\r\n \"fileSystem\": \"ammengtestrc-2020-05-28t06-11-35-578z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/ammeng/providers/microsoft.managedidentity/userassignedidentities/ammengmsi\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadywtraining/providers/Microsoft.HDInsight/clusters/fadyhadoopness\",\r\n \"name\": \"fadyhadoopness\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"9848f8a6-d094-4f17-9099-6d849fb9ba43\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2003150128.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"35b940144df6480abffe2ff0e89545fb\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2020-04-15T19:45:53.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToConnectWithClusterThroughGatewayErrorCode\",\r\n \"message\": \"Unable to connect to cluster management endpoint. Please retry later.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadyhadoopness-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadyhadoopness.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"fadyw.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fadyhadoopness-2020-04-15t19-43-01-528z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Test-FW-RG/providers/Microsoft.HDInsight/clusters/testoozieerror1\",\r\n \"name\": \"testoozieerror1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"2499aa33-194c-4618-8e8c-ae8bc9726b38\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"bfa0137bcf56473eac44c26380751856\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Test-FW-RG/providers/Microsoft.Network/virtualNetworks/Test-FW-VN\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Test-FW-RG/providers/Microsoft.Network/virtualNetworks/Test-FW-VN/subnets/Workload-SN\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Test-FW-RG/providers/Microsoft.Network/virtualNetworks/Test-FW-VN\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Test-FW-RG/providers/Microsoft.Network/virtualNetworks/Test-FW-VN/subnets/Workload-SN\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Test-FW-RG/providers/Microsoft.Network/virtualNetworks/Test-FW-VN\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Test-FW-RG/providers/Microsoft.Network/virtualNetworks/Test-FW-VN/subnets/Workload-SN\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2020-02-10T18:42:28.42\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidNetworkConfigurationErrorCode\",\r\n \"message\": \"Virtual Network configuration is not compatible with HDInsight Requirement. Error: 'Failed to connect to Azure SQL', Please follow https://go.microsoft.com/fwlink/?linkid=853974 to fix it. \"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testoozieerror1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testoozieerror1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testoozieerror1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testooziestg1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testoozieerror1-2020-02-10t18-41-26-343z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-test-wawon-rg/providers/Microsoft.HDInsight/clusters/wawon-test\",\r\n \"name\": \"wawon-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"2f286f2f-9bb1-4348-9fbd-7ee9fc35091b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3003-25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810062023.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e9017f01897f4a65bcf8e231ac3c01bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-11-12T01:23:36.633\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cdub-rg/providers/Microsoft.HDInsight/clusters/cdubkafka11hdi40\",\r\n \"name\": \"cdubkafka11hdi40\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"b813a5d7-bfb5-4a40-85e7-e75b14b9241d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.1000.0.2005250626.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"clusterId\": \"9ebfb234ac654796849fec584bc09744\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-05-29T06:24:09.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdubkafka11hdi40-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdubkafka11hdi40.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cdubkafka11hdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cdubkafka11hdi40-2020-05-29t06-23-09-112z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-scus/providers/Microsoft.HDInsight/clusters/congrli0610\",\r\n \"name\": \"congrli0610\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"90beba44-a429-4258-ad16-0c2a1f76fab2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"22d87ce7ad974de6bae9ab73ba8e5f3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-06-11T00:33:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrli0610storage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"congrli0610-2020-06-11t00-31-49-109z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicli-bunyk/providers/Microsoft.HDInsight/clusters/hdicli-hx5okkrgt\",\r\n \"name\": \"hdicli-hx5okkrgt\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"0be8ea2f-e76c-4db5-a2a2-23e96617114e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.1\",\r\n \"clusterHdpVersion\": \"3.1.6.2-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.1.2006192058.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c88be94e908d47339a7587556d0528c6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-28T11:28:03.203\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdicli-hx5okkrgt-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdicli-hx5okkrgt.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicliu6jej5gfxueebmfxgt.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicli-os32y/providers/Microsoft.HDInsight/clusters/hdicli-x3yvj44f7\",\r\n \"name\": \"hdicli-x3yvj44f7\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"99f72d3c-00e1-4b5b-bfc1-365dec9ef8e1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.1\",\r\n \"clusterHdpVersion\": \"3.1.6.2-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.1.2006192058.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"83a9398c046e4c88ba4654eb9b516ed6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-28T11:57:17.74\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdicli-x3yvj44f7-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdicli-x3yvj44f7.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdiclinb4i2ompcm5m3pt5j7.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/hdips-encryption\",\r\n \"name\": \"hdips-encryption\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"5322f7b1-14c4-4dcd-be49-1011e44355dc\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.0.20\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2007190637.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"61ae003b6865462bbf4bbdcc506bcb5b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-21T04:18:28.917\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-encryption-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-encryption.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/hdi-ps-privatelink\",\r\n \"name\": \"hdi-ps-privatelink\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"923a8494-c894-4760-9dcb-166f14dcea34\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2007190637.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"96cbcfcea24a477a9df53892eb73328b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/forprivatelink\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/forprivatelink\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/forprivatelink\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2020-07-21T08:18:19.817\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToConnectWithClusterErrorCode\",\r\n \"message\": \"Unable to connect to cluster management endpoint. Please retry later.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-privatelink-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-privatelink.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-privatelink-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n },\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"InboundAndOutbound\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184\",\r\n \"name\": \"hdi-ps-test2184\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"e1588c10-8b5f-4676-bc8b-d02c9c136cf8\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.1\",\r\n \"clusterHdpVersion\": \"3.1.6.2-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.1.2007210011.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cd28ecfc4ad04b75a2c264e09e4952e7\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.Network/virtualNetworks/hdi-ps-vnet4871/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-22T06:52:13.833\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2184-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2184.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2184-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n },\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"OutboundOnly\",\r\n \"outboundOnlyPublicNetworkAccessType\": \"PublicLoadBalancer\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9926/providers/Microsoft.HDInsight/clusters/hdisdk-network5840\",\r\n \"name\": \"hdisdk-network5840\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"1631c6b6-eb9a-417d-bbaa-4d3087dd8f28\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.0.2006141704.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"8eed74fe34904b35949e4790ab233aed\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser829\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser829\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser829\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2020-06-18T14:04:19.877\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"SubnetNotConfiguredForPrivateLinkAccess\",\r\n \"message\": \"The subnet is not configured correctly for private link access. VirtualNetworkId: '/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus', Subnet: '/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/default'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage1355.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5005\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n },\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"OutboundOnly\",\r\n \"outboundOnlyPublicNetworkAccessType\": \"PublicLoadBalancer\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg529/providers/Microsoft.HDInsight/clusters/hdisdk-nodereboot9778\",\r\n \"name\": \"hdisdk-nodereboot9778\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"da68f382-7966-46b2-a346-88a28d54f3b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.0.2006040535.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"407dcfca269744e788dd72060f60f800\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser341\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 5,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser341\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser341\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-06-05T06:09:30.3\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 28\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-nodereboot9778-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-nodereboot9778.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3505.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default2967\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/hdi-zzyprivatelink4901\",\r\n \"name\": \"hdi-zzyprivatelink4901\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"2d1520b0-cd0e-4ab5-a944-52e74757a35f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3027-5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007090134.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"ed598a6b81c8457181ebc3cf50b6e5db\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3571\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/forprivatelink\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3571\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/forprivatelink\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3571\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/forprivatelink\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-14T12:31:42.867\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-zzyprivatelink4901-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-zzyprivatelink4901.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-zzyprivatelink4901-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5101.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6669\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n },\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"OutboundOnly\",\r\n \"outboundOnlyPublicNetworkAccessType\": \"PublicLoadBalancer\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzynovnet\",\r\n \"name\": \"zzynovnet\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"1e65ca6f-ab29-4b03-96ee-2c77dcc430ce\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3027-5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007090134.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"f084ff14e71b4ef480a3aa13f688961f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-15T03:51:05.58\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzynovnet-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzynovnet.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzyhadoophdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzynovnet-2020-07-15t03-47-27-033z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzy-outboundonly\",\r\n \"name\": \"zzy-outboundonly\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"efad0cbe-7b57-4f00-876e-946b69126958\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.0.20\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2007190637.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"d16b3144d31541d784ea6a8c9f6bda43\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/forprivatelink\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/forprivatelink\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzyventsouthcentralus/subnets/forprivatelink\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-21T08:54:47.027\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy-outboundonly-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy-outboundonly.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy-outboundonly-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n },\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"OutboundOnly\",\r\n \"outboundOnlyPublicNetworkAccessType\": \"PublicLoadBalancer\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/vingang-cluster/providers/Microsoft.HDInsight/clusters/testconfigureazsecpackactivity1\",\r\n \"name\": \"testconfigureazsecpackactivity1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"etag\": \"1a69f9a6-932e-40cf-a386-13a10b19b55f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2001031559.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"97496e8df4d546af8fa99b3042eb74fb\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2020-01-07T20:03:43.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToConnectWithClusterErrorCode\",\r\n \"message\": \"Unable to connect to cluster management endpoint. Please retry later.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"TestConfigureAzSecPackActivity1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"TestConfigureAzSecPackActivity1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"vinayteststorageaccount1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testconfigureazsecpacka-2020-01-07t19-56-17-373z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/serverlessdb-vinay/providers/Microsoft.HDInsight/clusters/testconfigureazsecpackactivityhadoop\",\r\n \"name\": \"testconfigureazsecpackactivityhadoop\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"etag\": \"41ff47fc-a069-46f3-92e2-8ceb93789d51\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001031559.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"d30f3fc1f364413581d521aab4f47fce\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2020-01-07T20:14:19.17\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToConnectWithClusterErrorCode\",\r\n \"message\": \"Unable to connect to cluster management endpoint. Please retry later.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"TestConfigureAzSecPackActivityHadoop-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"TestConfigureAzSecPackActivityHadoop.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testconfigurehdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testconfigureazsecpacka-2020-01-07t20-12-26-825z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6542/providers/Microsoft.HDInsight/clusters/hdi-ps-test2184?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjE4ND9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "889a73bd-dacd-495e-890b-9967372e5f0a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/operationresults/5525697c-08fd-4bb5-92aa-bfc6c54c83f9-0-r?api-version=2018-06-01-preview" + ], + "Retry-After": [ + "60" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South Central US/azureasyncoperations/5525697c-08fd-4bb5-92aa-bfc6c54c83f9-0-r?api-version=2018-06-01-preview" + ], + "x-ms-request-id": [ + "c2bdd5a8-7271-4cbf-9fb9-0e172fdd672e" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "2359b6ff-69e9-46b6-b82a-ec5d02349522" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T071034Z:2359b6ff-69e9-46b6-b82a-ec5d02349522" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:10:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/5525697c-08fd-4bb5-92aa-bfc6c54c83f9-0-r?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy81NTI1Njk3Yy0wOGZkLTRiYjUtOTJhYS1iZmM2YzU0YzgzZjktMC1yP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ad980268-f286-4403-ac94-1783f70ea61a" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "f80b3fc1-77d0-4c60-872c-9102b463662a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T071135Z:f80b3fc1-77d0-4c60-872c-9102b463662a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:11:35 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/5525697c-08fd-4bb5-92aa-bfc6c54c83f9-0-r?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy81NTI1Njk3Yy0wOGZkLTRiYjUtOTJhYS1iZmM2YzU0YzgzZjktMC1yP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "40d9fd65-5142-47ef-a647-d48dd8116e30" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "41bd962d-d380-4b42-a8a4-806057dbc496" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T071236Z:41bd962d-d380-4b42-a8a4-806057dbc496" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:12:35 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/5525697c-08fd-4bb5-92aa-bfc6c54c83f9-0-r?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy81NTI1Njk3Yy0wOGZkLTRiYjUtOTJhYS1iZmM2YzU0YzgzZjktMC1yP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d3b0df91-7ca3-4f4a-8d8c-9d09fffd6853" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "c5590372-f3a6-44d5-a07c-4386645d92bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T071337Z:c5590372-f3a6-44d5-a07c-4386645d92bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:13:37 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/5525697c-08fd-4bb5-92aa-bfc6c54c83f9-0-r?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy81NTI1Njk3Yy0wOGZkLTRiYjUtOTJhYS1iZmM2YzU0YzgzZjktMC1yP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "35ad2bcb-ea5a-4a30-b26d-68c7c6432485" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "01b9de78-7346-4c53-80ba-a66ab531b0d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T071439Z:01b9de78-7346-4c53-80ba-a66ab531b0d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:14:38 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/5525697c-08fd-4bb5-92aa-bfc6c54c83f9-0-r?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy81NTI1Njk3Yy0wOGZkLTRiYjUtOTJhYS1iZmM2YzU0YzgzZjktMC1yP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "11d15c2d-1ff9-45f2-8e9f-b40fdd59d0e0" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "f2976ff0-6e76-4fdd-a398-35c7b9bd156c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T071540Z:f2976ff0-6e76-4fdd-a398-35c7b9bd156c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:15:39 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/5525697c-08fd-4bb5-92aa-bfc6c54c83f9-0-r?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy81NTI1Njk3Yy0wOGZkLTRiYjUtOTJhYS1iZmM2YzU0YzgzZjktMC1yP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "38c68246-c30f-4455-966c-c1ccb8de26e1" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "832008e3-4830-496f-93a8-75a9463f53fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T071641Z:832008e3-4830-496f-93a8-75a9463f53fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:16:40 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/5525697c-08fd-4bb5-92aa-bfc6c54c83f9-0-r?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy81NTI1Njk3Yy0wOGZkLTRiYjUtOTJhYS1iZmM2YzU0YzgzZjktMC1yP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2bb65012-8ae9-41a5-9f34-59ade3593d2e" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "6ea64c85-94f6-4c3c-ab7b-8ac3082f932f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T071742Z:6ea64c85-94f6-4c3c-ab7b-8ac3082f932f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:17:42 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/5525697c-08fd-4bb5-92aa-bfc6c54c83f9-0-r?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy81NTI1Njk3Yy0wOGZkLTRiYjUtOTJhYS1iZmM2YzU0YzgzZjktMC1yP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1f848dd4-16c0-498a-b762-5ecea627a406" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "dc5907cf-7a0c-4c89-9859-b769afd05e6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T071844Z:dc5907cf-7a0c-4c89-9859-b769afd05e6c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:18:44 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/5525697c-08fd-4bb5-92aa-bfc6c54c83f9-0-r?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy81NTI1Njk3Yy0wOGZkLTRiYjUtOTJhYS1iZmM2YzU0YzgzZjktMC1yP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e41710bf-28bb-439c-90e6-4ecc62991176" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "b742a90a-eafb-46c6-93d3-9bd7d42717a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T071945Z:b742a90a-eafb-46c6-93d3-9bd7d42717a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:19:44 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/5525697c-08fd-4bb5-92aa-bfc6c54c83f9-0-r?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy81NTI1Njk3Yy0wOGZkLTRiYjUtOTJhYS1iZmM2YzU0YzgzZjktMC1yP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c2ae98b9-99f6-4a5c-9d62-1094e0d21e08" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "636e4c7e-dcf5-4ba6-8785-b91dea3958f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T072046Z:636e4c7e-dcf5-4ba6-8785-b91dea3958f8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:20:46 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/5525697c-08fd-4bb5-92aa-bfc6c54c83f9-0-r?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy81NTI1Njk3Yy0wOGZkLTRiYjUtOTJhYS1iZmM2YzU0YzgzZjktMC1yP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a56a35eb-4d93-43a9-8b14-d9fb9f4a2d12" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "08fe301f-5b14-48b6-a37c-c8e815c5adda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T072147Z:08fe301f-5b14-48b6-a37c-c8e815c5adda" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:21:47 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/5525697c-08fd-4bb5-92aa-bfc6c54c83f9-0-r?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy81NTI1Njk3Yy0wOGZkLTRiYjUtOTJhYS1iZmM2YzU0YzgzZjktMC1yP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "316491de-db3c-42a4-9599-f58ccf730e87" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "cc52d544-e514-4d8e-b0d1-6471d72ee286" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T072249Z:cc52d544-e514-4d8e-b0d1-6471d72ee286" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:22:48 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/operationresults/5525697c-08fd-4bb5-92aa-bfc6c54c83f9-0-r?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzU1MjU2OTdjLTA4ZmQtNGJiNS05MmFhLWJmYzZjNTRjODNmOS0wLXI/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6e298754-eafd-411d-871e-5a483593e7f9" + ], + "x-ms-hdi-served-by": [ + "southcentralus" + ], + "x-ms-correlation-request-id": [ + "5ae37079-944d-428d-9cb4-3f25fd853200" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T072249Z:5ae37079-944d-428d-9cb4-3f25fd853200" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:22:48 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6542?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTQyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8ea4a1e-00bf-4b12-a4e8-bb02cfba5d74" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NDItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "d673f803-f2a5-4916-a5d5-73925c563758" + ], + "x-ms-correlation-request-id": [ + "d673f803-f2a5-4916-a5d5-73925c563758" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T072256Z:d673f803-f2a5-4916-a5d5-73925c563758" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:22:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NDItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFkxTkRJdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NDItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "3a1e74d5-71c0-4138-9980-f0d13a330565" + ], + "x-ms-correlation-request-id": [ + "3a1e74d5-71c0-4138-9980-f0d13a330565" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T072311Z:3a1e74d5-71c0-4138-9980-f0d13a330565" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:23:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NDItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFkxTkRJdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NDItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "cc4593f9-bc2b-4baf-9376-8e34f578a746" + ], + "x-ms-correlation-request-id": [ + "cc4593f9-bc2b-4baf-9376-8e34f578a746" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T072327Z:cc4593f9-bc2b-4baf-9376-8e34f578a746" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:23:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NDItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFkxTkRJdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NDItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "4a5ec188-1435-4a8a-929e-bb7d50b3abd5" + ], + "x-ms-correlation-request-id": [ + "4a5ec188-1435-4a8a-929e-bb7d50b3abd5" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T072342Z:4a5ec188-1435-4a8a-929e-bb7d50b3abd5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:23:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NDItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFkxTkRJdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NDItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "1dfc0de0-b3ae-4f53-8760-a4d888ac6141" + ], + "x-ms-correlation-request-id": [ + "1dfc0de0-b3ae-4f53-8760-a4d888ac6141" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T072358Z:1dfc0de0-b3ae-4f53-8760-a4d888ac6141" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:23:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NDItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFkxTkRJdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NDItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "23df5c0a-36d0-496f-adf2-cec186397e48" + ], + "x-ms-correlation-request-id": [ + "23df5c0a-36d0-496f-adf2-cec186397e48" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T072413Z:23df5c0a-36d0-496f-adf2-cec186397e48" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:24:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NDItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFkxTkRJdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NDItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "f1b97749-2cf5-4ab5-bc0a-4e567843c8fc" + ], + "x-ms-correlation-request-id": [ + "f1b97749-2cf5-4ab5-bc0a-4e567843c8fc" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T072429Z:f1b97749-2cf5-4ab5-bc0a-4e567843c8fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:24:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NDItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFkxTkRJdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NDItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "576257c9-2eb5-4d95-9e74-1a7922783006" + ], + "x-ms-correlation-request-id": [ + "576257c9-2eb5-4d95-9e74-1a7922783006" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T072445Z:576257c9-2eb5-4d95-9e74-1a7922783006" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:24:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NDItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFkxTkRJdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NDItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "8e98eb28-8be0-44ae-b30b-e252b035cd4a" + ], + "x-ms-correlation-request-id": [ + "8e98eb28-8be0-44ae-b30b-e252b035cd4a" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T072500Z:8e98eb28-8be0-44ae-b30b-e252b035cd4a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:25:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NDItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFkxTkRJdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NDItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "68f6a370-6dc9-47e1-9087-ef8f5fc6d610" + ], + "x-ms-correlation-request-id": [ + "68f6a370-6dc9-47e1-9087-ef8f5fc6d610" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T072516Z:68f6a370-6dc9-47e1-9087-ef8f5fc6d610" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:25:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NDItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFkxTkRJdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "be691c06-0cbf-4508-8f96-aecd7e9f4f7f" + ], + "x-ms-correlation-request-id": [ + "be691c06-0cbf-4508-8f96-aecd7e9f4f7f" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T072531Z:be691c06-0cbf-4508-8f96-aecd7e9f4f7f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:25:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NDItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFkxTkRJdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.17" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "b2fe669f-4fd4-4118-834e-f4e00c24a1a4" + ], + "x-ms-correlation-request-id": [ + "b2fe669f-4fd4-4118-834e-f4e00c24a1a4" + ], + "x-ms-routing-request-id": [ + "AUSTRALIAEAST:20200722T072532Z:b2fe669f-4fd4-4118-834e-f4e00c24a1a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 22 Jul 2020 07:25:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateClusterWithPrivateLink": [ + "hdi-ps-test2184", + "group-ps-test6542", + "storagepstest8786", + "hdi-ps-vnet4871" + ] + }, + "Variables": { + "SubscriptionId": "964c10bb-8a6c-43bc-83d3-6b318c6c7305" + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Test/UnitTests/NewClusterTests.cs b/src/HDInsight/HDInsight.Test/UnitTests/NewClusterTests.cs index 8145d392b85f..ccbedf4ff99c 100644 --- a/src/HDInsight/HDInsight.Test/UnitTests/NewClusterTests.cs +++ b/src/HDInsight/HDInsight.Test/UnitTests/NewClusterTests.cs @@ -112,7 +112,7 @@ public void CanCreateNewHDInsightCluster() parameters.Location == Location && parameters.UserName == _httpCred.UserName && parameters.Password == _httpCred.Password.ConvertToString() && - parameters.ClusterType == ClusterType), It.IsAny(), It.IsAny(), It.IsAny())) + parameters.ClusterType == ClusterType), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny())) .Returns(cluster) .Verifiable(); @@ -317,7 +317,7 @@ private void CreateNewHDInsightCluster( parameters.SshUserName == _sshCred.UserName && parameters.SshPassword == _sshCred.Password.ConvertToString() && ((!setEdgeNodeVmSize && parameters.EdgeNodeSize == null) || (setEdgeNodeVmSize && parameters.EdgeNodeSize == "edgeNodeVmSizeSetTest")) && - (workerNodeDataDisks == 0) || (workerNodeDataDisks > 0 && parameters.WorkerNodeDataDisksGroups.First().DisksPerNode == workerNodeDataDisks)), It.IsAny(), It.IsAny(), It.IsAny())) + (workerNodeDataDisks == 0) || (workerNodeDataDisks > 0 && parameters.WorkerNodeDataDisksGroups.First().DisksPerNode == workerNodeDataDisks)), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny())) .Returns(cluster) .Verifiable(); @@ -416,7 +416,7 @@ public void CanCreateNewHDInsightCluster_LinuxComponentVersion() parameters.ClusterType == sparkClusterType && parameters.SshUserName == _sshCred.UserName && parameters.SshPassword == _sshCred.Password.ConvertToString() && - parameters.ComponentVersion["Spark"] == componentVersion["Spark"]), It.IsAny(), It.IsAny(), It.IsAny())) + parameters.ComponentVersion["Spark"] == componentVersion["Spark"]), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny())) .Returns(cluster) .Verifiable(); hdinsightManagementMock.Setup( @@ -431,7 +431,7 @@ public void CanCreateNewHDInsightCluster_LinuxComponentVersion() parameters.Password == _httpCred.Password.ConvertToString() && parameters.ClusterType == ClusterType && parameters.SshUserName == _sshCred.UserName && - parameters.SshPassword == _sshCred.Password.ConvertToString()), It.IsAny(), It.IsAny(), It.IsAny())) + parameters.SshPassword == _sshCred.Password.ConvertToString()), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny())) .Returns(cluster) .Verifiable(); @@ -564,7 +564,7 @@ public void CanCreateNewHDInsightCluster_Disk_Encryption() parameters.DiskEncryptionProperties.KeyName == EncryptionKeyName && parameters.DiskEncryptionProperties.KeyVersion == EncryptionKeyVersion && parameters.DiskEncryptionProperties.EncryptionAlgorithm == EncryptionAlgorithm && - parameters.DiskEncryptionProperties.MsiResourceId == AssignedIdentity), It.IsAny(), It.IsAny(), It.IsAny())) + parameters.DiskEncryptionProperties.MsiResourceId == AssignedIdentity), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny())) .Returns(cluster) .Verifiable(); @@ -604,7 +604,7 @@ public void TestStorageAccountTypeDefaultsToAzureStorage() cmdlet.DefaultStorageAccountKey = StorageKey; cmdlet.ClusterType = ClusterType; - hdinsightManagementMock.Setup(c => c.CreateNewCluster(ResourceGroupName, ClusterName, OSType.Linux, It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny())); + hdinsightManagementMock.Setup(c => c.CreateNewCluster(ResourceGroupName, ClusterName, OSType.Linux, It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny())); cmdlet.ExecuteCmdlet(); @@ -617,7 +617,7 @@ public void TestStorageAccountTypeDefaultsToAzureStorage() parameters.Location == Location && parameters.UserName == _httpCred.UserName && parameters.Password == _httpCred.Password.ConvertToString() && - parameters.ClusterType == ClusterType), It.IsAny(), It.IsAny(), It.IsAny()), + parameters.ClusterType == ClusterType), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny()), Times.Once); } @@ -635,7 +635,7 @@ public void TestStorageAccountTypeAzureStorage() cmdlet.ClusterType = ClusterType; cmdlet.DefaultStorageAccountType = StorageType.AzureStorage; - hdinsightManagementMock.Setup(c => c.CreateNewCluster(ResourceGroupName, ClusterName, OSType.Linux, It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny())); + hdinsightManagementMock.Setup(c => c.CreateNewCluster(ResourceGroupName, ClusterName, OSType.Linux, It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny())); cmdlet.ExecuteCmdlet(); @@ -648,7 +648,7 @@ public void TestStorageAccountTypeAzureStorage() parameters.Location == Location && parameters.UserName == _httpCred.UserName && parameters.Password == _httpCred.Password.ConvertToString() && - parameters.ClusterType == ClusterType), It.IsAny(), It.IsAny(), It.IsAny()), + parameters.ClusterType == ClusterType), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny()), Times.Once); } @@ -667,7 +667,7 @@ public void TestStorageAccountTypeAzureDataLakeStore() cmdlet.ClusterType = ClusterType; cmdlet.DefaultStorageAccountType = StorageType.AzureDataLakeStore; - hdinsightManagementMock.Setup(c => c.CreateNewCluster(ResourceGroupName, ClusterName, OSType.Linux, It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny())); + hdinsightManagementMock.Setup(c => c.CreateNewCluster(ResourceGroupName, ClusterName, OSType.Linux, It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny())); cmdlet.ExecuteCmdlet(); @@ -680,7 +680,7 @@ public void TestStorageAccountTypeAzureDataLakeStore() parameters.Location == Location && parameters.UserName == _httpCred.UserName && parameters.Password == _httpCred.Password.ConvertToString() && - parameters.ClusterType == ClusterType), It.IsAny(), It.IsAny(), It.IsAny()), + parameters.ClusterType == ClusterType), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny()), Times.Once); } } diff --git a/src/HDInsight/HDInsight.Test/UnitTests/PremiumClusterTests.cs b/src/HDInsight/HDInsight.Test/UnitTests/PremiumClusterTests.cs index 6e2186560619..0f8087320de3 100644 --- a/src/HDInsight/HDInsight.Test/UnitTests/PremiumClusterTests.cs +++ b/src/HDInsight/HDInsight.Test/UnitTests/PremiumClusterTests.cs @@ -113,7 +113,7 @@ public void CanCreateNewPremiumHDInsightCluster() parameters.SshUserName == _httpCred.UserName && parameters.SshPassword == _httpCred.Password.ConvertToString() && parameters.ClusterType == ClusterType && - parameters.ClusterTier == Tier.Premium),It.IsAny(), It.IsAny(), It.IsAny())) + parameters.ClusterTier == Tier.Premium),It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny())) .Returns(cluster) .Verifiable(); diff --git a/src/HDInsight/HDInsight/ChangeLog.md b/src/HDInsight/HDInsight/ChangeLog.md index 96dd65cc0ba4..cb6967584872 100644 --- a/src/HDInsight/HDInsight/ChangeLog.md +++ b/src/HDInsight/HDInsight/ChangeLog.md @@ -18,6 +18,14 @@ - Additional information about change #1 --> ## Upcoming Release +* Supported creating cluster with encryption in transit feature. + - Add new parameter `EncryptionInTransit` to the cmdlet `New-AzHDInsightCluster` + - Add new parameter `EncryptionInTransit` to the cmdlet `New-AzHDInsightClusterConfig` +* Supported creating cluster with private link feature: + - Add new parameter `PublicNetworkAccessType` and `OutboundPublicNetworkAccessType`to the cmdlet `New-AzHDInsightCluster` + - Add new parameter `PublicNetworkAccessType` and `OutboundPublicNetworkAccessType`to the cmdlet `New-AzHDInsightClusterConfig` +* Returned virtual network information when calling `New-AzHDInsightCluster` or `Get-AzHDInsightCluster` + ## Version 3.3.1 * Supported creating cluster with ADLSGen1/2 storage in national clouds. diff --git a/src/HDInsight/HDInsight/HDInsight.csproj b/src/HDInsight/HDInsight/HDInsight.csproj index 3e8570a6e8fd..0e151ceaf169 100644 --- a/src/HDInsight/HDInsight/HDInsight.csproj +++ b/src/HDInsight/HDInsight/HDInsight.csproj @@ -11,7 +11,7 @@ - + diff --git a/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterCommand.cs index ea75adf22ae3..abeecb742d55 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterCommand.cs @@ -142,7 +142,10 @@ public AzureHDInsightConfig Config EncryptionAlgorithm = EncryptionAlgorithm, EncryptionKeyName = EncryptionKeyName, EncryptionKeyVersion = EncryptionKeyVersion, - EncryptionVaultUri = EncryptionVaultUri + EncryptionVaultUri = EncryptionVaultUri, + PublicNetworkAccessType = PublicNetworkAccessType, + OutboundPublicNetworkAccessType = OutboundPublicNetworkAccessType, + EncryptionInTransit = EncryptionInTransit }; foreach ( var storageAccount in @@ -202,6 +205,9 @@ var storageAccount in EncryptionKeyName = value.EncryptionKeyName; EncryptionKeyVersion = value.EncryptionKeyVersion; EncryptionVaultUri = value.EncryptionVaultUri; + PublicNetworkAccessType = value.PublicNetworkAccessType; + OutboundPublicNetworkAccessType = value.OutboundPublicNetworkAccessType; + EncryptionInTransit = value.EncryptionInTransit; foreach ( var storageAccount in @@ -384,6 +390,17 @@ public DateTime RdpAccessExpiry [Parameter(HelpMessage = "Gets or sets the encryption vault uri.")] public string EncryptionVaultUri { get; set; } + [Parameter(HelpMessage = "Gets or sets the public network access type.")] + [ValidateSet(PublicNetworkAccess.InboundAndOutbound, PublicNetworkAccess.OutboundOnly, IgnoreCase = true)] + public string PublicNetworkAccessType; + + [Parameter(HelpMessage = "Gets or sets the outbound access type to the public network.")] + [ValidateSet(OutboundOnlyPublicNetworkAccessType.PublicLoadBalancer, OutboundOnlyPublicNetworkAccessType.UDR, IgnoreCase = true)] + public string OutboundPublicNetworkAccessType; + + [Parameter(HelpMessage = "Gets or sets the flag which indicates whether enable encryption in transit or not.")] + public bool? EncryptionInTransit; + #endregion public NewAzureHDInsightClusterCommand() @@ -523,7 +540,7 @@ var storageAccount in }; } - var cluster = HDInsightManagementClient.CreateNewCluster(ResourceGroupName, ClusterName, OSType, parameters, MinSupportedTlsVersion, this.DefaultContext.Environment.ActiveDirectoryAuthority, this.DefaultContext.Environment.DataLakeEndpointResourceId); + var cluster = HDInsightManagementClient.CreateNewCluster(ResourceGroupName, ClusterName, OSType, parameters, MinSupportedTlsVersion, this.DefaultContext.Environment.ActiveDirectoryAuthority, this.DefaultContext.Environment.DataLakeEndpointResourceId, PublicNetworkAccessType, OutboundPublicNetworkAccessType, EncryptionInTransit); if (cluster != null) { diff --git a/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterConfigCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterConfigCommand.cs index 73c220f673de..6ebef6aa375c 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterConfigCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterConfigCommand.cs @@ -191,6 +191,29 @@ public string EncryptionVaultUri set { _config.EncryptionVaultUri = value; } } + [Parameter(HelpMessage = "Gets or sets the public network access type.")] + [ValidateSet(PublicNetworkAccess.InboundAndOutbound, PublicNetworkAccess.OutboundOnly, IgnoreCase = true)] + public string PublicNetworkAccessType + { + get { return _config.PublicNetworkAccessType; } + set { _config.PublicNetworkAccessType = value; } + } + + [Parameter(HelpMessage = "Gets or sets the outbound access type to the public network.")] + [ValidateSet(OutboundOnlyPublicNetworkAccessType.PublicLoadBalancer, OutboundOnlyPublicNetworkAccessType.UDR, IgnoreCase = true)] + public string OutboundPublicNetworkAccessType + { + get { return _config.OutboundPublicNetworkAccessType; } + set { _config.OutboundPublicNetworkAccessType = value; } + } + + [Parameter(HelpMessage = "Gets or sets the flag which indicates whether enable encryption in transit or not.")] + public bool? EncryptionInTransit + { + get { return _config.EncryptionInTransit; } + set { _config.EncryptionInTransit = value; } + } + #endregion public NewAzureHDInsightClusterConfigCommand() diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightCluster.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightCluster.cs index e237d2a900a0..d78509f5e961 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightCluster.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightCluster.cs @@ -70,6 +70,13 @@ public AzureHDInsightCluster(Cluster cluster) MinSupportedTlsVersion = cluster.Properties.MinSupportedTlsVersion; DiskEncryption = cluster.Properties.DiskEncryptionProperties; AssignedIdentity = cluster.Identity; + PublicNetworkAccessType = cluster.Properties?.NetworkSettings?.PublicNetworkAccess; + OutboundPublicNetworkAccessType = cluster.Properties?.NetworkSettings?.OutboundOnlyPublicNetworkAccessType; + EncryptionInTransit =cluster.Properties?.EncryptionInTransitProperties?.IsEncryptionInTransitEnabled; + PrivateEndpoint = cluster.Properties?.ConnectivityEndpoints?.FirstOrDefault(endpoint => endpoint.Name.Equals("HTTPS-INTERNAL"))?.Location; + var vnet = cluster.Properties?.ComputeProfile?.Roles?.FirstOrDefault(role => role.Name.Equals("workernode"))?.VirtualNetworkProfile; + VirtualNetworkId = vnet?.Id; + SubnetName = vnet?.Subnet; } public AzureHDInsightCluster(Cluster cluster, IDictionary clusterConfiguration, IDictionary clusterIdentity) @@ -220,5 +227,35 @@ public AzureHDInsightCluster(Cluster cluster, IDictionary cluste /// Gets or sets the assigned identity. /// public ClusterIdentity AssignedIdentity { get; set; } + + /// + /// Gets or sets the private endpoint. + /// + public string PrivateEndpoint; + + /// + /// Gets or sets the public network access. + /// + public string PublicNetworkAccessType; + + /// + /// Gets or sets the outbound public network access. + /// + public string OutboundPublicNetworkAccessType; + + /// + /// Gets or sets the encryption in transit. + /// + public bool? EncryptionInTransit; + + /// + /// Gets or sets the virtual network id. + /// + public string VirtualNetworkId; + + /// + /// Gets or sets the subnet name. + /// + public string SubnetName; } } diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightConfig.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightConfig.cs index 9de0473e6d42..8d087caaee00 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightConfig.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightConfig.cs @@ -170,6 +170,21 @@ public class AzureHDInsightConfig /// public string EncryptionVaultUri { get; set; } + /// + /// Gets or sets the public network access type. + /// + public string PublicNetworkAccessType; + + /// + /// Gets or sets the outbound access type to the public network. + /// + public string OutboundPublicNetworkAccessType; + + /// + /// Gets or sets the flag which indicates whether enable encryption in transit or not. + /// + public bool? EncryptionInTransit; + public AzureHDInsightConfig() { ClusterType = Constants.Hadoop; diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHdInsightManagementClient.cs b/src/HDInsight/HDInsight/Models/Management/AzureHdInsightManagementClient.cs index be6f2c5ef28c..0faf22e85799 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHdInsightManagementClient.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHdInsightManagementClient.cs @@ -34,12 +34,33 @@ public AzureHdInsightManagementClient() { } private IHDInsightManagementClient HdInsightManagementClient { get; set; } - public virtual Cluster CreateNewCluster(string resourceGroupName, string clusterName, OSType osType, ClusterCreateParameters parameters, string minSupportedTlsVersion = default(string), string cloudAadAuthority = default(string), string cloudDataLakeAudience =default(string)) + public virtual Cluster CreateNewCluster(string resourceGroupName, string clusterName, OSType osType, ClusterCreateParameters parameters, + string minSupportedTlsVersion = default(string), string cloudAadAuthority = default(string), + string cloudDataLakeAudience = default(string), string PublicNetworkAccessType = default(string), + string OutboundOnlyNetworkAccessType = default(string), bool? EnableEncryptionInTransit = default(bool?)) { var createParams = CreateParametersConverter.GetExtendedClusterCreateParameters(clusterName, parameters); createParams.Properties.OsType = osType; createParams.Properties.MinSupportedTlsVersion = minSupportedTlsVersion; ResetClusterIdentity(createParams, cloudAadAuthority, cloudDataLakeAudience); + + if (EnableEncryptionInTransit.HasValue) + { + createParams.Properties.EncryptionInTransitProperties = new EncryptionInTransitProperties() + { + IsEncryptionInTransitEnabled = EnableEncryptionInTransit + }; + } + + if (!string.IsNullOrEmpty(PublicNetworkAccessType) || !string.IsNullOrEmpty(OutboundOnlyNetworkAccessType)){ + NetworkSettings networkSettings = new NetworkSettings() + { + PublicNetworkAccess = PublicNetworkAccessType, + OutboundOnlyPublicNetworkAccessType = OutboundOnlyNetworkAccessType + }; + createParams.Properties.NetworkSettings = networkSettings; + } + return HdInsightManagementClient.Clusters.Create(resourceGroupName, clusterName, createParams); } diff --git a/src/HDInsight/HDInsight/help/Az.HDInsight.md b/src/HDInsight/HDInsight/help/Az.HDInsight.md index ce2fc79e3f85..bf995b13d907 100644 --- a/src/HDInsight/HDInsight/help/Az.HDInsight.md +++ b/src/HDInsight/HDInsight/help/Az.HDInsight.md @@ -96,7 +96,7 @@ Removes an persisted script action from an HDInsight cluster. Restarts the specific hosts of HDInsight cluster. ### [Set-AzHDInsightClusterDiskEncryptionKey](Set-AzHDInsightClusterDiskEncryptionKey.md) -Rotate the disk encryption key of the specified HDInsight cluster. +Rotates the disk encryption key of the specified HDInsight cluster. ### [Set-AzHDInsightClusterSize](Set-AzHDInsightClusterSize.md) Sets the number of Worker nodes in a specified cluster. diff --git a/src/HDInsight/HDInsight/help/Get-AzHDInsightCluster.md b/src/HDInsight/HDInsight/help/Get-AzHDInsightCluster.md index 4b18f22e6a7d..454bd262a2a4 100644 --- a/src/HDInsight/HDInsight/help/Get-AzHDInsightCluster.md +++ b/src/HDInsight/HDInsight/help/Get-AzHDInsightCluster.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml Module Name: Az.HDInsight ms.assetid: FA154E07-EA26-4688-986E-C53C3A9E4F06 @@ -79,7 +79,7 @@ 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). +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 diff --git a/src/HDInsight/HDInsight/help/New-AzHDInsightCluster.md b/src/HDInsight/HDInsight/help/New-AzHDInsightCluster.md index 05665d382683..74afeb400518 100644 --- a/src/HDInsight/HDInsight/help/New-AzHDInsightCluster.md +++ b/src/HDInsight/HDInsight/help/New-AzHDInsightCluster.md @@ -33,7 +33,8 @@ New-AzHDInsightCluster [-Location] [-ResourceGroupName] [-Clus [-AadTenantId ] [-SecurityProfile ] [-DisksPerWorkerNode ] [-MinSupportedTlsVersion ] [-AssignedIdentity ] [-EncryptionAlgorithm ] [-EncryptionKeyName ] [-EncryptionKeyVersion ] [-EncryptionVaultUri ] - [-DefaultProfile ] [] + [-DefaultProfile ] [-PublicNetworkAccessType ] + [-OutboundPublicNetworkAccessType ] [-EncryptionInTransit ] [] ``` ### CertificateFilePath @@ -56,7 +57,8 @@ New-AzHDInsightCluster [-Location] [-ResourceGroupName] [-Clus [-CertificatePassword ] [-AadTenantId ] [-SecurityProfile ] [-DisksPerWorkerNode ] [-MinSupportedTlsVersion ] [-AssignedIdentity ] [-EncryptionAlgorithm ] [-EncryptionKeyName ] [-EncryptionKeyVersion ] - [-EncryptionVaultUri ] [-DefaultProfile ] [] + [-EncryptionVaultUri ] [-DefaultProfile ] [-PublicNetworkAccessType ] + [-OutboundPublicNetworkAccessType ] [-EncryptionInTransit ] [] ``` ### CertificateFileContents @@ -79,7 +81,8 @@ New-AzHDInsightCluster [-Location] [-ResourceGroupName] [-Clus [-CertificatePassword ] [-AadTenantId ] [-SecurityProfile ] [-DisksPerWorkerNode ] [-MinSupportedTlsVersion ] [-AssignedIdentity ] [-EncryptionAlgorithm ] [-EncryptionKeyName ] [-EncryptionKeyVersion ] - [-EncryptionVaultUri ] [-DefaultProfile ] [] + [-EncryptionVaultUri ] [-DefaultProfile ] [-PublicNetworkAccessType ] + [-OutboundPublicNetworkAccessType ] [-EncryptionInTransit ] [] ``` ## DESCRIPTION @@ -117,7 +120,7 @@ PS C:\> # Primary storage account info -DefaultStorageAccountName "$storageAccountName.blob.core.contoso.net" ` -DefaultStorageAccountKey $storageAccountKey ` -DefaultStorageContainer $storageContainer ` - -SshCredential $clusterCreds ` + -SshCredential $clusterCreds ` ``` This command creates a cluster in the current subscription. @@ -138,14 +141,14 @@ PS C:\> # Primary storage account info $clusterName = "your-cmk-cluster" $clusterCreds = Get-Credential - # Customer-managed Key info - $assignedIdentity = "your-ami-resource-id" - $encryptionKeyName = "new-key" - $encryptionVaultUri = "https://MyKeyVault.vault.azure.net" - $encryptionKeyVersion = "00000000000000000000000000000000" + # Customer-managed Key info + $assignedIdentity = "your-ami-resource-id" + $encryptionKeyName = "new-key" + $encryptionVaultUri = "https://MyKeyVault.vault.azure.net" + $encryptionKeyVersion = "00000000000000000000000000000000" # If the cluster's resource group doesn't exist yet, run: - # New-AzResourceGroup -Name $clusterResourceGroupName -Location $location + # New-AzResourceGroup -Name $clusterResourceGroupName -Location $location # Create the cluster New-AzHDInsightCluster ` @@ -158,11 +161,85 @@ PS C:\> # Primary storage account info -DefaultStorageAccountName "$storageAccountName.blob.core.contoso.net" ` -DefaultStorageAccountKey $storageAccountKey ` -DefaultStorageContainer $storageContainer ` - -SshCredential $clusterCreds ` - -AssignedIdentity $assignedIdentity ` - -EncryptionKeyName $encryptionKeyName ` - -EncryptionVaultUri $encryptionVaultUri ` - -EncryptionKeyVersion $encryptionKeyVersion + -SshCredential $clusterCreds ` + -AssignedIdentity $assignedIdentity ` + -EncryptionKeyName $encryptionKeyName ` + -EncryptionVaultUri $encryptionVaultUri ` + -EncryptionKeyVersion $encryptionKeyVersion +``` + +### Example 3: Create an Azure HDInsight cluster which enables encryption in transit +``` +PS C:\> # Primary storage account info + $storageAccountResourceGroupName = "Group" + $storageAccountName = "yourstorageacct001" + $storageAccountKey = Get-AzStorageAccountKey ` + -ResourceGroupName $storageAccountResourceGroupName ` + -Name $storageAccountName | %{ $_.Key1 } + $storageContainer = "container002" + + # Cluster configuration info + $location = "East US 2" + $clusterResourceGroupName = "Group" + $clusterName = "your-hadoop-002" + $clusterCreds = Get-Credential + + # If the cluster's resource group doesn't exist yet, run: + # New-AzResourceGroup -Name $clusterResourceGroupName -Location $location + + # Create the cluster + New-AzHDInsightCluster ` + -ClusterType Hadoop ` + -ClusterSizeInNodes 4 ` + -ResourceGroupName $clusterResourceGroupName ` + -ClusterName $clusterName ` + -HttpCredential $clusterCreds ` + -Location $location ` + -DefaultStorageAccountName "$storageAccountName.blob.core.contoso.net" ` + -DefaultStorageAccountKey $storageAccountKey ` + -DefaultStorageContainer $storageContainer ` + -SshCredential $clusterCreds ` + -EncryptionInTransit $true ` +``` + +### Example 4: Create an Azure HDInsight cluster with private link feature +``` +PS C:\> # Primary storage account info + $storageAccountResourceGroupName = "Group" + $storageAccountName = "yourstorageacct001" + $storageAccountKey = Get-AzStorageAccountKey ` + -ResourceGroupName $storageAccountResourceGroupName ` + -Name $storageAccountName | %{ $_.Key1 } + $storageContainer = "container002" + + # Cluster configuration info + $location = "East US 2" + $clusterResourceGroupName = "Group" + $clusterName = "your-hadoop-002" + $clusterCreds = Get-Credential + + # If the cluster's resource group doesn't exist yet, run: + # New-AzResourceGroup -Name $clusterResourceGroupName -Location $location + + # Virtual network info + $virtualNetworkId="yourvnetresourceid" + $subnetName="yoursubnetresourceid" + + # Create the cluster + New-AzHDInsightCluster ` + -ClusterType Hadoop ` + -ClusterSizeInNodes 4 ` + -ResourceGroupName $clusterResourceGroupName ` + -ClusterName $clusterName ` + -HttpCredential $clusterCreds ` + -Location $location ` + -DefaultStorageAccountName "$storageAccountName.blob.core.contoso.net" ` + -DefaultStorageAccountKey $storageAccountKey ` + -DefaultStorageContainer $storageContainer ` + -SshCredential $clusterCreds ` + -VirtualNetworkId $virtualNetworkId -SubnetName $subnetName ` + -PublicNetworkAccessType OutboundOnly -OutboundPublicNetworkAccessType PublicLoadBalancer ` + ``` ## PARAMETERS @@ -515,6 +592,22 @@ Gets or sets the encryption algorithm. Type: System.String Parameter Sets: (All) Aliases: +Accepted values: RSA-OAEP, RSA-OAEP-256, RSA1_5 + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EncryptionInTransit +Gets or sets the flag which indicates whether enable encryption in transit or not. + +```yaml +Type: System.Nullable`1[System.Boolean] +Parameter Sets: (All) +Aliases: Required: False Position: Named @@ -694,6 +787,38 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -OutboundPublicNetworkAccessType +Gets or sets the outbound access type to the public network. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: +Accepted values: PublicLoadBalancer, UDR + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PublicNetworkAccessType +Gets or sets the public network access type. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: +Accepted values: InboundAndOutbound, OutboundOnly + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -RdpAccessExpiry Specifies the expiration, as a DateTime object, for Remote Desktop Protocol (RDP) access to a cluster. diff --git a/src/HDInsight/HDInsight/help/New-AzHDInsightClusterConfig.md b/src/HDInsight/HDInsight/help/New-AzHDInsightClusterConfig.md index 6ce6d0e9be7d..00f436796f6f 100644 --- a/src/HDInsight/HDInsight/help/New-AzHDInsightClusterConfig.md +++ b/src/HDInsight/HDInsight/help/New-AzHDInsightClusterConfig.md @@ -21,8 +21,9 @@ New-AzHDInsightClusterConfig [-DefaultStorageAccountName ] [-DefaultStor [-ObjectId ] [-ApplicationId ] [-CertificateFileContents ] [-CertificateFilePath ] [-CertificatePassword ] [-AadTenantId ] [-MinSupportedTlsVersion ] [-AssignedIdentity ] [-EncryptionAlgorithm ] [-EncryptionKeyName ] - [-EncryptionKeyVersion ] [-EncryptionVaultUri ] [-DefaultProfile ] - [] + [-EncryptionKeyVersion ] [-EncryptionVaultUri ] [-PublicNetworkAccessType ] + [-OutboundPublicNetworkAccessType ] [-EncryptionInTransit ] + [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -290,6 +291,22 @@ Gets or sets the encryption algorithm. Type: System.String Parameter Sets: (All) Aliases: +Accepted values: RSA-OAEP, RSA-OAEP-256, RSA1_5 + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EncryptionInTransit +Gets or sets the flag which indicates whether enable encryption in transit or not. + +```yaml +Type: System.Nullable`1[System.Boolean] +Parameter Sets: (All) +Aliases: Required: False Position: Named @@ -422,6 +439,38 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -OutboundPublicNetworkAccessType +Gets or sets the outbound access type to the public network. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: +Accepted values: PublicLoadBalancer, UDR + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PublicNetworkAccessType +Gets or sets the public network access type. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: +Accepted values: InboundAndOutbound, OutboundOnly + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -WorkerNodeSize Specifies the size of the virtual machine for the Worker node. Use Get-AzVMSize for acceptable VM sizes, and see HDInsight's pricing page. diff --git a/src/Resources/Resources.Test/Resources.Test.csproj b/src/Resources/Resources.Test/Resources.Test.csproj index 1bd0fb5377e0..f4c76b7ecced 100644 --- a/src/Resources/Resources.Test/Resources.Test.csproj +++ b/src/Resources/Resources.Test/Resources.Test.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/Resources/Resources.Test/ScenarioTests/Common.ps1 b/src/Resources/Resources.Test/ScenarioTests/Common.ps1 index 0c1e61ddd8f1..379114abc347 100644 --- a/src/Resources/Resources.Test/ScenarioTests/Common.ps1 +++ b/src/Resources/Resources.Test/ScenarioTests/Common.ps1 @@ -116,9 +116,6 @@ function New-AzRoleAssignmentWithId [string] [Parameter()] $RoleDefinitionName, [Guid] [Parameter()] $RoleDefinitionId, [switch] [Parameter()] $AllowDelegation, - [string] [Parameter()] $Description, - [string] [Parameter()] $Condition, - [string] [Parameter()] $ConditionVersion, [Guid] [Parameter()] $RoleAssignmentId ) @@ -187,21 +184,6 @@ function New-AzRoleAssignmentWithId $cmdlet.RoleAssignmentId = $RoleAssignmentId } - if (-not ([string]::IsNullOrEmpty($Description))) - { - $cmdlet.Description = $Description - } - - if (-not ([string]::IsNullOrEmpty($Condition))) - { - $cmdlet.Condition = $Condition - } - - if (-not ([string]::IsNullOrEmpty($ConditionVersion))) - { - $cmdlet.ConditionVersion = $ConditionVersion - } - $cmdlet.ExecuteCmdlet() } diff --git a/src/Resources/Resources.Test/ScenarioTests/ResourceTests.cs b/src/Resources/Resources.Test/ScenarioTests/ResourceTests.cs index e9ef02c2ad46..a14a37c29e0d 100644 --- a/src/Resources/Resources.Test/ScenarioTests/ResourceTests.cs +++ b/src/Resources/Resources.Test/ScenarioTests/ResourceTests.cs @@ -200,5 +200,12 @@ public void TestRemoveASetOfResourcesTest() { TestRunner.RunTestScript("Test-RemoveASetOfResources"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetComplexResourceByDifferentFiltersTest() + { + TestRunner.RunTestScript("Test-GetComplexResourceByDifferentFilters"); + } } } diff --git a/src/Resources/Resources.Test/ScenarioTests/ResourceTests.ps1 b/src/Resources/Resources.Test/ScenarioTests/ResourceTests.ps1 index 7b8d651054e3..e979827fd12d 100644 --- a/src/Resources/Resources.Test/ScenarioTests/ResourceTests.ps1 +++ b/src/Resources/Resources.Test/ScenarioTests/ResourceTests.ps1 @@ -929,4 +929,80 @@ function Test-SetAResourceTagCase { Clean-ResourceGroup $rgname } -} \ No newline at end of file +} + +<# +.SYNOPSIS +Tests getting parent and child resources with different filter. +.DESCRIPTION +#> +function Test-GetComplexResourceByDifferentFilters +{ + # Setup + $rgname = Get-ResourceGroupName + $rnameParent = Get-ResourceName + $rnameChild = Get-ResourceName + $resourceTypeParent = "Microsoft.Sql/servers" + $resourceTypeChild = "Microsoft.Sql/servers/databases" + $rglocation = "eastus" + $location = "eastus" + + # Test + Write-Debug "New-AzResourceGroup -Name $rgname -Location $rglocation" + $group = New-AzResourceGroup -Name $rgname -Location $rglocation + + $password = getAssetName 'P@1Long' + + $apiversion = "2014-04-01" + Write-Debug "New-AzResource -Name $rnameParent -Location $location -ResourceGroupName $rgname -ResourceType $resourceTypeParent -PropertyObject @{`"administratorLogin`" = `"adminuser`"; `"administratorLoginPassword`" = $password} -ApiVersion $apiVersion -Force" + $actualParent = New-AzResource -Name $rnameParent -Location $location -ResourceGroupName $rgname -ResourceType $resourceTypeParent -PropertyObject @{"administratorLogin" = "adminuser"; "administratorLoginPassword" = $password} -ApiVersion $apiVersion -Force + #$expectedParent = Get-AzResource -ResourceId $actualParent.ResourceId + $expectedParent = Get-AzResource -Name $rnameParent -ResourceGroupName $rgname + Assert-NotNull $expectedParent + Write-Debug $expectedParent.ResourceId + + Write-Debug "New-AzResource -Location $location -ResourceGroupName $rgname -ResourceType $resourceTypeChild -ResourceName $rnameParent/$rnameChild -PropertyObject @{`"collation`" = `"SQL_Latin1_General_CP1_CI_AS`"; `"maxSizeBytes`" = `"1073741824`"} -ApiVersion $apiVersion -Force" + $actualChild = New-AzResource -Location $location -ResourceGroupName $rgname -ResourceType $resourceTypeChild -ResourceName $rnameParent/$rnameChild -PropertyObject @{"collation" = "SQL_Latin1_General_CP1_CI_AS"; "maxSizeBytes" = "1073741824"} -ApiVersion $apiVersion -Force + #$expectedChild = Get-AzResource -ResourceId $actualChild.ResourceId + $expectedChild = Get-AzResource -Name $rnameChild -ResourceGroupName $rgname + Assert-NotNull $expectedChild + Write-Debug $expectedChild.ResourceId + Write-Debug $expectedChild.Name + Write-Debug $expectedChild.ResourceName +<# + $expectedWithParentFilter = Get-AzResource -ResourceGroupName $rgname -Name $rnameParent + Assert-NotNull $expectedWithParentFilter + Assert-AreEqual $rnameParent $expectedWithParentFilter.Name + + $expectedWithChildFilter = Get-AzResource -ResourceGroupName $rgname -Name $rnameChild + Assert-NotNull $expectedWithChildFilter + Assert-AreEqual $rnameParent/$rnameChild $expectedWithChildFilter.Name +#> + $expectedChildWithParentChildFilter = Get-AzResource -ResourceGroupName $rgname -Name $rnameParent/$rnameChild + Assert-NotNull $expectedChildWithParentChildFilter + Assert-AreEqual $rnameParent/$rnameChild $expectedChildWithParentChildFilter.Name + + $list = Get-AzResource -ResourceGroupName $rgname + + $parentFromList = $list | where {$_.ResourceType -eq $resourceTypeParent} | Select-Object -First 1 + $childFromList = $list | where {$_.ResourceType -eq $resourceTypeChild} | Select-Object -Last 1 + + $listOfServers = Get-AzResource -ResourceType $resourceTypeParent -ResourceGroupName $rgname + $listOfDatabases = Get-AzResource -ResourceType $resourceTypeChild -ResourceGroupName $rgname + + # Assert + Assert-AreEqual $expectedParent.Name $actualParent.ResourceName + Assert-AreEqual $expectedChild.Name $actualChild.ResourceName + Assert-AreEqual $expectedParent.ResourceType $actualParent.ResourceType + Assert-AreEqual $expectedChild.ResourceType $actualChild.ResourceType + + #ToDo: Get-AzResource return object not equal to New-AzResource + Assert-AreEqual 3 $list.Count + Assert-AreEqual $expectedParent.Name $parentFromList.Name + Assert-AreEqual $expectedChild.Name $childFromList.Name + Assert-AreEqual $expectedParent.ResourceType $parentFromList.ResourceType + Assert-AreEqual $expectedChild.ResourceType $childFromList.ResourceType + + Assert-AreEqual 1 $listOfServers.Count + Assert-AreEqual 2 $listOfDatabases.Count + } \ No newline at end of file diff --git a/src/Resources/Resources.Test/ScenarioTests/RoleAssignmentTests.cs b/src/Resources/Resources.Test/ScenarioTests/RoleAssignmentTests.cs index 4489c52b2147..a5082741319d 100644 --- a/src/Resources/Resources.Test/ScenarioTests/RoleAssignmentTests.cs +++ b/src/Resources/Resources.Test/ScenarioTests/RoleAssignmentTests.cs @@ -181,34 +181,6 @@ public void RaCreatedBySP() TestRunner.RunTestScript("Test-RaCreatedBySP"); } - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] - public void RaWithV1Conditions() - { - TestRunner.RunTestScript("Test-RaWithV1Conditions"); - } - - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] - public void RaWithV2Conditions() - { - TestRunner.RunTestScript("Test-RaWithV2Conditions"); - } - - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] - public void RaWithV2ConditionsOnly() - { - TestRunner.RunTestScript("Test-RaWithV2ConditionsOnly"); - } - - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] - public void RaWithV2ConditionVersionOnly() - { - TestRunner.RunTestScript("Test-RaWithV2ConditionVersionOnly"); - } - [Fact(Skip = "Fix the flaky test and token error and then re-record the test. Token from admin user is being used even when trying to use newly created user.")] [Trait(Category.AcceptanceType, Category.CheckIn)] public void RaUserPermissions() diff --git a/src/Resources/Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 b/src/Resources/Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 index 11b2e7c93839..a5d521987e02 100644 --- a/src/Resources/Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 +++ b/src/Resources/Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 @@ -721,137 +721,4 @@ function Test-RaCreatedBySP -RoleAssignmentId f0f113bd-7ff9-4eb6-b949-5de18d1b38ca Assert-NotNull $data -} - -<# -.SYNOPSIS -Create role assignment with v1 conditions -#> -function Test-RaWithV1Conditions{ - - #Given - $RoleDefinitionId = "acdd72a7-3385-48ef-bd42-f606fba81ae7" - $PrincipalId = "01072e9b-c4a1-4246-a756-031b529bbf66" - $Scope = '/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg' - $Description = "This test should not fail" - $Condition = "@Resource[Microsoft.Storage/storageAccounts/blobServices/containers:ContainerName] StringEqualsIgnoreCase 'foo_storage_container'" - $ConditionVersion = "1.0" - - #When - $data = {New-AzRoleAssignmentWithId ` - -ObjectId $PrincipalId ` - -Scope $Scope ` - -RoleDefinitionId $RoleDefinitionId ` - -Description $Description ` - -Condition $Condition ` - -ConditionVersion $ConditionVersion ` - -RoleAssignmentId 734de5f5-c680-41c0-8beb-67b98c3539d1} - - #Then - Assert-Throws $data "Argument -ConditionVersion must be greater or equal than 2.0" -} - -<# -.SYNOPSIS -Create role assignment with v2 conditions -#> -function Test-RaWithV2Conditions{ - #Given - $RoleDefinitionId = "acdd72a7-3385-48ef-bd42-f606fba81ae7" - $PrincipalId = "01072e9b-c4a1-4246-a756-031b529bbf66" - $Scope = '/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg' - $Description = "This test should not fail" - $Condition = "@Resource[Microsoft.Storage/storageAccounts/blobServices/containers:Name] StringEqualsIgnoreCase 'foo_storage_container'" - $ConditionVersion = "2.0" - - #When - $data = New-AzRoleAssignmentWithId ` - -ObjectId $PrincipalId ` - -Scope $Scope ` - -RoleDefinitionId $RoleDefinitionId ` - -Description $Description ` - -Condition $Condition ` - -ConditionVersion $ConditionVersion ` - -RoleAssignmentId 734de5f5-c680-41c0-8beb-67b98c3539d2 - - #Then - Assert-NotNull $data "The role assignment was not created succesfully" - Assert-AreEqual $RoleDefinitionId $data.RoleDefinitionId "Assertion failed because expected RoleDefinitionId '$RoleDefinitionId' does not match actual '$data.RoleDefinitionId'" - Assert-AreEqual $PrincipalId $data.ObjectId "Assertion failed because expected PrincipalId '$PrincipalId' does not match actual '$data.ObjectId'" - Assert-AreEqual $Scope $data.Scope "Assertion failed because expected Scope '$Scope' does not match actual '$data.Scope'" - Assert-AreEqual $Description $data.Description "Assertion failed because expected Description '$Description' does not match actual '$data.Description'" - Assert-AreEqual $Condition $data.Condition "Assertion failed because expected Condition '$Condition' does not match actual '$data.Condition'" - Assert-AreEqual $ConditionVersion $data.ConditionVersion "Assertion failed because expected ConditionVersion '$ConditionVersion' does not match actual '$data.ConditionVersion'" - - #Cleanup - $data = Remove-AzRoleAssignment -InputObject $data - Assert-Null $data "Role assignment was not deleted properly" -} - -<# -.SYNOPSIS -Create role assignment with v2 conditions -#> -function Test-RaWithV2ConditionsOnly{ - #Given - $RoleDefinitionId = "acdd72a7-3385-48ef-bd42-f606fba81ae7" - $PrincipalId = "01072e9b-c4a1-4246-a756-031b529bbf66" - $Scope = '/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg' - #$RoleDefinitionId = "0353ee0a-19ae-4380-ba3d-d54767c75d5b" - #$PrincipalId = "e95fa608-3d49-4438-9f60-35d85d84ca16" - #$Scope = '/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/daorozco_bug_repro' - $Description = "This test should not fail" - $Condition = "@Resource[Microsoft.Storage/storageAccounts/blobServices/containers:Name] StringEqualsIgnoreCase 'foo_storage_container'" - $ConditionVersion = "2.0" - - #When - $data = New-AzRoleAssignmentWithId ` - -ObjectId $PrincipalId ` - -Scope $Scope ` - -RoleDefinitionId $RoleDefinitionId ` - -Description $Description ` - -Condition $Condition ` - -RoleAssignmentId 734de5f5-c680-41c0-8beb-67b98c3539d2 - - #Then - Assert-NotNull $data "The role assignment was not created succesfully" - Assert-AreEqual $RoleDefinitionId $data.RoleDefinitionId "Assertion failed because expected RoleDefinitionId '$RoleDefinitionId' does not match actual '$data.RoleDefinitionId'" - Assert-AreEqual $PrincipalId $data.ObjectId "Assertion failed because expected PrincipalId '$PrincipalId' does not match actual '$data.ObjectId'" - Assert-AreEqual $Scope $data.Scope "Assertion failed because expected Scope '$Scope' does not match actual '$data.Scope'" - Assert-AreEqual $Description $data.Description "Assertion failed because expected Description '$Description' does not match actual '$data.Description'" - Assert-AreEqual $Condition $data.Condition "Assertion failed because expected Condition '$Condition' does not match actual '$data.Condition'" - Assert-AreEqual $ConditionVersion $data.ConditionVersion "Assertion failed because expected ConditionVersion '$ConditionVersion' does not match actual '$data.ConditionVersion'" - - #Cleanup - $data = Remove-AzRoleAssignment -InputObject $data - Assert-Null $data "Role assignment was not deleted properly" -} - -<# -.SYNOPSIS -Create role assignment with v2 conditions -#> -function Test-RaWithV2ConditionVersionOnly{ - # IMPORTANT this cmdlet gets interrupted before any network call in this scenario, no session record is needed - #Given - #$RoleDefinitionId = "acdd72a7-3385-48ef-bd42-f606fba81ae7" - #$PrincipalId = "01072e9b-c4a1-4246-a756-031b529bbf66" - #$Scope = '/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg' - $RoleDefinitionId = "0353ee0a-19ae-4380-ba3d-d54767c75d5b" - $PrincipalId = "e95fa608-3d49-4438-9f60-35d85d84ca16" - $Scope = '/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/daorozco_bug_repro' - $Description = "This test should not fail" - $ConditionVersion = "2.0" - - #When - $data = {New-AzRoleAssignmentWithId ` - -ObjectId $PrincipalId ` - -Scope $Scope ` - -RoleDefinitionId $RoleDefinitionId ` - -Description $Description ` - -ConditionVersion $ConditionVersion ` - -RoleAssignmentId 734de5f5-c680-41c0-8beb-67b98c3539d2} - - #Then - Assert-Throws $data "If -ConditionVersion is set -Condition can not be empty." } \ No newline at end of file diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ResourceTests/TestGetComplexResourceByDifferentFiltersTest.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ResourceTests/TestGetComplexResourceByDifferentFiltersTest.json new file mode 100644 index 000000000000..32ea16067ef8 --- /dev/null +++ b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ResourceTests/TestGetComplexResourceByDifferentFiltersTest.json @@ -0,0 +1,932 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourcegroups/ps7487?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmIwODU0NjAtNWYyMS00NzdlLWJhNDQtMTAzNTA0NmU5MTAxL3Jlc291cmNlZ3JvdXBzL3BzNzQ4Nz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a76fa2e-ac9a-4bca-9b65-4ca0422873b9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "5fe6ea5b-cbad-475c-a4b3-6f8ee5608376" + ], + "x-ms-correlation-request-id": [ + "5fe6ea5b-cbad-475c-a4b3-6f8ee5608376" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200720T145448Z:5fe6ea5b-cbad-475c-a4b3-6f8ee5608376" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 20 Jul 2020 14:54:48 GMT" + ], + "Content-Length": [ + "98" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourcegroups/ps7487?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmIwODU0NjAtNWYyMS00NzdlLWJhNDQtMTAzNTA0NmU5MTAxL3Jlc291cmNlZ3JvdXBzL3BzNzQ4Nz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3df4f7ce-512d-454f-85b4-8e873e528cda" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "8f969656-a214-472a-ac49-195aca1223b4" + ], + "x-ms-correlation-request-id": [ + "8f969656-a214-472a-ac49-195aca1223b4" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200720T145451Z:8f969656-a214-472a-ac49-195aca1223b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 20 Jul 2020 14:54:50 GMT" + ], + "Content-Length": [ + "209" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487\",\r\n \"name\": \"ps7487\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmIwODU0NjAtNWYyMS00NzdlLWJhNDQtMTAzNTA0NmU5MTAxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjE0Mj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "PUT", + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"adminuser\",\r\n \"administratorLoginPassword\": \"P@1Long7781\"\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "User-Agent": [ + "AzurePowershell/v1.0.0", + "PSVersion/v6.1.0" + ], + "ParameterSetName": [ + "BySubscriptionLevel" + ], + "CommandName": [ + "New-AzResource" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "142" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "x-ms-request-id": [ + "039f3f77-69c7-4502-b159-ce12865b7dbd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "43455a5e-31d7-4c96-b85b-d7379d0a5556" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200720T145535Z:43455a5e-31d7-4c96-b85b-d7379d0a5556" + ], + "Date": [ + "Mon, 20 Jul 2020 14:55:34 GMT" + ], + "Content-Length": [ + "451" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "0" + ] + }, + //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142\",\r\n \"name\": \"ps6142\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"East US\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"ps6142.database.windows.net\",\r\n \"administratorLogin\": \"adminuser\",\r\n \"administratorLoginPassword\": \"P@1Long7781\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/resources?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmIwODU0NjAtNWYyMS00NzdlLWJhNDQtMTAzNTA0NmU5MTAxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Ny9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "545e452a-aeca-41c9-a546-0de3dc432b7f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "4cb58534-3ddd-46b8-91ec-d1e8f9341973" + ], + "x-ms-correlation-request-id": [ + "4cb58534-3ddd-46b8-91ec-d1e8f9341973" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200720T145542Z:4cb58534-3ddd-46b8-91ec-d1e8f9341973" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 20 Jul 2020 14:55:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "215" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142\",\r\n \"name\": \"ps6142\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/resources?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmIwODU0NjAtNWYyMS00NzdlLWJhNDQtMTAzNTA0NmU5MTAxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Ny9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c81d906d-d718-4391-9749-c78ae8129379" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "8ecf8e06-57d3-4686-a40b-17de8f053aba" + ], + "x-ms-correlation-request-id": [ + "8ecf8e06-57d3-4686-a40b-17de8f053aba" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200720T145629Z:8ecf8e06-57d3-4686-a40b-17de8f053aba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 20 Jul 2020 14:56:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "889" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142\",\r\n \"name\": \"ps6142\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142/databases/master\",\r\n \"name\": \"ps6142/master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"System\",\r\n \"tier\": \"System\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"v12.0,system\",\r\n \"managedBy\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142/databases/ps7744\",\r\n \"name\": \"ps6142/ps7744\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/resources?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmIwODU0NjAtNWYyMS00NzdlLWJhNDQtMTAzNTA0NmU5MTAxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Ny9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd5bd05e-3f00-4341-b53b-38d3cfd38f49" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "ed5cee91-5e91-4d04-89c7-781ad6801130" + ], + "x-ms-correlation-request-id": [ + "ed5cee91-5e91-4d04-89c7-781ad6801130" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200720T145635Z:ed5cee91-5e91-4d04-89c7-781ad6801130" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 20 Jul 2020 14:56:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "889" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142\",\r\n \"name\": \"ps6142\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142/databases/master\",\r\n \"name\": \"ps6142/master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"System\",\r\n \"tier\": \"System\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"v12.0,system\",\r\n \"managedBy\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142/databases/ps7744\",\r\n \"name\": \"ps6142/ps7744\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/resources?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmIwODU0NjAtNWYyMS00NzdlLWJhNDQtMTAzNTA0NmU5MTAxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Ny9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2d95026c-e599-4f8c-9502-95092c333a84" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "e7882495-0788-4b4a-80b4-d483f4f13f3a" + ], + "x-ms-correlation-request-id": [ + "e7882495-0788-4b4a-80b4-d483f4f13f3a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200720T145648Z:e7882495-0788-4b4a-80b4-d483f4f13f3a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 20 Jul 2020 14:56:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "889" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142\",\r\n \"name\": \"ps6142\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142/databases/master\",\r\n \"name\": \"ps6142/master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"System\",\r\n \"tier\": \"System\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"v12.0,system\",\r\n \"managedBy\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142/databases/ps7744\",\r\n \"name\": \"ps6142/ps7744\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142/databases/ps7744?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmIwODU0NjAtNWYyMS00NzdlLWJhNDQtMTAzNTA0NmU5MTAxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjE0Mi9kYXRhYmFzZXMvcHM3NzQ0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "User-Agent": [ + "AzurePowershell/v1.0.0", + "PSVersion/v6.1.0" + ], + "ParameterSetName": [ + "BySubscriptionLevel" + ], + "CommandName": [ + "New-AzResource" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "137" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142/databases/ps7744/operationResults/d6597cf7-e357-43e4-b172-a609066c815b?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "0" + ], + "x-ms-request-id": [ + "d6597cf7-e357-43e4-b172-a609066c815b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142/databases/ps7744/azureAsyncOperation/d6597cf7-e357-43e4-b172-a609066c815b?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "7740881d-2f81-42f0-b49d-0768925ce465" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200720T145551Z:7740881d-2f81-42f0-b49d-0768925ce465" + ], + "Date": [ + "Mon, 20 Jul 2020 14:55:50 GMT" + ], + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-07-20T22:55:50.753+08:00\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142/databases/ps7744/azureAsyncOperation/d6597cf7-e357-43e4-b172-a609066c815b?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmIwODU0NjAtNWYyMS00NzdlLWJhNDQtMTAzNTA0NmU5MTAxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjE0Mi9kYXRhYmFzZXMvcHM3NzQ0L2F6dXJlQXN5bmNPcGVyYXRpb24vZDY1OTdjZjctZTM1Ny00M2U0LWIxNzItYTYwOTA2NmM4MTViP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "AzurePowershell/v1.0.0", + "PSVersion/v6.1.0" + ], + "ParameterSetName": [ + "BySubscriptionLevel" + ], + "CommandName": [ + "New-AzResource" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "x-ms-request-id": [ + "aed455f7-d50b-43e9-8285-b147f8866746" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142/databases/ps7744/azureAsyncOperation/d6597cf7-e357-43e4-b172-a609066c815b?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "69097fb5-a216-433f-abea-25a971b046d4" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200720T145551Z:69097fb5-a216-433f-abea-25a971b046d4" + ], + "Date": [ + "Mon, 20 Jul 2020 14:55:51 GMT" + ], + "Content-Length": [ + "89" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d6597cf7-e357-43e4-b172-a609066c815b\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142/databases/ps7744/azureAsyncOperation/d6597cf7-e357-43e4-b172-a609066c815b?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmIwODU0NjAtNWYyMS00NzdlLWJhNDQtMTAzNTA0NmU5MTAxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjE0Mi9kYXRhYmFzZXMvcHM3NzQ0L2F6dXJlQXN5bmNPcGVyYXRpb24vZDY1OTdjZjctZTM1Ny00M2U0LWIxNzItYTYwOTA2NmM4MTViP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "AzurePowershell/v1.0.0", + "PSVersion/v6.1.0" + ], + "ParameterSetName": [ + "BySubscriptionLevel" + ], + "CommandName": [ + "New-AzResource" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "x-ms-request-id": [ + "e2177986-2994-4e29-ade4-ca1ab51667e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142/databases/ps7744/azureAsyncOperation/d6597cf7-e357-43e4-b172-a609066c815b?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "0024e725-2b77-43e2-9ab4-68b413eb2e74" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200720T145553Z:0024e725-2b77-43e2-9ab4-68b413eb2e74" + ], + "Date": [ + "Mon, 20 Jul 2020 14:55:53 GMT" + ], + "Content-Length": [ + "89" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"d6597cf7-e357-43e4-b172-a609066c815b\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142/databases/ps7744/operationResults/d6597cf7-e357-43e4-b172-a609066c815b?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmIwODU0NjAtNWYyMS00NzdlLWJhNDQtMTAzNTA0NmU5MTAxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjE0Mi9kYXRhYmFzZXMvcHM3NzQ0L29wZXJhdGlvblJlc3VsdHMvZDY1OTdjZjctZTM1Ny00M2U0LWIxNzItYTYwOTA2NmM4MTViP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "AzurePowershell/v1.0.0", + "PSVersion/v6.1.0" + ], + "ParameterSetName": [ + "BySubscriptionLevel" + ], + "CommandName": [ + "New-AzResource" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142/databases/ps7744/operationResults/d6597cf7-e357-43e4-b172-a609066c815b?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "0" + ], + "x-ms-request-id": [ + "3ea4b094-187b-4f09-abb3-5e9145a5ccdb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142/databases/ps7744/azureAsyncOperation/d6597cf7-e357-43e4-b172-a609066c815b?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "54bdc4db-820f-4125-a785-fa0fcdc26e22" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200720T145553Z:54bdc4db-820f-4125-a785-fa0fcdc26e22" + ], + "Date": [ + "Mon, 20 Jul 2020 14:55:53 GMT" + ], + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2020-07-20T14:55:50.737Z\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142/databases/ps7744/operationResults/d6597cf7-e357-43e4-b172-a609066c815b?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmIwODU0NjAtNWYyMS00NzdlLWJhNDQtMTAzNTA0NmU5MTAxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3BzNjE0Mi9kYXRhYmFzZXMvcHM3NzQ0L29wZXJhdGlvblJlc3VsdHMvZDY1OTdjZjctZTM1Ny00M2U0LWIxNzItYTYwOTA2NmM4MTViP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "AzurePowershell/v1.0.0", + "PSVersion/v6.1.0" + ], + "ParameterSetName": [ + "BySubscriptionLevel" + ], + "CommandName": [ + "New-AzResource" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "x-ms-request-id": [ + "2b369508-a9e5-405d-9b84-3ff56642c52d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "357d8680-71c1-4b09-b8cf-ea9ab9cc5c9c" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200720T145624Z:357d8680-71c1-4b09-b8cf-ea9ab9cc5c9c" + ], + "Date": [ + "Mon, 20 Jul 2020 14:56:24 GMT" + ], + "Content-Length": [ + "926" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142/databases/ps7744\",\r\n \"name\": \"ps7744\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"East US\",\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"properties\": {\r\n \"databaseId\": \"ce570f00-bd41-495d-942b-8b3de64da51d\",\r\n \"edition\": \"GeneralPurpose\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"GP_Gen5_2\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2020-07-20T14:56:21.503Z\",\r\n \"currentServiceObjectiveId\": \"f21733ad-9b9b-4d4e-a4fa-94a133c41718\",\r\n \"requestedServiceObjectiveId\": \"f21733ad-9b9b-4d4e-a4fa-94a133c41718\",\r\n \"requestedServiceObjectiveName\": \"GP_Gen5_2\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2020-07-20T15:26:21.503Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null,\r\n \"zoneRedundant\": false,\r\n \"isUpgradeRequested\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/resources?$filter=resourceType%20EQ%20'Microsoft.Sql/servers'&api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmIwODU0NjAtNWYyMS00NzdlLWJhNDQtMTAzNTA0NmU5MTAxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Ny9yZXNvdXJjZXM/JGZpbHRlcj1yZXNvdXJjZVR5cGUlMjBFUSUyMCdNaWNyb3NvZnQuU3FsL3NlcnZlcnMnJmFwaS12ZXJzaW9uPTIwMTktMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "574c621d-2c5e-40fb-bb48-3cd90f626bd7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "0fc43318-566e-4576-81d8-c0615fad5930" + ], + "x-ms-correlation-request-id": [ + "0fc43318-566e-4576-81d8-c0615fad5930" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200720T145648Z:0fc43318-566e-4576-81d8-c0615fad5930" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 20 Jul 2020 14:56:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "215" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142\",\r\n \"name\": \"ps6142\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/resources?$filter=resourceType%20EQ%20'Microsoft.Sql/servers/databases'&api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmIwODU0NjAtNWYyMS00NzdlLWJhNDQtMTAzNTA0NmU5MTAxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Ny9yZXNvdXJjZXM/JGZpbHRlcj1yZXNvdXJjZVR5cGUlMjBFUSUyMCdNaWNyb3NvZnQuU3FsL3NlcnZlcnMvZGF0YWJhc2VzJyZhcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "341d2cc4-e341-4a68-83fb-af33b16f3316" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28928.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "50c78032-e760-4a83-843e-cee12d33c75a" + ], + "x-ms-correlation-request-id": [ + "50c78032-e760-4a83-843e-cee12d33c75a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200720T145648Z:50c78032-e760-4a83-843e-cee12d33c75a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 20 Jul 2020 14:56:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "685" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142/databases/master\",\r\n \"name\": \"ps6142/master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"System\",\r\n \"tier\": \"System\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"v12.0,system\",\r\n \"managedBy\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/ps7487/providers/Microsoft.Sql/servers/ps6142/databases/ps7744\",\r\n \"name\": \"ps6142/ps7744\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": { + "Test-GetComplexResourceByDifferentFilters": [ + "ps7487", + "ps6142", + "ps7744", + "P@1Long7781" + ] + }, + "Variables": { + "SubscriptionId": "6b085460-5f21-477e-ba44-1035046e9101" + } +} \ No newline at end of file diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaWithV1Conditions.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaWithV1Conditions.json deleted file mode 100644 index e02c8b4d1f52..000000000000 --- a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaWithV1Conditions.json +++ /dev/null @@ -1,518 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "//subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments/734de5f5-c680-41c0-8beb-67b98c3539d1?api-version=2020-04-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy9kYW9yb3pjb19idWdfcmVwcm8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy83MzRkZTVmNS1jNjgwLTQxYzAtOGJlYi02N2I5OGMzNTM5ZDE/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"canDelegate\": false,\r\n \"description\": \"This test should not fail\",\r\n \"condition\": \"@Resource[Microsoft.Storage/storageAccounts/blobServices/containers:ContainerName] StringEqualsIgnoreCase 'foo_storage_container'\",\r\n \"conditionVersion\": \"1.0\"\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b5c311e5-d703-451f-a7b7-6c181b6f341e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28928.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.12.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "547" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "59de6b34-8b25-4720-933c-503a47b487ae" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=Production; path=/; SameSite=None; secure; HttpOnly" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "496febc6-c217-47ef-b246-408671fd16f6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200709T230031Z:496febc6-c217-47ef-b246-408671fd16f6" - ], - "Date": [ - "Thu, 09 Jul 2020 23:00:31 GMT" - ], - "Content-Length": [ - "1050" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg\",\r\n \"condition\": \"@Resource[Microsoft.Storage/storageAccounts/blobServices/containers:ContainerName] StringEqualsIgnoreCase 'foo_storage_container'\",\r\n \"conditionVersion\": \"1.0\",\r\n \"createdOn\": \"2020-07-09T23:00:30.2997885Z\",\r\n \"updatedOn\": \"2020-07-09T23:00:30.2997885Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false,\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": \"This test should not fail\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments/734de5f5-c680-41c0-8beb-67b98c3539d1\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"734de5f5-c680-41c0-8beb-67b98c3539d1\"\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "//subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7?api-version=2018-01-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zL2FjZGQ3MmE3LTMzODUtNDhlZi1iZDQyLWY2MDZmYmE4MWFlNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f847702a-2031-49fe-a8d4-b72b04a96481" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28928.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.12.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7ac679cc-da8f-4b12-afa1-3e589d6d8719" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=Production; path=/; secure; HttpOnly; SameSite=None" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "b26cbe8c-da0c-4a36-8792-a2d3c3028bc1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200709T230031Z:b26cbe8c-da0c-4a36-8792-a2d3c3028bc1" - ], - "Date": [ - "Thu, 09 Jul 2020 23:00:31 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:35.7424745Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/395544B0-BF41-429D-921F-E1CA2252FCF4/getObjectsByObjectIds?api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"01072e9b-c4a1-4246-a756-031b529bbf66\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "26494229-be6d-4932-bccb-f3f2549af2fe" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28928.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/3.5.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "116" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ocp-aad-diagnostics-server-name": [ - "a9mmah5e/Em6iyx6j5zM82NNZhbYYB8EG3Lr9YKbAhU=" - ], - "request-id": [ - "4fb4daf1-df73-4fd5-ac12-4ceb8ce9b2d3" - ], - "client-request-id": [ - "26494229-be6d-4932-bccb-f3f2549af2fe" - ], - "x-ms-dirapi-data-contract-version": [ - "1.6" - ], - "ocp-aad-session-key": [ - "p63jtIjENpcyijIiOIxNCP1yPg2snfkMpbJW0UQ_i4zOrUpJrywLKZr0FkjlHGkeU6yH-z1e19j-kJr-05qAUNaWch3Z5RxLYEC-YPL-Sy6MNy5vcPch0VBBtskaMGL4.5b-I7qbld4WHI9HmC-mo66Q0Zt4LE0HpjMgeZITbXHY" - ], - "x-aad-resource-unit": [ - "3" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Duration": [ - "727329" - ], - "Date": [ - "Thu, 09 Jul 2020 23:00:30 GMT" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "1511" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"ageGroup\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"consentProvidedForMinor\": null,\r\n \"country\": null,\r\n \"createdDateTime\": \"2020-07-06T23:49:47Z\",\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ddd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"dagoroz-bug-repro\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2020-07-06T23:49:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"dagoroz-bug-repro@rbacclitest.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/395544B0-BF41-429D-921F-E1CA2252FCF4/getObjectsByObjectIds?api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"01072e9b-c4a1-4246-a756-031b529bbf66\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e5e4c510-a698-4f60-8cca-9a285e7bc731" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28928.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/3.5.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "116" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ocp-aad-diagnostics-server-name": [ - "Jyamh40I/riKJflXwk3LHmaI3Lsq6osSe+/rd7Qerq0=" - ], - "request-id": [ - "317d9513-fb17-4e28-bdf8-67dd13306c22" - ], - "client-request-id": [ - "e5e4c510-a698-4f60-8cca-9a285e7bc731" - ], - "x-ms-dirapi-data-contract-version": [ - "1.6" - ], - "ocp-aad-session-key": [ - "lN2aNUDadUPUeAODLRUiL7a8_Owj3OwGEKFMQNaWy9OUEUJdTuKJV2gR2JqWzrS6PifMCCg8ZQ8Iqkl9KYoLTEyGtMpO-G2DgluTp--hl-LTO6uZKqq1mo0_76T_kNCk.fGJ-MXwJop6Flnh-LJbk6Z9H_EvZZCuN7WtM0p7bVuc" - ], - "x-aad-resource-unit": [ - "3" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Duration": [ - "740529" - ], - "Date": [ - "Thu, 09 Jul 2020 23:00:31 GMT" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "1511" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"ageGroup\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"consentProvidedForMinor\": null,\r\n \"country\": null,\r\n \"createdDateTime\": \"2020-07-06T23:49:47Z\",\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ddd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"dagoroz-bug-repro\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2020-07-06T23:49:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"dagoroz-bug-repro@rbacclitest.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "//subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'01072e9b-c4a1-4246-a756-031b529bbf66'&api-version=2020-04-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy9kYW9yb3pjb19idWdfcmVwcm8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cz8kZmlsdGVyPXByaW5jaXBhbElkJTIwZXElMjAnZTk1ZmE2MDgtM2Q0OS00NDM4LTlmNjAtMzVkODVkODRjYTE2JyZhcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "10c67b81-ce54-4aa9-937e-5aa1d7667498" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28928.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.12.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e7a30428-c47d-4eb2-9ab7-85e93cfafa29" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=Production; path=/; SameSite=None; secure; HttpOnly" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "12c38987-af64-4eef-ad9c-a2ad32108370" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200709T230031Z:12c38987-af64-4eef-ad9c-a2ad32108370" - ], - "Date": [ - "Thu, 09 Jul 2020 23:00:31 GMT" - ], - "Content-Length": [ - "1096" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg\",\r\n \"condition\": \"@Resource[Microsoft.Storage/storageAccounts/blobServices/containers:ContainerName] StringEqualsIgnoreCase 'foo_storage_container'\",\r\n \"conditionVersion\": \"1.0\",\r\n \"createdOn\": \"2020-07-09T23:00:30.4997866Z\",\r\n \"updatedOn\": \"2020-07-09T23:00:30.4997866Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false,\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": \"This test should not fail\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments/734de5f5-c680-41c0-8beb-67b98c3539d1\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"734de5f5-c680-41c0-8beb-67b98c3539d1\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "//subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleDefinitions?api-version=2018-01-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy9kYW9yb3pjb19idWdfcmVwcm8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVEZWZpbml0aW9ucz9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d5e5db6-cc81-40cc-ac01-3bc0118d9183" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28928.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.12.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "05b9fd3a-b8a6-4504-8a3e-094a6b7938e3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=Production; path=/; secure; HttpOnly; SameSite=None" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "2888c327-01b4-4741-9331-de67276b428b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200709T230032Z:2888c327-01b4-4741-9331-de67276b428b" - ], - "Date": [ - "Thu, 09 Jul 2020 23:00:31 GMT" - ], - "Content-Length": [ - "244004" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test Properties\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-13T18:17:20.8584392Z\",\r\n \"updatedOn\": \"2018-03-13T18:18:37.0952708Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/171d2453-29dc-42b4-84fc-3fd259eeaec3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"171d2453-29dc-42b4-84fc-3fd259eeaec3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test RD\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test RDDD\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-04-17T18:39:35.636177Z\",\r\n \"updatedOn\": \"2018-04-17T18:39:35.636177Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/98b036c8-8bf1-4f4a-8f50-a0a6dde0e734\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"98b036c8-8bf1-4f4a-8f50-a0a6dde0e734\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"test role and another testrole\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-22T23:58:52.7462995Z\",\r\n \"updatedOn\": \"2018-04-11T20:49:59.3331071Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/a997608d-3f63-4eeb-b01b-1b3ae270cd6d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a997608d-3f63-4eeb-b01b-1b3ae270cd6d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testrole132\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-05-30T23:13:47.7513317Z\",\r\n \"updatedOn\": \"2018-05-30T23:13:47.7513317Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/3e66a0a6-a18a-4afc-a5cc-ec19e06012ae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3e66a0a6-a18a-4afc-a5cc-ec19e06012ae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testrole-novm\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets Fuse Developers access select objects they need.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/*/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/*/read\",\r\n \"Microsoft.Storage/storageAccounts/*/read\",\r\n \"Microsoft.Web/sites/*/read\",\r\n \"Microsoft.ServiceBus/namespaces/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-09-20T00:19:06.4239042Z\",\r\n \"updatedOn\": \"2018-09-20T00:19:06.4239042Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/ef4af617-2f0e-412b-b30a-b7c848aa9098\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ef4af617-2f0e-412b-b30a-b7c848aa9098\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/rbactest\",\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestContributor\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\",\r\n \"Microsoft.Blueprint/blueprintAssignments/write\",\r\n \"Microsoft.Blueprint/blueprintAssignments/delete\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-06T00:36:20.4923118Z\",\r\n \"updatedOn\": \"2019-04-10T19:14:27.67508Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/c24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-21T18:24:29.0508834Z\",\r\n \"updatedOn\": \"2019-08-21T18:32:39.5641976Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testbatchcontributor\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Batch/batchAccounts/read\",\r\n \"Microsoft.Batch/batchAccounts/*/read\",\r\n \"Microsoft.Batch/batchAccounts/applications/*\",\r\n \"Microsoft.Batch/batchAccounts/listkeys/action\",\r\n \"Microsoft.Batch/batchAccounts/pools/write\",\r\n \"Microsoft.Batch/batchAccounts/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-09-10T16:44:02.3947885Z\",\r\n \"updatedOn\": \"2019-09-10T16:44:02.3947885Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/e2ab292b-812a-4306-9c73-df992f61649b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e2ab292b-812a-4306-9c73-df992f61649b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"No RD WRITE\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/roleDefinitions/write\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-01-28T00:57:45.1574464Z\",\r\n \"updatedOn\": \"2020-01-28T00:57:45.1574464Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/d8bae860-743b-407c-8cf0-3aa1cbb8788c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d8bae860-743b-407c-8cf0-3aa1cbb8788c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"No RD READ\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-01-29T00:27:29.0693475Z\",\r\n \"updatedOn\": \"2020-01-29T00:27:29.0693475Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/724dd060-7e51-4f7b-a749-cd927f345b68\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"724dd060-7e51-4f7b-a749-cd927f345b68\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"asd\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Synapse/register/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-19T20:09:21.8617073Z\",\r\n \"updatedOn\": \"2020-02-19T20:09:21.8617073Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/254d9483-0229-40a3-a457-f6cbb5449be6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"254d9483-0229-40a3-a457-f6cbb5449be6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"teste\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"setesrt\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"microsoft.operationalinsights/register/action\",\r\n \"microsoft.operationalinsights/unregister/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-27T01:22:58.9649766Z\",\r\n \"updatedOn\": \"2020-02-27T01:22:58.9649766Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/7da825e5-3464-48e4-8646-fab69f7de46c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7da825e5-3464-48e4-8646-fab69f7de46c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"asda\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"asdasd\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Synapse/checkNameAvailability/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-27T19:33:25.1899025Z\",\r\n \"updatedOn\": \"2020-02-27T19:33:25.1899025Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/7cab0ec5-99cb-466f-937e-26806c98f0fb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7cab0ec5-99cb-466f-937e-26806c98f0fb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CloneIt\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T03:08:21.1526749Z\",\r\n \"updatedOn\": \"2020-03-17T03:08:21.1526749Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/acfb9fda-b179-4290-8d82-609ddb722ca0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acfb9fda-b179-4290-8d82-609ddb722ca0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RyanTestMG\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\",\r\n \"/providers/Microsoft.Management/managementGroups/thisdoesntexist\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-18T23:23:29.8420866Z\",\r\n \"updatedOn\": \"2020-03-18T23:23:29.8420866Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/f5fde758-46cb-4388-8e2d-5dfb6f9c5e26\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f5fde758-46cb-4388-8e2d-5dfb6f9c5e26\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"27MarchCR Clone\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [\r\n \"Microsoft.ClassicCompute/virtualMachines/capture/action\",\r\n \"Microsoft.ClassicCompute/virtualMachines/start/action\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-27T03:30:41.2204287Z\",\r\n \"updatedOn\": \"2020-05-25T03:59:50.7212707Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/688cffa8-c3ad-434d-95bf-4feef208c51f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"688cffa8-c3ad-434d-95bf-4feef208c51f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"dfg\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"84codes.CloudAMQP/updateCommunicationPreference/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-04-15T17:01:23.582234Z\",\r\n \"updatedOn\": \"2020-04-15T17:01:23.582234Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/666436ac-d087-4028-8caa-3d56838acc54\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"666436ac-d087-4028-8caa-3d56838acc54\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testest\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"84codes.CloudAMQP/updateCommunicationPreference/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-04-15T17:28:05.771688Z\",\r\n \"updatedOn\": \"2020-04-15T17:28:05.771688Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/778f1528-7abc-42be-a89f-d72860782919\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"778f1528-7abc-42be-a89f-d72860782919\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testewasdasd\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"84codes.CloudAMQP/updateCommunicationPreference/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-04-16T19:16:54.3681577Z\",\r\n \"updatedOn\": \"2020-04-16T19:16:54.3681577Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/351dc63d-3eec-4697-bf6b-ebeb52629640\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"351dc63d-3eec-4697-bf6b-ebeb52629640\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"asdsad\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Synapse/checkNameAvailability/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-04-23T15:27:01.6742334Z\",\r\n \"updatedOn\": \"2020-04-23T15:27:01.6742334Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/2b516d2c-4b58-45d7-8c2b-55f2e936d21a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2b516d2c-4b58-45d7-8c2b-55f2e936d21a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testrole1234\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T09:19:08.0056403Z\",\r\n \"updatedOn\": \"2020-06-09T09:19:08.0056403Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/f1ae5ae6-80f8-4b6a-9962-96e885ed2fdf\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f1ae5ae6-80f8-4b6a-9962-96e885ed2fdf\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customreader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T21:33:19.2160171Z\",\r\n \"updatedOn\": \"2020-06-09T21:33:19.2160171Z\",\r\n \"createdBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\",\r\n \"updatedBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/e9bfc956-b9d6-4931-8df6-d8e759dfb7bd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e9bfc956-b9d6-4931-8df6-d8e759dfb7bd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customabc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T21:37:45.502473Z\",\r\n \"updatedOn\": \"2020-06-09T21:37:45.502473Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/1d3c667d-d849-4444-a61e-910a34a5fbc3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1d3c667d-d849-4444-a61e-910a34a5fbc3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customroletest123\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:01:04.3209554Z\",\r\n \"updatedOn\": \"2020-06-09T22:01:04.3209554Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/0a301507-673a-47b2-a629-7fa8ca72af3f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a301507-673a-47b2-a629-7fa8ca72af3f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customroleabc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:09:16.2626975Z\",\r\n \"updatedOn\": \"2020-06-09T22:09:16.2626975Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/bc1ff923-7253-46cd-9120-6ad03ef2d6e6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bc1ff923-7253-46cd-9120-6ad03ef2d6e6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customreader123\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:12:24.0862728Z\",\r\n \"updatedOn\": \"2020-06-09T22:12:24.0862728Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8700af82-f42f-4393-a5f2-eee83964a9aa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8700af82-f42f-4393-a5f2-eee83964a9aa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"test123abc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:14:57.6218091Z\",\r\n \"updatedOn\": \"2020-06-09T22:14:57.6218091Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/eef4fe94-b510-4514-8669-0548903f3495\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"eef4fe94-b510-4514-8669-0548903f3495\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customroleabc123\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:37:36.1262398Z\",\r\n \"updatedOn\": \"2020-06-09T22:37:36.1262398Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/fd01a54f-fd90-46ec-b525-a636a28df51f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fd01a54f-fd90-46ec-b525-a636a28df51f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testcustomroleabc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:42:30.4994673Z\",\r\n \"updatedOn\": \"2020-06-09T22:42:30.4994673Z\",\r\n \"createdBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\",\r\n \"updatedBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/fecfef36-f4fc-4e4b-93ff-7db5732a444d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fecfef36-f4fc-4e4b-93ff-7db5732a444d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"zzcustomrolezz\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:52:41.6786191Z\",\r\n \"updatedOn\": \"2020-06-09T22:52:41.6786191Z\",\r\n \"createdBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\",\r\n \"updatedBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/dc307f0a-46a2-4260-bbca-66b3a4448a8d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dc307f0a-46a2-4260-bbca-66b3a4448a8d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testCustomRole\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:55:26.5124865Z\",\r\n \"updatedOn\": \"2020-06-09T22:55:26.5124865Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b768931c-5d00-4572-a731-431c6189f0da\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b768931c-5d00-4572-a731-431c6189f0da\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"bbCustomRole\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T23:42:41.0368856Z\",\r\n \"updatedOn\": \"2020-06-09T23:42:41.0368856Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/ae101df6-14ae-4d66-bbe0-a469a964f90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae101df6-14ae-4d66-bbe0-a469a964f90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"zzCustomRole\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T23:55:14.2992167Z\",\r\n \"updatedOn\": \"2020-06-09T23:55:14.2992167Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/bec73b96-f2cf-436c-8917-d547da43a149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bec73b96-f2cf-436c-8917-d547da43a149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customrole123\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-10T01:13:23.0150344Z\",\r\n \"updatedOn\": \"2020-06-10T01:13:23.0150344Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/32d6d31d-e61a-41ec-8386-5dc64b3bc204\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"32d6d31d-e61a-41ec-8386-5dc64b3bc204\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"No RA READ\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-17T06:31:33.3927723Z\",\r\n \"updatedOn\": \"2020-06-17T06:31:33.3927723Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/6f2b4c36-69f1-4a45-8cda-7d5a9b690408\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f2b4c36-69f1-4a45-8cda-7d5a9b690408\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"No RA WRITE\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-17T06:41:55.5369299Z\",\r\n \"updatedOn\": \"2020-06-17T06:41:55.5369299Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/a43bed91-a7af-418a-8f07-e135d151b5b8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a43bed91-a7af-418a-8f07-e135d151b5b8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Another tests role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\",\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-01T23:09:24.5638411Z\",\r\n \"updatedOn\": \"2020-07-01T23:09:24.5638411Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/0a0e83bc-50b9-4c4d-b2c2-3f41e1a8baf2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a0e83bc-50b9-4c4d-b2c2-3f41e1a8baf2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Daoroz-Custom1\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"A role to use when testing various things\\nIt does not grant any real permissions, just the ability to read role definitions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-08T17:44:15.2525393Z\",\r\n \"updatedOn\": \"2020-07-08T17:44:15.2525393Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/0353ee0a-19ae-4380-ba3d-d54767c75d5b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0353ee0a-19ae-4380-ba3d-d54767c75d5b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Daoroz-Custom2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"A role to be used when testing various things\\nIt does not grant any real permissions, just the ability to read role definitions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-08T17:51:15.4187811Z\",\r\n \"updatedOn\": \"2020-07-08T17:51:15.4187811Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/98ee936c-393c-4f03-81a8-6eccfd82d96e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"98ee936c-393c-4f03-81a8-6eccfd82d96e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Role at MG Root\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role at MG Root\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/1273adef-00a3-4086-a51a-dbcce1857d36\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-24T19:26:02.777463Z\",\r\n \"updatedOn\": \"2019-07-24T19:26:02.777463Z\",\r\n \"createdBy\": \"cdab7ada-d740-47da-a823-ec29c9a68482\",\r\n \"updatedBy\": \"cdab7ada-d740-47da-a823-ec29c9a68482\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/fa3bf1c6-5da9-47c7-976e-1007e1bc385a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa3bf1c6-5da9-47c7-976e-1007e1bc385a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Role Manish reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Manish reader\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/1273adef-00a3-4086-a51a-dbcce1857d36\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-07T18:53:42.1390099Z\",\r\n \"updatedOn\": \"2020-05-08T01:15:45.1587505Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"e8df956a-9463-408a-a9be-cf5f46d09b37\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/4edfca53-b078-483f-9d0e-c83e4544e854\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4edfca53-b078-483f-9d0e-c83e4544e854\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrPush\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr push\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/pull/read\",\r\n \"Microsoft.ContainerRegistry/registries/push/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-29T17:52:32.5201177Z\",\r\n \"updatedOn\": \"2018-11-13T23:26:19.9749249Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8311e382-0749-4cb8-b61a-304f252e45ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8650193Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:17.7502607Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrPull\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr pull\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/pull/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-22T19:01:56.8227182Z\",\r\n \"updatedOn\": \"2018-11-13T23:22:03.2302457Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f951dda-4ed3-4680-a7ca-43fe172d538d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrImageSigner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr image signer\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/sign/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-15T23:23:08.4038322Z\",\r\n \"updatedOn\": \"2018-10-29T19:06:24.9004422Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/6cef56e8-d556-48e5-a04f-b8e64114680f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6cef56e8-d556-48e5-a04f-b8e64114680f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrDelete\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr delete\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/artifacts/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-11T20:19:31.6682804Z\",\r\n \"updatedOn\": \"2019-03-11T20:24:38.9845104Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/c2f4ef07-c644-48eb-af81-4b1b4947fb11\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c2f4ef07-c644-48eb-af81-4b1b4947fb11\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrQuarantineReader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr quarantine data reader\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/quarantine/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-16T00:27:39.9596835Z\",\r\n \"updatedOn\": \"2019-10-22T00:12:39.702093Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/cdda3590-29a3-44f6-95f2-9f980659eb04\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cdda3590-29a3-44f6-95f2-9f980659eb04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrQuarantineWriter\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr quarantine data writer\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/quarantine/read\",\r\n \"Microsoft.ContainerRegistry/registries/quarantine/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-16T00:26:37.587182Z\",\r\n \"updatedOn\": \"2019-10-22T00:10:29.8202164Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/c8d4ff99-41c3-41a8-9f60-21dfdad59608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c8d4ff99-41c3-41a8-9f60-21dfdad59608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metricAlerts/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2020-02-12T12:45:46.9200472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Attestation Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read the attestation provider properties\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Attestation/attestationProviders/attestation/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-25T19:42:59.157671Z\",\r\n \"updatedOn\": \"2019-05-10T17:52:38.9036953Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"SYSTEM\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/fd1bd22b-8476-40bc-a0bc-69b95687b9f3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fd1bd22b-8476-40bc-a0bc-69b95687b9f3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/hybridRunbookWorkerGroups/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobs/output/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2018-08-14T22:08:48.1147327Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/hybridRunbookWorkerGroups/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/linkedWorkspace/read\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Automation/automationAccounts/jobs/output/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2018-05-10T20:12:39.69782Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Avere Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can create and manage an Avere vFXT cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/proximityPlacementGroups/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/disks/*\",\r\n \"Microsoft.Network/*/read\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/*/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/resources/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-18T20:00:58.9207889Z\",\r\n \"updatedOn\": \"2020-05-27T06:48:54.4896867Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/4f8fab4f-1852-4a58-a46a-8eaf358af14a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4f8fab4f-1852-4a58-a46a-8eaf358af14a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Avere Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Used by the Avere vFXT cluster to manage the cluster\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-18T20:02:38.3399857Z\",\r\n \"updatedOn\": \"2019-03-29T00:26:37.9205875Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/c025889f-8102-4ebf-b32c-fc0c6f0c6bd9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c025889f-8102-4ebf-b32c-fc0c6f0c6bd9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Cluster Admin Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster admin credential action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/managedClusters/listClusterAdminCredential/action\",\r\n \"Microsoft.ContainerService/managedClusters/accessProfiles/listCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-15T21:38:18.5953853Z\",\r\n \"updatedOn\": \"2020-02-07T02:49:24.9715273Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/0ab0b1a8-8aac-4efd-b8c2-3ee1fb270be8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0ab0b1a8-8aac-4efd-b8c2-3ee1fb270be8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Cluster User Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster user credential action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-15T22:04:53.4037241Z\",\r\n \"updatedOn\": \"2020-02-11T23:37:03.589924Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/4abbcc35-e782-43d8-92c5-2d3f1bd2253f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4abbcc35-e782-43d8-92c5-2d3f1bd2253f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Maps Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read map related data from an Azure maps account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Maps/accounts/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-05T19:47:03.472307Z\",\r\n \"updatedOn\": \"2020-04-28T22:33:41.7780319Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/423170ca-a8f6-4b0f-8487-9e4eb8f49bfa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"423170ca-a8f6-4b0f-8487-9e4eb8f49bfa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/edgeSubscriptions/read\",\r\n \"Microsoft.AzureStack/registrations/products/*/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2020-06-29T22:11:17.0759529Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\r\n \"Microsoft.RecoveryServices/locations/backupStatus/action\",\r\n \"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\r\n \"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\r\n \"Microsoft.RecoveryServices/operations/read\",\r\n \"Microsoft.RecoveryServices/locations/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2019-12-17T10:44:35.8361149Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.CostManagement/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2018-09-26T17:45:09.2227236Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/inquire/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\",\r\n \"Microsoft.RecoveryServices/locations/backupStatus/action\",\r\n \"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\r\n \"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\r\n \"Microsoft.RecoveryServices/operations/read\",\r\n \"Microsoft.RecoveryServices/locations/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2019-12-17T11:02:43.9998686Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupstorageconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\",\r\n \"Microsoft.RecoveryServices/locations/backupStatus/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\r\n \"Microsoft.RecoveryServices/operations/read\",\r\n \"Microsoft.RecoveryServices/locations/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2020-03-04T12:12:04.321311Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Blockchain Member Node Access (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for access to Blockchain Member nodes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Blockchain/blockchainMembers/transactionNodes/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Blockchain/blockchainMembers/transactionNodes/connect/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T10:33:01.9604839Z\",\r\n \"updatedOn\": \"2018-12-21T10:33:58.0042162Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/31a002a1-acaf-453e-8a5b-297c9ca1ea24\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"31a002a1-acaf-453e-8a5b-297c9ca1ea24\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:42:18.897821Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:39.7576926Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:30.8964641Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:42:23.2893077Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-04-25T00:37:56.5416086Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:43.0770473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read and list keys of Cognitive Services.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/listkeys/action\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Insights/diagnosticSettings/read\",\r\n \"Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.Insights/metricdefinitions/read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-08T23:23:43.7701274Z\",\r\n \"updatedOn\": \"2019-02-13T19:53:56.7209248Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a97b65f3-24c7-4388-baec-2e87135dc908\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Data Reader (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read Cognitive Services data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-02-13T20:02:12.6849986Z\",\r\n \"updatedOn\": \"2019-02-13T22:53:55.167529Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b59867f0-fa02-499b-be73-45a86b5b3e1c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b59867f0-fa02-499b-be73-45a86b5b3e1c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create, read, update, delete and manage keys of Cognitive Services.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.CognitiveServices/*\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.Insights/metricdefinitions/read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-08T23:18:39.2257848Z\",\r\n \"updatedOn\": \"2018-09-14T00:53:37.7546808Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CosmosBackupOperator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can submit restore request for a Cosmos DB database or a container for an account\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DocumentDB/databaseAccounts/backup/action\",\r\n \"Microsoft.DocumentDB/databaseAccounts/restore/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-07T19:47:14.965156Z\",\r\n \"updatedOn\": \"2018-12-07T19:52:21.9969834Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/db7b14f2-5adf-42da-9f96-f2ee17bab5cb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"db7b14f2-5adf-42da-9f96-f2ee17bab5cb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\",\r\n \"Microsoft.Blueprint/blueprintAssignments/write\",\r\n \"Microsoft.Blueprint/blueprintAssignments/delete\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:38.458061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Insights/MetricDefinitions/read\",\r\n \"Microsoft.Insights/Metrics/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2018-02-21T01:36:59.6186231Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cost Management Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view costs and manage cost configuration (e.g. budgets, exports)\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Consumption/*\",\r\n \"Microsoft.CostManagement/*\",\r\n \"Microsoft.Billing/billingPeriods/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Advisor/configurations/read\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Management/managementGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-14T16:09:22.8834827Z\",\r\n \"updatedOn\": \"2019-06-25T21:25:06.8686379Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/434105ed-43f6-45c7-a02f-909b2ba83430\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"434105ed-43f6-45c7-a02f-909b2ba83430\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cost Management Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view cost data and configuration (e.g. budgets, exports)\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.CostManagement/*/read\",\r\n \"Microsoft.Billing/billingPeriods/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Advisor/configurations/read\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Management/managementGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-14T16:09:22.8834827Z\",\r\n \"updatedOn\": \"2019-06-25T20:59:11.5762937Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/72fafb9e-0641-4937-9268-a91bfd8191a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"72fafb9e-0641-4937-9268-a91bfd8191a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Box Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything under Data Box Service except giving access to others.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Databox/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-07-27T08:28:42.714021Z\",\r\n \"updatedOn\": \"2018-07-27T08:36:56.3827309Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/add466c9-e687-43fc-8d98-dfcf8d720be5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"add466c9-e687-43fc-8d98-dfcf8d720be5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Box Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Data Box Service except creating order or editing order details and giving access to others.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Databox/*/read\",\r\n \"Microsoft.Databox/jobs/listsecrets/action\",\r\n \"Microsoft.Databox/jobs/listcredentials/action\",\r\n \"Microsoft.Databox/locations/availableSkus/action\",\r\n \"Microsoft.Databox/locations/validateInputs/action\",\r\n \"Microsoft.Databox/locations/regionConfiguration/action\",\r\n \"Microsoft.Databox/locations/validateAddress/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-07-27T08:26:21.9284772Z\",\r\n \"updatedOn\": \"2020-01-24T05:39:52.6143537Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/028f4ed7-e2a9-465e-a8f4-9c0ffdfdc027\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"028f4ed7-e2a9-465e-a8f4-9c0ffdfdc027\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.DataFactory/factories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.EventGrid/eventSubscriptions/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2020-02-14T19:49:21.5789216Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Purger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can purge analytics data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Insights/components/purge/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/purge/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-04-30T22:39:49.61677Z\",\r\n \"updatedOn\": \"2018-04-30T22:44:15.1171162Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/150f5e0c-0603-4f03-8c7f-cf70034c4e90\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"150f5e0c-0603-4f03-8c7f-cf70034c4e90\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/ensureCurrentUserProfile/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.DevTestLab/labs/virtualmachines/listApplicableSchedules/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/getRdpFileContents/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2019-05-08T11:27:34.8855476Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-11-21T01:38:32.0948484Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid EventSubscription Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage EventGrid event subscription operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/*\",\r\n \"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-08T23:27:28.3130743Z\",\r\n \"updatedOn\": \"2019-01-08T00:06:34.3543171Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/428e0ff0-5e57-4d9c-a221-2c70d0e0a443\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"428e0ff0-5e57-4d9c-a221-2c70d0e0a443\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid EventSubscription Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read EventGrid event subscriptions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-09T17:29:28.1417894Z\",\r\n \"updatedOn\": \"2019-01-08T00:05:40.2884365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/2414bbcf-6497-4faf-8c65-045460748405\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2414bbcf-6497-4faf-8c65-045460748405\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Graph Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage all aspects of the Enterprise Graph - Ontology, Schema mapping, Conflation and Conversational AI and Ingestions\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/conflation/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/conflation/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/sourceschema/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/sourceschema/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/intentclassification/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/intentclassification/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ingestion/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ingestion/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ontology/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ontology/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/delete\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-02-23T21:07:22.5844236Z\",\r\n \"updatedOn\": \"2019-02-28T20:21:18.9318073Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b60367af-1334-4454-b71e-769d9a4f83d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b60367af-1334-4454-b71e-769d9a4f83d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"HDInsight Domain Services Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can Read, Create, Modify and Delete Domain Services related operations needed for HDInsight Enterprise Security Package\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AAD/*/read\",\r\n \"Microsoft.AAD/domainServices/*/read\",\r\n \"Microsoft.AAD/domainServices/oucontainer/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-09-12T22:42:51.7451109Z\",\r\n \"updatedOn\": \"2018-09-12T23:06:45.7641599Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8d8d5a11-05d3-4bda-a417-a08778121c7c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d8d5a11-05d3-4bda-a417-a08778121c7c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:32:00.9996357Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\",\r\n \"Microsoft.KeyVault/hsmPools/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-25T17:08:28.5184971Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:49.5373075Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Knowledge Consumer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Knowledge Read permission to consume Enterprise Graph Knowledge using entity search and graph query\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-02-23T21:23:31.4037552Z\",\r\n \"updatedOn\": \"2019-02-28T20:25:00.7369384Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/ee361c5d-f7b5-4119-b4b6-892157c8f64c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee361c5d-f7b5-4119-b4b6-892157c8f64c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Lab Creator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create, manage, delete your managed labs under your Azure Lab Accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.LabServices/labAccounts/*/read\",\r\n \"Microsoft.LabServices/labAccounts/createLab/action\",\r\n \"Microsoft.LabServices/labAccounts/sizes/getRegionalAvailability/action\",\r\n \"Microsoft.LabServices/labAccounts/getRegionalAvailability/action\",\r\n \"Microsoft.LabServices/labAccounts/getPricingAndAvailability/action\",\r\n \"Microsoft.LabServices/labAccounts/getRestrictionsAndUsage/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-01-18T23:38:58.1036141Z\",\r\n \"updatedOn\": \"2020-02-12T23:54:21.0840302Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b97fb8bc-a8b2-4522-a38b-dd33c7e65ead\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b97fb8bc-a8b2-4522-a38b-dd33c7e65ead\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2018-01-30T18:08:26.0438523Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2020-03-26T22:57:55.366783Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/metricAlerts/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/customApis/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2019-10-15T04:28:56.3265986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metricAlerts/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/customApis/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2019-10-15T04:31:27.7685427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Application Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read and perform actions on Managed Application resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Solutions/applications/read\",\r\n \"Microsoft.Solutions/*/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-07-27T00:59:33.7988813Z\",\r\n \"updatedOn\": \"2019-02-20T01:09:55.1593079Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/c7393b34-138c-406f-901b-d8cf2b17e6ae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c7393b34-138c-406f-901b-d8cf2b17e6ae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Applications Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read resources in a managed app and request JIT access.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Solutions/jitRequests/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-09-06T00:33:58.3651522Z\",\r\n \"updatedOn\": \"2018-09-06T00:33:58.3651522Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b9331d33-8a36-4f8c-b097-4f54124fdb44\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b9331d33-8a36-4f8c-b097-4f54124fdb44\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Identity Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read and Assign User Assigned Identity\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/*/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/*/assign/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-14T19:52:04.3924594Z\",\r\n \"updatedOn\": \"2017-12-14T22:16:00.1483256Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f1a07417-d97a-45cb-824c-7a7467783830\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Identity Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, Read, Update, and Delete User Assigned Identity\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-14T19:53:42.8804692Z\",\r\n \"updatedOn\": \"2019-06-20T21:51:27.0850433Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/e40ec5ca-96e0-45a2-b4ff-59039f2c2b59\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e40ec5ca-96e0-45a2-b4ff-59039f2c2b59\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Management Group Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Management Group Contributor Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/managementGroups/delete\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Management/managementGroups/subscriptions/delete\",\r\n \"Microsoft.Management/managementGroups/subscriptions/write\",\r\n \"Microsoft.Management/managementGroups/write\",\r\n \"Microsoft.Management/managementGroups/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-06-22T00:28:29.0523964Z\",\r\n \"updatedOn\": \"2020-07-06T18:13:34.9045672Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Management Group Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Management Group Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Management/managementGroups/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-06-22T00:31:03.4295347Z\",\r\n \"updatedOn\": \"2020-07-06T18:09:27.1441705Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/ac63b705-f282-497d-ac71-919bf39d939d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ac63b705-f282-497d-ac71-919bf39d939d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Metrics Publisher\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enables publishing metrics against Azure resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Insights/Metrics/Write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-14T00:36:16.5610279Z\",\r\n \"updatedOn\": \"2018-08-14T00:37:18.1465065Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3913510d-42f4-4e42-8a64-420c390055eb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2018-01-30T18:08:27.262625Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.AlertsManagement/alerts/*\",\r\n \"Microsoft.AlertsManagement/alertsSummary/*\",\r\n \"Microsoft.Insights/actiongroups/*\",\r\n \"Microsoft.Insights/activityLogAlerts/*\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/metricalerts/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/scheduledqueryrules/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.Insights/workbooks/*\",\r\n \"Microsoft.Insights/privateLinkScopes/*\",\r\n \"Microsoft.Insights/privateLinkScopeOperationStatuses/*\",\r\n \"Microsoft.OperationalInsights/workspaces/write\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.WorkloadMonitor/monitors/*\",\r\n \"Microsoft.WorkloadMonitor/notificationSettings/*\",\r\n \"Microsoft.AlertsManagement/smartDetectorAlertRules/*\",\r\n \"Microsoft.AlertsManagement/actionRules/*\",\r\n \"Microsoft.AlertsManagement/smartGroups/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2020-04-19T16:03:16.7692305Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:42:16.2033878Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:32.2101122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:35.7424745Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:48.2353169Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader and Data Access\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything but will not let you delete or create a storage account or contained resource. It will also allow read/write access to all data contained in a storage account via access to storage account keys.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/ListAccountSas/action\",\r\n \"Microsoft.Storage/storageAccounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-27T23:20:46.1498906Z\",\r\n \"updatedOn\": \"2019-04-04T23:41:26.1056261Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/c12c1c16-33a1-487b-954d-41c89c60f349\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c12c1c16-33a1-487b-954d-41c89c60f349\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Users with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Authorization/policysetdefinitions/*\",\r\n \"Microsoft.PolicyInsights/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2019-11-20T20:26:12.8811365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:42:24.8360756Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:42:21.8687229Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2019-03-12T21:12:48.635016Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager (Legacy)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This is a legacy role. Please use Security Administrator instead\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2018-03-08T18:18:48.618362Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Management/managementGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2018-06-28T17:27:23.106561Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Spatial Anchors Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage spatial anchors in your account, but not delete them\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/create/action\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T17:57:41.1420864Z\",\r\n \"updatedOn\": \"2019-02-13T06:13:39.8686435Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8bbe83f1-e2a6-4df7-8cb4-4e04d4e5c827\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8bbe83f1-e2a6-4df7-8cb4-4e04d4e5c827\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery service except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationOperationStatus/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2019-11-07T06:13:49.0760858Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/switchprotection/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2019-08-28T12:00:57.4472826Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Spatial Anchors Account Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you locate and read properties of spatial anchors in your account\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T17:57:42.9271004Z\",\r\n \"updatedOn\": \"2019-02-13T06:16:15.3170663Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5d51204f-eb77-4b1c-b86a-2ec626c49413\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d51204f-eb77-4b1c-b86a-2ec626c49413\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Spatial Anchors Account Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage spatial anchors in your account, including deleting them\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/create/action\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/delete\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T17:57:43.5489832Z\",\r\n \"updatedOn\": \"2019-02-13T06:15:31.8572222Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/70bbe301-9835-447d-afdd-19eb3167307c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70bbe301-9835-447d-afdd-19eb3167307c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Managed Instance Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL Managed Instances and required network configuration, but can’t give access to others.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/*\",\r\n \"Microsoft.Network/routeTables/*\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/locations/instanceFailoverGroups/*\",\r\n \"Microsoft.Sql/managedInstances/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/*\",\r\n \"Microsoft.Network/virtualNetworks/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-10T22:57:14.2937983Z\",\r\n \"updatedOn\": \"2020-06-24T22:56:31.0576055Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/4939a1f6-9ae0-4e48-a1e0-f2cbe897382d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4939a1f6-9ae0-4e48-a1e0-f2cbe897382d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/extendedAuditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/vulnerabilityAssessments/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-28T22:44:35.864967Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/transparentDataEncryption/*\",\r\n \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/extendedAuditingSettings/read\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/extendedAuditingSettings/read\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/transparentDataEncryption/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/vulnerabilityAssessments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-16T18:44:40.4607572Z\",\r\n \"updatedOn\": \"2019-08-08T22:58:22.2532171Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, including accessing storage account keys which provide full access to storage account data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2019-05-29T20:56:33.9582501Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/extendedAuditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/extendedAuditingSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/vulnerabilityAssessments/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-28T22:44:36.5466043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write and delete access to Azure Storage blob containers and data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/move/action\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2020-03-30T22:49:07.866942Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ba92f5b4-2d11-453d-a403-e96b0029c9fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Storage blob containers and data, including assigning POSIX access control.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/*\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-04T07:02:58.2775257Z\",\r\n \"updatedOn\": \"2019-07-16T21:30:33.7002563Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b7e6dc6d-f1e8-4753-8033-0f276bb0955b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to Azure Storage blob containers and data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2019-07-15T22:01:25.5409721Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write, and delete access to Azure Storage queues and queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/delete\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/delete\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2019-03-05T21:58:02.7367128Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/974c5e8b-45b9-4653-ba55-5f855dd0fb88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"974c5e8b-45b9-4653-ba55-5f855dd0fb88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Message Processor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for peek, receive, and delete access to Azure Storage queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/process/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-01-28T22:27:04.8947111Z\",\r\n \"updatedOn\": \"2019-03-05T22:05:46.1259125Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8a0f0c08-91a1-4084-bc3d-661d67233fed\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8a0f0c08-91a1-4084-bc3d-661d67233fed\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Message Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for sending of Azure Storage queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/add/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-01-28T22:28:34.7459724Z\",\r\n \"updatedOn\": \"2019-03-05T22:11:49.6383892Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/c6a89b2d-59bc-44d0-9896-0f6e12d7b80a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c6a89b2d-59bc-44d0-9896-0f6e12d7b80a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to Azure Storage queues and queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2019-03-05T22:17:32.1779262Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/19e7f393-937e-4f77-808e-94535e297925\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"19e7f393-937e-4f77-808e-94535e297925\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Administrator Login\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View Virtual Machines in the portal and login as administrator\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Compute/virtualMachines/login/action\",\r\n \"Microsoft.Compute/virtualMachines/loginAsAdmin/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-02-09T18:36:13.3315744Z\",\r\n \"updatedOn\": \"2018-05-09T22:17:57.0514548Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/1c0163c0-47e6-4577-8991-ea5c82e286e4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1c0163c0-47e6-4577-8991-ea5c82e286e4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:12.6807454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine User Login\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View Virtual Machines in the portal and login as a regular user.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Compute/virtualMachines/login/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-02-09T18:36:13.3315744Z\",\r\n \"updatedOn\": \"2018-05-09T22:18:52.2780979Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/fb879df8-f326-4884-b1cf-06f3ad86be52\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb879df8-f326-4884-b1cf-06f3ad86be52\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they're connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.SqlVirtualMachine/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2020-02-03T19:38:21.2170228Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\",\r\n \"Microsoft.Web/hostingEnvironments/Join/Action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-03-26T18:17:34.5018645Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-05-12T23:10:23.6193952Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:46.9407288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Bus Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Service Bus resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceBus/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ServiceBus/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-16T21:33:36.7445745Z\",\r\n \"updatedOn\": \"2019-08-21T22:47:11.3982905Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"090c5cfd-751d-490a-894a-3ce6f1109419\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Event Hubs Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Event Hubs resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventHub/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-16T21:34:29.8656362Z\",\r\n \"updatedOn\": \"2019-08-21T22:58:57.7584645Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/f526a384-b230-433a-b45c-95f59c4a2dec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f526a384-b230-433a-b45c-95f59c4a2dec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Attestation Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read write or delete the attestation provider instance\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Attestation/attestationProviders/attestation/read\",\r\n \"Microsoft.Attestation/attestationProviders/attestation/write\",\r\n \"Microsoft.Attestation/attestationProviders/attestation/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-19T00:24:09.3354177Z\",\r\n \"updatedOn\": \"2019-05-10T17:59:06.3448436Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/bbf86eb8-f7b4-4cce-96e4-18cddf81d86e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bbf86eb8-f7b4-4cce-96e4-18cddf81d86e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"HDInsight Cluster Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read and modify HDInsight cluster configurations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HDInsight/*/read\",\r\n \"Microsoft.HDInsight/clusters/getGatewaySettings/action\",\r\n \"Microsoft.HDInsight/clusters/updateGatewaySettings/action\",\r\n \"Microsoft.HDInsight/clusters/configurations/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-20T00:03:01.7110732Z\",\r\n \"updatedOn\": \"2019-04-28T02:34:17.4679314Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/61ed4efc-fab3-44fd-b111-e24485cc132a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"61ed4efc-fab3-44fd-b111-e24485cc132a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Cosmos DB accounts, but not access data in them. Prevents access to account keys and connection strings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlyKeys/*\",\r\n \"Microsoft.DocumentDB/databaseAccounts/regenerateKey/*\",\r\n \"Microsoft.DocumentDB/databaseAccounts/listKeys/*\",\r\n \"Microsoft.DocumentDB/databaseAccounts/listConnectionStrings/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-26T17:01:17.0169383Z\",\r\n \"updatedOn\": \"2019-11-21T01:34:13.3746345Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/230815da-be43-4aae-9cb4-875f7bd000aa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"230815da-be43-4aae-9cb4-875f7bd000aa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Hybrid Server Resource Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read, write, delete, and re-onboard Hybrid servers to the Hybrid Resource Provider.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/*\",\r\n \"Microsoft.HybridCompute/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-29T21:39:32.3132923Z\",\r\n \"updatedOn\": \"2019-05-06T20:08:25.3180258Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/48b40c6e-82e0-4eb3-90d5-19e40f49b624\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"48b40c6e-82e0-4eb3-90d5-19e40f49b624\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Hybrid Server Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can onboard new Hybrid servers to the Hybrid Resource Provider.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-29T22:36:28.1873756Z\",\r\n \"updatedOn\": \"2019-05-06T20:09:17.9364269Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5d1e5ee4-7c68-4a71-ac8b-0739630a3dfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d1e5ee4-7c68-4a71-ac8b-0739630a3dfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Event Hubs Data Receiver\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows receive access to Azure Event Hubs resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/*/eventhubs/consumergroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventHub/*/receive/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:25:21.1056666Z\",\r\n \"updatedOn\": \"2019-08-21T23:00:32.6225396Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/a638d3c7-ab3a-418d-83e6-5f17a39d4fde\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a638d3c7-ab3a-418d-83e6-5f17a39d4fde\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Event Hubs Data Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows send access to Azure Event Hubs resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/*/eventhubs/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventHub/*/send/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:26:12.4673714Z\",\r\n \"updatedOn\": \"2019-08-21T23:02:26.6155679Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/2b629674-e913-4c01-ae53-ef4638d8f975\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2b629674-e913-4c01-ae53-ef4638d8f975\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Bus Data Receiver\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for receive access to Azure Service Bus resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceBus/*/queues/read\",\r\n \"Microsoft.ServiceBus/*/topics/read\",\r\n \"Microsoft.ServiceBus/*/topics/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ServiceBus/*/receive/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:43:01.6343849Z\",\r\n \"updatedOn\": \"2019-08-21T22:55:24.3423558Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/4f6d3b9b-027b-4f4c-9142-0e5a2a2247e0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4f6d3b9b-027b-4f4c-9142-0e5a2a2247e0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Bus Data Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for send access to Azure Service Bus resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceBus/*/queues/read\",\r\n \"Microsoft.ServiceBus/*/topics/read\",\r\n \"Microsoft.ServiceBus/*/topics/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ServiceBus/*/send/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:43:46.7046934Z\",\r\n \"updatedOn\": \"2019-08-21T22:57:12.2555683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/69a216fc-b8fb-44d8-bc22-1f3c2cd27a39\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"69a216fc-b8fb-44d8-bc22-1f3c2cd27a39\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage File Data SMB Share Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to Azure File Share over SMB\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-01T20:19:31.8620471Z\",\r\n \"updatedOn\": \"2019-08-07T01:00:41.9223409Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/aba4ae5f-2193-4029-9191-0cb91df5e314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"aba4ae5f-2193-4029-9191-0cb91df5e314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage File Data SMB Share Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write, and delete access in Azure Storage file shares over SMB\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/write\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-01T20:54:35.483431Z\",\r\n \"updatedOn\": \"2019-08-07T01:05:24.4309872Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/0c867c2a-1d8c-454a-a3db-ab2ea1bdc8bb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0c867c2a-1d8c-454a-a3db-ab2ea1bdc8bb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Private DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage private DNS zone resources, but not the virtual networks they are linked to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/privateDnsZones/*\",\r\n \"Microsoft.Network/privateDnsOperationResults/*\",\r\n \"Microsoft.Network/privateDnsOperationStatuses/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/join/action\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-10T19:31:15.5645518Z\",\r\n \"updatedOn\": \"2019-07-11T21:12:01.7260648Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b12aa53e-6015-4669-85d0-8515ebb3ae7f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b12aa53e-6015-4669-85d0-8515ebb3ae7f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Delegator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for generation of a user delegation key which can be used to sign SAS tokens\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-23T00:51:16.3376761Z\",\r\n \"updatedOn\": \"2019-07-23T01:14:31.8778475Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/db58b8e5-c6ad-4a2a-8342-4190687cbf4a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"db58b8e5-c6ad-4a2a-8342-4190687cbf4a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows user to use the applications in an application group.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DesktopVirtualization/applicationGroups/useApplications/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-07T00:29:03.8727621Z\",\r\n \"updatedOn\": \"2019-08-07T00:29:03.8727621Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/1d18fff3-a72a-46b5-b4a9-0b38a3cd7e63\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1d18fff3-a72a-46b5-b4a9-0b38a3cd7e63\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage File Data SMB Share Elevated Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write, delete and modify NTFS permission access in Azure Storage file shares over SMB\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/write\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/delete\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/modifypermissions/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-07T01:35:36.9935457Z\",\r\n \"updatedOn\": \"2019-08-07T01:35:36.9935457Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/a7264617-510b-434b-a828-9731dc254ea7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a7264617-510b-434b-a828-9731dc254ea7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Blueprint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage blueprint definitions, but not assign them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Blueprint/blueprints/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-14T21:55:16.9683949Z\",\r\n \"updatedOn\": \"2019-08-17T00:10:55.7494677Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/41077137-e803-4205-871c-5a86e6a753b4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41077137-e803-4205-871c-5a86e6a753b4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Blueprint Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can assign existing published blueprints, but cannot create new blueprints. NOTE: this only works if the assignment is done with a user-assigned managed identity.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Blueprint/blueprintAssignments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-14T21:56:48.7897875Z\",\r\n \"updatedOn\": \"2019-08-17T00:06:02.6509737Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/437d2ced-4a38-4302-8479-ed2bcb43d090\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"437d2ced-4a38-4302-8479-ed2bcb43d090\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Sentinel Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Sentinel Contributor\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SecurityInsights/*\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationsManagement/solutions/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.Insights/workbooks/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T16:39:03.8725173Z\",\r\n \"updatedOn\": \"2020-03-11T15:20:51.6768533Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/ab8e14d6-4a74-4a29-9ba8-549422addade\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ab8e14d6-4a74-4a29-9ba8-549422addade\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Sentinel Responder\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Sentinel Responder\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SecurityInsights/*/read\",\r\n \"Microsoft.SecurityInsights/dataConnectorsCheckRequirements/action\",\r\n \"Microsoft.SecurityInsights/cases/*\",\r\n \"Microsoft.SecurityInsights/incidents/*\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\r\n \"Microsoft.OperationsManagement/solutions/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.Insights/workbooks/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T16:54:07.6467264Z\",\r\n \"updatedOn\": \"2020-04-02T08:42:10.2864085Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/3e150937-b8fe-4cfb-8069-0eaf05ecd056\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3e150937-b8fe-4cfb-8069-0eaf05ecd056\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Sentinel Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Sentinel Reader\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SecurityInsights/*/read\",\r\n \"Microsoft.SecurityInsights/dataConnectorsCheckRequirements/action\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/LinkedServices/read\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\r\n \"Microsoft.OperationsManagement/solutions/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.Insights/workbooks/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T16:58:50.1132117Z\",\r\n \"updatedOn\": \"2020-04-02T08:34:51.7222706Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8d289c81-5878-46d4-8554-54e1e3d8b5cb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d289c81-5878-46d4-8554-54e1e3d8b5cb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Workbook Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read workbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"microsoft.insights/workbooks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T20:56:17.680814Z\",\r\n \"updatedOn\": \"2019-08-28T21:43:05.0202124Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b279062a-9be3-42a0-92ae-8b3cf002ec4d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b279062a-9be3-42a0-92ae-8b3cf002ec4d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Workbook Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can save shared workbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/workbooks/write\",\r\n \"Microsoft.Insights/workbooks/delete\",\r\n \"Microsoft.Insights/workbooks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T20:59:42.4820277Z\",\r\n \"updatedOn\": \"2020-01-22T00:05:20.938721Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/e8ddcd69-c73f-4f9f-9844-4100522f16ad\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e8ddcd69-c73f-4f9f-9844-4100522f16ad\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Policy Insights Data Writer (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to resource policies and write access to resource component policy events.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/policyassignments/read\",\r\n \"Microsoft.Authorization/policydefinitions/read\",\r\n \"Microsoft.Authorization/policysetdefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.PolicyInsights/checkDataPolicyCompliance/action\",\r\n \"Microsoft.PolicyInsights/policyEvents/logDataEvents/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-09-19T19:35:20.9504127Z\",\r\n \"updatedOn\": \"2019-09-19T19:37:02.5331596Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/66bb4e9e-b016-4a94-8249-4c0511c2be84\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"66bb4e9e-b016-4a94-8249-4c0511c2be84\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SignalR AccessKey Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read SignalR Service Access Keys\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SignalRService/*/read\",\r\n \"Microsoft.SignalRService/SignalR/listkeys/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-09-20T09:33:19.6236874Z\",\r\n \"updatedOn\": \"2019-09-20T09:33:19.6236874Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/04165923-9d83-45d5-8227-78b77b0a687e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"04165923-9d83-45d5-8227-78b77b0a687e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SignalR Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, Read, Update, and Delete SignalR service resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SignalRService/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-09-20T09:58:09.0009662Z\",\r\n \"updatedOn\": \"2019-09-20T09:58:09.0009662Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8cf5e20a-e4b2-4e9d-b3a1-5ceb692c2761\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8cf5e20a-e4b2-4e9d-b3a1-5ceb692c2761\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Connected Machine Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can onboard Azure Connected Machines.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-23T20:15:07.137287Z\",\r\n \"updatedOn\": \"2019-11-03T18:26:59.2060282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b64e21ea-ac4e-4cdf-9dc9-5b892992bee7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b64e21ea-ac4e-4cdf-9dc9-5b892992bee7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Connected Machine Resource Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read, write, delete and re-onboard Azure Connected Machines.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.HybridCompute/machines/delete\",\r\n \"Microsoft.HybridCompute/machines/reconnect/action\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.HybridCompute/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-23T20:24:59.1474607Z\",\r\n \"updatedOn\": \"2020-03-19T22:39:54.1226122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/cd570a14-e51a-42ad-bac8-bafd67325302\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cd570a14-e51a-42ad-bac8-bafd67325302\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Services Registration assignment Delete Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Managed Services Registration Assignment Delete Role allows the managing tenant users to delete the registration assignment assigned to their tenant.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedServices/registrationAssignments/read\",\r\n \"Microsoft.ManagedServices/registrationAssignments/delete\",\r\n \"Microsoft.ManagedServices/operationStatuses/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-23T22:33:33.1183469Z\",\r\n \"updatedOn\": \"2019-10-24T21:49:09.3875276Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/91c1777a-f3dc-4fae-b103-61d183457e46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"91c1777a-f3dc-4fae-b103-61d183457e46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Configuration Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows full access to App Configuration data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppConfiguration/configurationStores/*/read\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/write\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-25T18:41:40.1185063Z\",\r\n \"updatedOn\": \"2019-10-25T18:41:40.1185063Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Configuration Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to App Configuration data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppConfiguration/configurationStores/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-25T18:45:33.7975332Z\",\r\n \"updatedOn\": \"2019-10-25T18:45:33.7975332Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/516239f1-63e1-4d78-a4de-a74fb236a071\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"516239f1-63e1-4d78-a4de-a74fb236a071\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Kubernetes Cluster - Azure Arc Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role definition to authorize any user/service to create connectedClusters resource\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/Write\",\r\n \"Microsoft.Kubernetes/connectedClusters/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-11-18T17:00:02.2087147Z\",\r\n \"updatedOn\": \"2020-02-10T22:40:48.3317559Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/34e09817-6cbe-4d01-b1a2-e0eac5743d41\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"34e09817-6cbe-4d01-b1a2-e0eac5743d41\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Experimentation Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Experimentation Contributor\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experiment/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/emergencystop/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/write\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-13T00:08:08.6679591Z\",\r\n \"updatedOn\": \"2020-07-07T20:17:06.8223079Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a22b-edd6ce5c915c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f646f1b-fa08-80eb-a22b-edd6ce5c915c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services QnA Maker Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Let’s you read and test a KB only.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-17T18:26:12.3329439Z\",\r\n \"updatedOn\": \"2020-05-08T12:03:46.9266538Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/466ccd10-b268-4a11-b098-b4849f024126\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"466ccd10-b268-4a11-b098-b4849f024126\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services QnA Maker Editor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Let’s you create, edit, import and export a KB. You cannot publish or delete a KB.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/create/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/train/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/refreshkeys/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/operations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/create/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/train/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/refreshkeys/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/operations/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-17T18:27:30.6434556Z\",\r\n \"updatedOn\": \"2020-05-08T12:02:34.0065552Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/f4cc2bf9-21be-47a1-bdf1-5c5804381025\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f4cc2bf9-21be-47a1-bdf1-5c5804381025\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Experimentation Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Experimentation Administrator\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/admin/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/write\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/delete\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experimentadmin/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experiment/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/emergencystop/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/write\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/delete\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/admin/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-18T22:46:33.1116612Z\",\r\n \"updatedOn\": \"2020-04-22T20:10:20.1216929Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a33b-edd6ce5c915c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f646f1b-fa08-80eb-a33b-edd6ce5c915c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Remote Rendering Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides user with conversion, manage session, rendering and diagnostics capabilities for Azure Remote Rendering\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/convert/action\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/convert/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/convert/delete\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/action\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/delete\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/render/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/diagnostic/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-01-23T18:15:31.3450348Z\",\r\n \"updatedOn\": \"2020-01-23T18:15:31.3450348Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/3df8b902-2a6f-47c7-8cc5-360e9b272a7e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3df8b902-2a6f-47c7-8cc5-360e9b272a7e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Remote Rendering Client\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides user with manage session, rendering and diagnostics capabilities for Azure Remote Rendering.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/action\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/delete\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/render/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/diagnostic/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-01-23T18:32:52.7069824Z\",\r\n \"updatedOn\": \"2020-01-23T18:32:52.7069824Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/d39065c4-c120-43c9-ab0a-63eed9795f0a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d39065c4-c120-43c9-ab0a-63eed9795f0a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Application Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for creating managed application resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Solutions/applications/*\",\r\n \"Microsoft.Solutions/register/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/*\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-08T03:39:11.8933879Z\",\r\n \"updatedOn\": \"2020-03-23T02:12:30.0853051Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/641177b8-a67a-45b9-a033-47bc880bb21e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"641177b8-a67a-45b9-a033-47bc880bb21e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Assessment Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you push assessments to Security Center\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Security/assessments/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-13T08:23:47.7656161Z\",\r\n \"updatedOn\": \"2020-02-13T08:23:47.7656161Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/612c2aa1-cb24-443b-ac28-3ab7272de6f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"612c2aa1-cb24-443b-ac28-3ab7272de6f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Tag Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage tags on entities, without providing access to the entities themselves.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resources/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/tags/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-18T23:19:19.2977644Z\",\r\n \"updatedOn\": \"2020-02-19T00:04:58.9214962Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/4a9ae827-6dc8-4573-8ac7-8239d42aa03f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4a9ae827-6dc8-4573-8ac7-8239d42aa03f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Integration Service Environment Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows developers to create and update workflows, integration accounts and API connections in integration service environments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Logic/integrationServiceEnvironments/read\",\r\n \"Microsoft.Logic/integrationServiceEnvironments/join/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-20T21:09:00.5627875Z\",\r\n \"updatedOn\": \"2020-02-20T21:36:24.619073Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/c7aa55d3-1abb-444a-a5ca-5e51e485d6ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c7aa55d3-1abb-444a-a5ca-5e51e485d6ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Integration Service Environment Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage integration service environments, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Logic/integrationServiceEnvironments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-20T21:10:44.4008319Z\",\r\n \"updatedOn\": \"2020-02-20T21:41:56.7983599Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/a41e2c5b-bd99-4a07-88f4-9bf657a760b8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a41e2c5b-bd99-4a07-88f4-9bf657a760b8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Marketplace Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Administrator of marketplace resource provider\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Marketplace/privateStores/write\",\r\n \"Microsoft.Marketplace/privateStores/action\",\r\n \"Microsoft.Marketplace/privateStores/delete\",\r\n \"Microsoft.Marketplace/privateStores/offers/write\",\r\n \"Microsoft.Marketplace/privateStores/offers/action\",\r\n \"Microsoft.Marketplace/privateStores/offers/delete\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-26T14:19:50.9681015Z\",\r\n \"updatedOn\": \"2020-06-23T05:54:42.8370671Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/dd920d6d-f481-47f1-b461-f338c46b2d9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dd920d6d-f481-47f1-b461-f338c46b2d9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read and write Azure Kubernetes Service clusters\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/managedClusters/read\",\r\n \"Microsoft.ContainerService/managedClusters/write\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-27T19:27:15.073997Z\",\r\n \"updatedOn\": \"2020-02-28T02:34:14.5162305Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Digital Twins Reader (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only role for Digital Twins data-plane properties\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DigitalTwins/digitaltwins/read\",\r\n \"Microsoft.DigitalTwins/digitaltwins/relationships/read\",\r\n \"Microsoft.DigitalTwins/eventroutes/read\",\r\n \"Microsoft.DigitalTwins/models/read\",\r\n \"Microsoft.DigitalTwins/query/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-10T23:48:14.7057381Z\",\r\n \"updatedOn\": \"2020-07-01T17:50:50.2393244Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/d57506d4-4c8d-48b1-8587-93c323f6a5a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d57506d4-4c8d-48b1-8587-93c323f6a5a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Digital Twins Owner (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access role for Digital Twins data-plane\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DigitalTwins/eventroutes/*\",\r\n \"Microsoft.DigitalTwins/digitaltwins/*\",\r\n \"Microsoft.DigitalTwins/digitaltwins/commands/*\",\r\n \"Microsoft.DigitalTwins/digitaltwins/relationships/*\",\r\n \"Microsoft.DigitalTwins/models/*\",\r\n \"Microsoft.DigitalTwins/query/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-10T23:49:33.782193Z\",\r\n \"updatedOn\": \"2020-03-10T23:49:33.782193Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/bcd981a7-7f74-457b-83e1-cceb9e632ffe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bcd981a7-7f74-457b-83e1-cceb9e632ffe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Hierarchy Settings Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows users to edit and delete Hierarchy Settings\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/managementGroups/settings/write\",\r\n \"Microsoft.Management/managementGroups/settings/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-13T23:55:11.0212387Z\",\r\n \"updatedOn\": \"2020-03-13T23:58:46.9249866Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/350f8d15-c687-4448-8ae1-157740a3936d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"350f8d15-c687-4448-8ae1-157740a3936d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal full access to FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:35:04.4949547Z\",\r\n \"updatedOn\": \"2020-03-17T18:35:04.4949547Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5a1fc7df-4bf1-4951-a576-89034ee01acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5a1fc7df-4bf1-4951-a576-89034ee01acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Exporter\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal to read and export FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/read\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/export/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:45:01.9764073Z\",\r\n \"updatedOn\": \"2020-03-19T20:29:56.9958536Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/3db33094-8700-4567-8da5-1501d4e7e843\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3db33094-8700-4567-8da5-1501d4e7e843\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal to read FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:49:04.8353499Z\",\r\n \"updatedOn\": \"2020-03-17T18:49:04.8353499Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/4c8d0bbc-75d3-4935-991f-5f3c56d81508\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4c8d0bbc-75d3-4935-991f-5f3c56d81508\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal to read and write FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/hardDelete/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:55:35.2413335Z\",\r\n \"updatedOn\": \"2020-03-17T18:55:35.2413335Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/3f88fce4-5892-4214-ae73-ba5294559913\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3f88fce4-5892-4214-ae73-ba5294559913\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Experimentation Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Experimentation Reader\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-25T18:05:14.8375678Z\",\r\n \"updatedOn\": \"2020-04-22T21:20:46.2737555Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/49632ef5-d9ac-41f4-b8e7-bbe587fa74a1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"49632ef5-d9ac-41f4-b8e7-bbe587fa74a1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Object Understanding Account Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides user with ingestion capabilities for Azure Object Understanding.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/action\",\r\n \"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-04-22T19:15:09.0697923Z\",\r\n \"updatedOn\": \"2020-04-22T19:15:09.0697923Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/4dd61c23-6743-42fe-a388-d8bdd41cb745\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4dd61c23-6743-42fe-a388-d8bdd41cb745\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Maps Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read, write, and delete access to map related data from an Azure maps account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Maps/accounts/*/read\",\r\n \"Microsoft.Maps/accounts/*/write\",\r\n \"Microsoft.Maps/accounts/*/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-07T20:55:05.064541Z\",\r\n \"updatedOn\": \"2020-05-07T20:55:05.064541Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8f5e0ce6-4f7b-4dcf-bddf-e6f48634a204\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f5e0ce6-4f7b-4dcf-bddf-e6f48634a204\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access to the project, including the ability to view, create, edit, or delete projects.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-08T23:47:07.0779345Z\",\r\n \"updatedOn\": \"2020-05-08T23:47:07.0779345Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/c1ff6cc2-c111-46fe-8896-e0ef812ad9f3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c1ff6cc2-c111-46fe-8896-e0ef812ad9f3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Deployment\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Publish, unpublish or export models. Deployment can view the project but can’t update.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/iterations/publish/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/iterations/export/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/quicktest/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/classify/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/detect/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:31:05.952862Z\",\r\n \"updatedOn\": \"2020-05-09T01:31:05.952862Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5c4089e1-6d96-4d2f-b296-c1bc7137275f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5c4089e1-6d96-4d2f-b296-c1bc7137275f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Labeler\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View, edit training images and create, add, remove, or delete the image tags. Labelers can view the project but can’t update anything other than training images and tags.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/query/action\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/images/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/tags/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/images/suggested/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/tagsandregions/suggestions/action\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:33:20.8278896Z\",\r\n \"updatedOn\": \"2020-05-09T01:33:20.8278896Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/88424f51-ebe7-446f-bc41-7fa16989e96c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"88424f51-ebe7-446f-bc41-7fa16989e96c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only actions in the project. Readers can’t create or update the project.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/query/action\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:34:18.5328818Z\",\r\n \"updatedOn\": \"2020-05-09T01:34:18.5328818Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/93586559-c37d-4a6b-ba08-b9f0940c2d73\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"93586559-c37d-4a6b-ba08-b9f0940c2d73\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Trainer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View, edit projects and train the models, including the ability to publish, unpublish, export the models. Trainers can’t create or delete the project.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/action\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/delete\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/import/action\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:35:13.8147804Z\",\r\n \"updatedOn\": \"2020-05-09T01:35:13.8147804Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/0a5ae4ab-0d65-4eeb-be61-29fc9b54394b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a5ae4ab-0d65-4eeb-be61-29fc9b54394b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Administrator (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform any action on certificates, keys and secrets of a key vault, except manage permissions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:46.2349235Z\",\r\n \"updatedOn\": \"2020-05-20T19:40:18.9511304Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00482a5a-887f-4fb3-b363-3b7fe8e74483\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Crypto Officer (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform any action on the keys of a key vault, except manage permissions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/keys/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.0099249Z\",\r\n \"updatedOn\": \"2020-05-20T19:44:51.5886988Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/14b46e9e-c2b7-41b4-b07b-48a6ebf60603\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"14b46e9e-c2b7-41b4-b07b-48a6ebf60603\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Crypto User (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform cryptographic operations on keys and certificates.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/keys/read\",\r\n \"Microsoft.KeyVault/vaults/keys/update/action\",\r\n \"Microsoft.KeyVault/vaults/keys/backup/action\",\r\n \"Microsoft.KeyVault/vaults/keys/encrypt/action\",\r\n \"Microsoft.KeyVault/vaults/keys/decrypt/action\",\r\n \"Microsoft.KeyVault/vaults/keys/wrap/action\",\r\n \"Microsoft.KeyVault/vaults/keys/unwrap/action\",\r\n \"Microsoft.KeyVault/vaults/keys/sign/action\",\r\n \"Microsoft.KeyVault/vaults/keys/verify/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.0699268Z\",\r\n \"updatedOn\": \"2020-05-20T19:48:54.8672037Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/12338af0-0e69-4776-bea7-57ae8d297424\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"12338af0-0e69-4776-bea7-57ae8d297424\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Secrets Officer (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform any action on the secrets of a key vault, except manage permissions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/secrets/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.1449242Z\",\r\n \"updatedOn\": \"2020-05-20T19:51:40.033812Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b86a8fe4-44ce-4948-aee5-eccb2c155cd7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b86a8fe4-44ce-4948-aee5-eccb2c155cd7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Secrets User (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read secret contents.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/secrets/getSecret/action\",\r\n \"Microsoft.KeyVault/vaults/secrets/readMetadata/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.2049241Z\",\r\n \"updatedOn\": \"2020-05-20T19:53:53.9617292Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/4633458b-17de-408a-b874-0445c86b69e6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4633458b-17de-408a-b874-0445c86b69e6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Certificates Officer (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform any action on the certificates of a key vault, except manage permissions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/certificatecas/*\",\r\n \"Microsoft.KeyVault/vaults/certificates/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.2499247Z\",\r\n \"updatedOn\": \"2020-05-20T19:56:22.0363761Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/a4417e6f-fecd-4de8-b567-7b0420556985\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4417e6f-fecd-4de8-b567-7b0420556985\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Reader (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read metadata of key vaults and its certificates, keys and secrets. Cannot read sensitive values such as secret contents or key material.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/vaults/secrets/readMetadata/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.2949294Z\",\r\n \"updatedOn\": \"2020-05-20T19:58:55.0084184Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/21090545-7ca7-4776-b22c-e363652d74d2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"21090545-7ca7-4776-b22c-e363652d74d2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Crypto Service Encryption (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read metadata of keys and perform wrap/unwrap operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/keys/read\",\r\n \"Microsoft.KeyVault/vaults/keys/wrap/action\",\r\n \"Microsoft.KeyVault/vaults/keys/unwrap/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-20T20:55:19.239847Z\",\r\n \"updatedOn\": \"2020-05-20T20:55:19.239847Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/e147488a-f6f5-4113-8e2d-b22465e65bf6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e147488a-f6f5-4113-8e2d-b22465e65bf6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Viewer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view all resources in cluster/namespace, except secrets.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/*/read\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/secrets/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/clusterconfig.azure.com/azureclusteridentityrequests/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:51:12.8801199Z\",\r\n \"updatedOn\": \"2020-06-12T20:51:12.8801199Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/63f0a09d-1495-4db4-a681-037d84835eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"63f0a09d-1495-4db4-a681-037d84835eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you update everything in cluster/namespace, except (cluster)roles and (cluster)role bindings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/*/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/*/write\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/rbac.authorization.k8s.io/*/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/rbac.authorization.k8s.io/*/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/namespaces/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/resourcequotas/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/certificates.k8s.io/certificatesigningrequests/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/policy/podsecuritypolicies/write\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:53:50.6749823Z\",\r\n \"updatedOn\": \"2020-06-12T20:53:50.6749823Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5b999177-9696-4545-85c7-50de3797e5a1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5b999177-9696-4545-85c7-50de3797e5a1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Cluster Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources in the cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:55:30.9910462Z\",\r\n \"updatedOn\": \"2020-06-12T20:55:30.9910462Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8393591c-06b9-48a2-a542-1bd6b377f6a2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8393591c-06b9-48a2-a542-1bd6b377f6a2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources under cluster/namespace, except update or delete resource quotas and namespaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/resourcequotas/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/resourcequotas/delete\",\r\n \"Microsoft.Kubernetes/connectedClusters/namespaces/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/namespaces/delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:57:06.0391177Z\",\r\n \"updatedOn\": \"2020-06-12T20:57:06.0391177Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/dffb1e0c-446f-4dde-a09f-99eb5cc68b96\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dffb1e0c-446f-4dde-a09f-99eb5cc68b96\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Cluster Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources in the cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:47:24.4071415Z\",\r\n \"updatedOn\": \"2020-07-02T17:47:24.4071415Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources under cluster/namespace, except update or delete resource quotas and namespaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/resourcequotas/write\",\r\n \"Microsoft.ContainerService/managedClusters/resourcequotas/delete\",\r\n \"Microsoft.ContainerService/managedClusters/namespaces/write\",\r\n \"Microsoft.ContainerService/managedClusters/namespaces/delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:50:30.4020311Z\",\r\n \"updatedOn\": \"2020-07-02T17:50:30.4020311Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/3498e952-d568-435e-9b2c-8d77e338d7f7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3498e952-d568-435e-9b2c-8d77e338d7f7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view all resources in cluster/namespace, except secrets.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/*/read\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/rbac.authorization.k8s.io/*/read\",\r\n \"Microsoft.ContainerService/managedClusters/rbac.authorization.k8s.io/*/write\",\r\n \"Microsoft.ContainerService/managedClusters/secrets/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:53:05.5728294Z\",\r\n \"updatedOn\": \"2020-07-07T16:40:37.2744607Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/7f6c6a51-bcf8-42ba-9220-52d62157d7db\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f6c6a51-bcf8-42ba-9220-52d62157d7db\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you update everything in cluster/namespace, except resource quotas, namespaces, pod security policies, certificate signing requests, (cluster)roles and (cluster)role bindings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/*/read\",\r\n \"Microsoft.ContainerService/managedClusters/*/write\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/rbac.authorization.k8s.io/*/read\",\r\n \"Microsoft.ContainerService/managedClusters/rbac.authorization.k8s.io/*/write\",\r\n \"Microsoft.ContainerService/managedClusters/namespaces/write\",\r\n \"Microsoft.ContainerService/managedClusters/resourcequotas/write\",\r\n \"Microsoft.ContainerService/managedClusters/certificates.k8s.io/certificatesigningrequests/write\",\r\n \"Microsoft.ContainerService/managedClusters/policy/podsecuritypolicies/write\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:54:51.9644983Z\",\r\n \"updatedOn\": \"2020-07-02T17:54:51.9644983Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/a7ffa36f-339b-4b5c-8bdf-e2c188b2c0eb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a7ffa36f-339b-4b5c-8bdf-e2c188b2c0eb\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "//subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments/734de5f5-c680-41c0-8beb-67b98c3539d1?api-version=2020-04-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy9kYW9yb3pjb19idWdfcmVwcm8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy83MzRkZTVmNS1jNjgwLTQxYzAtOGJlYi02N2I5OGMzNTM5ZDE/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2a430ff5-158f-42c4-b3d7-e9f0b81dd641" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28928.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.12.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "eb2a3abb-5a94-483d-b34b-dbe8bf4aafd9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=Production; path=/; secure; HttpOnly; SameSite=None" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "cc3dc399-d9fb-4897-bd29-90c5fa0c59bc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200709T230033Z:cc3dc399-d9fb-4897-bd29-90c5fa0c59bc" - ], - "Date": [ - "Thu, 09 Jul 2020 23:00:32 GMT" - ], - "Content-Length": [ - "1084" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg\",\r\n \"condition\": \"@Resource[Microsoft.Storage/storageAccounts/blobServices/containers:ContainerName] StringEqualsIgnoreCase 'foo_storage_container'\",\r\n \"conditionVersion\": \"1.0\",\r\n \"createdOn\": \"2020-07-09T23:00:30.4997866Z\",\r\n \"updatedOn\": \"2020-07-09T23:00:30.4997866Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false,\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": \"This test should not fail\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments/734de5f5-c680-41c0-8beb-67b98c3539d1\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"734de5f5-c680-41c0-8beb-67b98c3539d1\"\r\n}", - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "4e5329a6-39ce-4e13-b12e-11b30f015986" - } -} \ No newline at end of file diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaWithV2ConditionVersionOnly.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaWithV2ConditionVersionOnly.json deleted file mode 100644 index 33d895cb40da..000000000000 --- a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaWithV2ConditionVersionOnly.json +++ /dev/null @@ -1,518 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "//subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments/734de5f5-c680-41c0-8beb-67b98c3539d1?api-version=2020-04-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy9kYW9yb3pjb19idWdfcmVwcm8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy83MzRkZTVmNS1jNjgwLTQxYzAtOGJlYi02N2I5OGMzNTM5ZDE/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"canDelegate\": false,\r\n \"description\": \"This test should not fail\",\r\n \"condition\": \"@Resource[Microsoft.Storage/storageAccounts/blobServices/containers:ContainerName] StringEqualsIgnoreCase 'foo_storage_container'\",\r\n \"conditionVersion\": \"1.0\"\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b5c311e5-d703-451f-a7b7-6c181b6f341e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28928.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.12.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "547" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "59de6b34-8b25-4720-933c-503a47b487ae" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=Production; path=/; SameSite=None; secure; HttpOnly" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "496febc6-c217-47ef-b246-408671fd16f6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200709T230031Z:496febc6-c217-47ef-b246-408671fd16f6" - ], - "Date": [ - "Thu, 09 Jul 2020 23:00:31 GMT" - ], - "Content-Length": [ - "1050" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg\",\r\n \"condition\": \"@Resource[Microsoft.Storage/storageAccounts/blobServices/containers:ContainerName] StringEqualsIgnoreCase 'foo_storage_container'\",\r\n \"conditionVersion\": \"1.0\",\r\n \"createdOn\": \"2020-07-09T23:00:30.2997885Z\",\r\n \"updatedOn\": \"2020-07-09T23:00:30.2997885Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false,\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": \"This test should not fail\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments/734de5f5-c680-41c0-8beb-67b98c3539d1\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"734de5f5-c680-41c0-8beb-67b98c3539d1\"\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "//subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7?api-version=2018-01-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zL2FjZGQ3MmE3LTMzODUtNDhlZi1iZDQyLWY2MDZmYmE4MWFlNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f847702a-2031-49fe-a8d4-b72b04a96481" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28928.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.12.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7ac679cc-da8f-4b12-afa1-3e589d6d8719" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=Production; path=/; secure; HttpOnly; SameSite=None" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "b26cbe8c-da0c-4a36-8792-a2d3c3028bc1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200709T230031Z:b26cbe8c-da0c-4a36-8792-a2d3c3028bc1" - ], - "Date": [ - "Thu, 09 Jul 2020 23:00:31 GMT" - ], - "Content-Length": [ - "603" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:35.7424745Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/395544B0-BF41-429D-921F-E1CA2252FCF4/getObjectsByObjectIds?api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"01072e9b-c4a1-4246-a756-031b529bbf66\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "26494229-be6d-4932-bccb-f3f2549af2fe" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28928.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/3.5.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "116" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ocp-aad-diagnostics-server-name": [ - "a9mmah5e/Em6iyx6j5zM82NNZhbYYB8EG3Lr9YKbAhU=" - ], - "request-id": [ - "4fb4daf1-df73-4fd5-ac12-4ceb8ce9b2d3" - ], - "client-request-id": [ - "26494229-be6d-4932-bccb-f3f2549af2fe" - ], - "x-ms-dirapi-data-contract-version": [ - "1.6" - ], - "ocp-aad-session-key": [ - "p63jtIjENpcyijIiOIxNCP1yPg2snfkMpbJW0UQ_i4zOrUpJrywLKZr0FkjlHGkeU6yH-z1e19j-kJr-05qAUNaWch3Z5RxLYEC-YPL-Sy6MNy5vcPch0VBBtskaMGL4.5b-I7qbld4WHI9HmC-mo66Q0Zt4LE0HpjMgeZITbXHY" - ], - "x-aad-resource-unit": [ - "3" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Duration": [ - "727329" - ], - "Date": [ - "Thu, 09 Jul 2020 23:00:30 GMT" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "1511" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"ageGroup\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"consentProvidedForMinor\": null,\r\n \"country\": null,\r\n \"createdDateTime\": \"2020-07-06T23:49:47Z\",\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ddd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"dagoroz-bug-repro\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2020-07-06T23:49:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"dagoroz-bug-repro@rbacclitest.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/395544B0-BF41-429D-921F-E1CA2252FCF4/getObjectsByObjectIds?api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"01072e9b-c4a1-4246-a756-031b529bbf66\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e5e4c510-a698-4f60-8cca-9a285e7bc731" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28928.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/3.5.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "116" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ocp-aad-diagnostics-server-name": [ - "Jyamh40I/riKJflXwk3LHmaI3Lsq6osSe+/rd7Qerq0=" - ], - "request-id": [ - "317d9513-fb17-4e28-bdf8-67dd13306c22" - ], - "client-request-id": [ - "e5e4c510-a698-4f60-8cca-9a285e7bc731" - ], - "x-ms-dirapi-data-contract-version": [ - "1.6" - ], - "ocp-aad-session-key": [ - "lN2aNUDadUPUeAODLRUiL7a8_Owj3OwGEKFMQNaWy9OUEUJdTuKJV2gR2JqWzrS6PifMCCg8ZQ8Iqkl9KYoLTEyGtMpO-G2DgluTp--hl-LTO6uZKqq1mo0_76T_kNCk.fGJ-MXwJop6Flnh-LJbk6Z9H_EvZZCuN7WtM0p7bVuc" - ], - "x-aad-resource-unit": [ - "3" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Duration": [ - "740529" - ], - "Date": [ - "Thu, 09 Jul 2020 23:00:31 GMT" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "1511" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"ageGroup\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"consentProvidedForMinor\": null,\r\n \"country\": null,\r\n \"createdDateTime\": \"2020-07-06T23:49:47Z\",\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ddd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"dagoroz-bug-repro\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2020-07-06T23:49:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"dagoroz-bug-repro@rbacclitest.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "//subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'01072e9b-c4a1-4246-a756-031b529bbf66'&api-version=2020-04-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy9kYW9yb3pjb19idWdfcmVwcm8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cz8kZmlsdGVyPXByaW5jaXBhbElkJTIwZXElMjAnZTk1ZmE2MDgtM2Q0OS00NDM4LTlmNjAtMzVkODVkODRjYTE2JyZhcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "10c67b81-ce54-4aa9-937e-5aa1d7667498" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28928.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.12.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e7a30428-c47d-4eb2-9ab7-85e93cfafa29" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=Production; path=/; SameSite=None; secure; HttpOnly" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "12c38987-af64-4eef-ad9c-a2ad32108370" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200709T230031Z:12c38987-af64-4eef-ad9c-a2ad32108370" - ], - "Date": [ - "Thu, 09 Jul 2020 23:00:31 GMT" - ], - "Content-Length": [ - "1096" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg\",\r\n \"condition\": \"@Resource[Microsoft.Storage/storageAccounts/blobServices/containers:ContainerName] StringEqualsIgnoreCase 'foo_storage_container'\",\r\n \"conditionVersion\": \"1.0\",\r\n \"createdOn\": \"2020-07-09T23:00:30.4997866Z\",\r\n \"updatedOn\": \"2020-07-09T23:00:30.4997866Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false,\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": \"This test should not fail\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments/734de5f5-c680-41c0-8beb-67b98c3539d1\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"734de5f5-c680-41c0-8beb-67b98c3539d1\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "//subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleDefinitions?api-version=2018-01-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy9kYW9yb3pjb19idWdfcmVwcm8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVEZWZpbml0aW9ucz9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d5e5db6-cc81-40cc-ac01-3bc0118d9183" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28928.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.12.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "05b9fd3a-b8a6-4504-8a3e-094a6b7938e3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=Production; path=/; secure; HttpOnly; SameSite=None" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "2888c327-01b4-4741-9331-de67276b428b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200709T230032Z:2888c327-01b4-4741-9331-de67276b428b" - ], - "Date": [ - "Thu, 09 Jul 2020 23:00:31 GMT" - ], - "Content-Length": [ - "244004" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test Properties\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-13T18:17:20.8584392Z\",\r\n \"updatedOn\": \"2018-03-13T18:18:37.0952708Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/171d2453-29dc-42b4-84fc-3fd259eeaec3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"171d2453-29dc-42b4-84fc-3fd259eeaec3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test RD\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test RDDD\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-04-17T18:39:35.636177Z\",\r\n \"updatedOn\": \"2018-04-17T18:39:35.636177Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/98b036c8-8bf1-4f4a-8f50-a0a6dde0e734\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"98b036c8-8bf1-4f4a-8f50-a0a6dde0e734\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"test role and another testrole\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-22T23:58:52.7462995Z\",\r\n \"updatedOn\": \"2018-04-11T20:49:59.3331071Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/a997608d-3f63-4eeb-b01b-1b3ae270cd6d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a997608d-3f63-4eeb-b01b-1b3ae270cd6d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testrole132\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-05-30T23:13:47.7513317Z\",\r\n \"updatedOn\": \"2018-05-30T23:13:47.7513317Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/3e66a0a6-a18a-4afc-a5cc-ec19e06012ae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3e66a0a6-a18a-4afc-a5cc-ec19e06012ae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testrole-novm\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets Fuse Developers access select objects they need.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/*/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/*/read\",\r\n \"Microsoft.Storage/storageAccounts/*/read\",\r\n \"Microsoft.Web/sites/*/read\",\r\n \"Microsoft.ServiceBus/namespaces/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-09-20T00:19:06.4239042Z\",\r\n \"updatedOn\": \"2018-09-20T00:19:06.4239042Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/ef4af617-2f0e-412b-b30a-b7c848aa9098\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ef4af617-2f0e-412b-b30a-b7c848aa9098\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/rbactest\",\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestContributor\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\",\r\n \"Microsoft.Blueprint/blueprintAssignments/write\",\r\n \"Microsoft.Blueprint/blueprintAssignments/delete\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-06T00:36:20.4923118Z\",\r\n \"updatedOn\": \"2019-04-10T19:14:27.67508Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/c24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-21T18:24:29.0508834Z\",\r\n \"updatedOn\": \"2019-08-21T18:32:39.5641976Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testbatchcontributor\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Batch/batchAccounts/read\",\r\n \"Microsoft.Batch/batchAccounts/*/read\",\r\n \"Microsoft.Batch/batchAccounts/applications/*\",\r\n \"Microsoft.Batch/batchAccounts/listkeys/action\",\r\n \"Microsoft.Batch/batchAccounts/pools/write\",\r\n \"Microsoft.Batch/batchAccounts/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-09-10T16:44:02.3947885Z\",\r\n \"updatedOn\": \"2019-09-10T16:44:02.3947885Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/e2ab292b-812a-4306-9c73-df992f61649b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e2ab292b-812a-4306-9c73-df992f61649b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"No RD WRITE\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/roleDefinitions/write\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-01-28T00:57:45.1574464Z\",\r\n \"updatedOn\": \"2020-01-28T00:57:45.1574464Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/d8bae860-743b-407c-8cf0-3aa1cbb8788c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d8bae860-743b-407c-8cf0-3aa1cbb8788c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"No RD READ\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-01-29T00:27:29.0693475Z\",\r\n \"updatedOn\": \"2020-01-29T00:27:29.0693475Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/724dd060-7e51-4f7b-a749-cd927f345b68\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"724dd060-7e51-4f7b-a749-cd927f345b68\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"asd\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Synapse/register/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-19T20:09:21.8617073Z\",\r\n \"updatedOn\": \"2020-02-19T20:09:21.8617073Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/254d9483-0229-40a3-a457-f6cbb5449be6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"254d9483-0229-40a3-a457-f6cbb5449be6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"teste\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"setesrt\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"microsoft.operationalinsights/register/action\",\r\n \"microsoft.operationalinsights/unregister/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-27T01:22:58.9649766Z\",\r\n \"updatedOn\": \"2020-02-27T01:22:58.9649766Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/7da825e5-3464-48e4-8646-fab69f7de46c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7da825e5-3464-48e4-8646-fab69f7de46c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"asda\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"asdasd\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Synapse/checkNameAvailability/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-27T19:33:25.1899025Z\",\r\n \"updatedOn\": \"2020-02-27T19:33:25.1899025Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/7cab0ec5-99cb-466f-937e-26806c98f0fb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7cab0ec5-99cb-466f-937e-26806c98f0fb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CloneIt\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T03:08:21.1526749Z\",\r\n \"updatedOn\": \"2020-03-17T03:08:21.1526749Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/acfb9fda-b179-4290-8d82-609ddb722ca0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acfb9fda-b179-4290-8d82-609ddb722ca0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RyanTestMG\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\",\r\n \"/providers/Microsoft.Management/managementGroups/thisdoesntexist\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-18T23:23:29.8420866Z\",\r\n \"updatedOn\": \"2020-03-18T23:23:29.8420866Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/f5fde758-46cb-4388-8e2d-5dfb6f9c5e26\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f5fde758-46cb-4388-8e2d-5dfb6f9c5e26\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"27MarchCR Clone\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [\r\n \"Microsoft.ClassicCompute/virtualMachines/capture/action\",\r\n \"Microsoft.ClassicCompute/virtualMachines/start/action\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-27T03:30:41.2204287Z\",\r\n \"updatedOn\": \"2020-05-25T03:59:50.7212707Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/688cffa8-c3ad-434d-95bf-4feef208c51f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"688cffa8-c3ad-434d-95bf-4feef208c51f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"dfg\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"84codes.CloudAMQP/updateCommunicationPreference/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-04-15T17:01:23.582234Z\",\r\n \"updatedOn\": \"2020-04-15T17:01:23.582234Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/666436ac-d087-4028-8caa-3d56838acc54\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"666436ac-d087-4028-8caa-3d56838acc54\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testest\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"84codes.CloudAMQP/updateCommunicationPreference/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-04-15T17:28:05.771688Z\",\r\n \"updatedOn\": \"2020-04-15T17:28:05.771688Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/778f1528-7abc-42be-a89f-d72860782919\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"778f1528-7abc-42be-a89f-d72860782919\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testewasdasd\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"84codes.CloudAMQP/updateCommunicationPreference/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-04-16T19:16:54.3681577Z\",\r\n \"updatedOn\": \"2020-04-16T19:16:54.3681577Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/351dc63d-3eec-4697-bf6b-ebeb52629640\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"351dc63d-3eec-4697-bf6b-ebeb52629640\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"asdsad\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Synapse/checkNameAvailability/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-04-23T15:27:01.6742334Z\",\r\n \"updatedOn\": \"2020-04-23T15:27:01.6742334Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/2b516d2c-4b58-45d7-8c2b-55f2e936d21a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2b516d2c-4b58-45d7-8c2b-55f2e936d21a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testrole1234\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T09:19:08.0056403Z\",\r\n \"updatedOn\": \"2020-06-09T09:19:08.0056403Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/f1ae5ae6-80f8-4b6a-9962-96e885ed2fdf\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f1ae5ae6-80f8-4b6a-9962-96e885ed2fdf\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customreader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T21:33:19.2160171Z\",\r\n \"updatedOn\": \"2020-06-09T21:33:19.2160171Z\",\r\n \"createdBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\",\r\n \"updatedBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/e9bfc956-b9d6-4931-8df6-d8e759dfb7bd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e9bfc956-b9d6-4931-8df6-d8e759dfb7bd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customabc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T21:37:45.502473Z\",\r\n \"updatedOn\": \"2020-06-09T21:37:45.502473Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/1d3c667d-d849-4444-a61e-910a34a5fbc3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1d3c667d-d849-4444-a61e-910a34a5fbc3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customroletest123\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:01:04.3209554Z\",\r\n \"updatedOn\": \"2020-06-09T22:01:04.3209554Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/0a301507-673a-47b2-a629-7fa8ca72af3f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a301507-673a-47b2-a629-7fa8ca72af3f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customroleabc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:09:16.2626975Z\",\r\n \"updatedOn\": \"2020-06-09T22:09:16.2626975Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/bc1ff923-7253-46cd-9120-6ad03ef2d6e6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bc1ff923-7253-46cd-9120-6ad03ef2d6e6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customreader123\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:12:24.0862728Z\",\r\n \"updatedOn\": \"2020-06-09T22:12:24.0862728Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8700af82-f42f-4393-a5f2-eee83964a9aa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8700af82-f42f-4393-a5f2-eee83964a9aa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"test123abc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:14:57.6218091Z\",\r\n \"updatedOn\": \"2020-06-09T22:14:57.6218091Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/eef4fe94-b510-4514-8669-0548903f3495\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"eef4fe94-b510-4514-8669-0548903f3495\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customroleabc123\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:37:36.1262398Z\",\r\n \"updatedOn\": \"2020-06-09T22:37:36.1262398Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/fd01a54f-fd90-46ec-b525-a636a28df51f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fd01a54f-fd90-46ec-b525-a636a28df51f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testcustomroleabc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:42:30.4994673Z\",\r\n \"updatedOn\": \"2020-06-09T22:42:30.4994673Z\",\r\n \"createdBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\",\r\n \"updatedBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/fecfef36-f4fc-4e4b-93ff-7db5732a444d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fecfef36-f4fc-4e4b-93ff-7db5732a444d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"zzcustomrolezz\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:52:41.6786191Z\",\r\n \"updatedOn\": \"2020-06-09T22:52:41.6786191Z\",\r\n \"createdBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\",\r\n \"updatedBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/dc307f0a-46a2-4260-bbca-66b3a4448a8d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dc307f0a-46a2-4260-bbca-66b3a4448a8d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testCustomRole\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:55:26.5124865Z\",\r\n \"updatedOn\": \"2020-06-09T22:55:26.5124865Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b768931c-5d00-4572-a731-431c6189f0da\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b768931c-5d00-4572-a731-431c6189f0da\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"bbCustomRole\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T23:42:41.0368856Z\",\r\n \"updatedOn\": \"2020-06-09T23:42:41.0368856Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/ae101df6-14ae-4d66-bbe0-a469a964f90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae101df6-14ae-4d66-bbe0-a469a964f90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"zzCustomRole\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T23:55:14.2992167Z\",\r\n \"updatedOn\": \"2020-06-09T23:55:14.2992167Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/bec73b96-f2cf-436c-8917-d547da43a149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bec73b96-f2cf-436c-8917-d547da43a149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customrole123\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-10T01:13:23.0150344Z\",\r\n \"updatedOn\": \"2020-06-10T01:13:23.0150344Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/32d6d31d-e61a-41ec-8386-5dc64b3bc204\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"32d6d31d-e61a-41ec-8386-5dc64b3bc204\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"No RA READ\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-17T06:31:33.3927723Z\",\r\n \"updatedOn\": \"2020-06-17T06:31:33.3927723Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/6f2b4c36-69f1-4a45-8cda-7d5a9b690408\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f2b4c36-69f1-4a45-8cda-7d5a9b690408\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"No RA WRITE\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-17T06:41:55.5369299Z\",\r\n \"updatedOn\": \"2020-06-17T06:41:55.5369299Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/a43bed91-a7af-418a-8f07-e135d151b5b8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a43bed91-a7af-418a-8f07-e135d151b5b8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Another tests role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986\",\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-01T23:09:24.5638411Z\",\r\n \"updatedOn\": \"2020-07-01T23:09:24.5638411Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/0a0e83bc-50b9-4c4d-b2c2-3f41e1a8baf2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a0e83bc-50b9-4c4d-b2c2-3f41e1a8baf2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Daoroz-Custom1\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"A role to use when testing various things\\nIt does not grant any real permissions, just the ability to read role definitions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-08T17:44:15.2525393Z\",\r\n \"updatedOn\": \"2020-07-08T17:44:15.2525393Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/0353ee0a-19ae-4380-ba3d-d54767c75d5b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0353ee0a-19ae-4380-ba3d-d54767c75d5b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Daoroz-Custom2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"A role to be used when testing various things\\nIt does not grant any real permissions, just the ability to read role definitions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-08T17:51:15.4187811Z\",\r\n \"updatedOn\": \"2020-07-08T17:51:15.4187811Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/98ee936c-393c-4f03-81a8-6eccfd82d96e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"98ee936c-393c-4f03-81a8-6eccfd82d96e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Role at MG Root\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role at MG Root\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/1273adef-00a3-4086-a51a-dbcce1857d36\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-24T19:26:02.777463Z\",\r\n \"updatedOn\": \"2019-07-24T19:26:02.777463Z\",\r\n \"createdBy\": \"cdab7ada-d740-47da-a823-ec29c9a68482\",\r\n \"updatedBy\": \"cdab7ada-d740-47da-a823-ec29c9a68482\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/fa3bf1c6-5da9-47c7-976e-1007e1bc385a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa3bf1c6-5da9-47c7-976e-1007e1bc385a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Role Manish reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Manish reader\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/1273adef-00a3-4086-a51a-dbcce1857d36\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-07T18:53:42.1390099Z\",\r\n \"updatedOn\": \"2020-05-08T01:15:45.1587505Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"e8df956a-9463-408a-a9be-cf5f46d09b37\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/4edfca53-b078-483f-9d0e-c83e4544e854\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4edfca53-b078-483f-9d0e-c83e4544e854\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrPush\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr push\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/pull/read\",\r\n \"Microsoft.ContainerRegistry/registries/push/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-29T17:52:32.5201177Z\",\r\n \"updatedOn\": \"2018-11-13T23:26:19.9749249Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8311e382-0749-4cb8-b61a-304f252e45ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8650193Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:17.7502607Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrPull\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr pull\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/pull/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-22T19:01:56.8227182Z\",\r\n \"updatedOn\": \"2018-11-13T23:22:03.2302457Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f951dda-4ed3-4680-a7ca-43fe172d538d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrImageSigner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr image signer\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/sign/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-15T23:23:08.4038322Z\",\r\n \"updatedOn\": \"2018-10-29T19:06:24.9004422Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/6cef56e8-d556-48e5-a04f-b8e64114680f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6cef56e8-d556-48e5-a04f-b8e64114680f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrDelete\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr delete\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/artifacts/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-11T20:19:31.6682804Z\",\r\n \"updatedOn\": \"2019-03-11T20:24:38.9845104Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/c2f4ef07-c644-48eb-af81-4b1b4947fb11\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c2f4ef07-c644-48eb-af81-4b1b4947fb11\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrQuarantineReader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr quarantine data reader\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/quarantine/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-16T00:27:39.9596835Z\",\r\n \"updatedOn\": \"2019-10-22T00:12:39.702093Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/cdda3590-29a3-44f6-95f2-9f980659eb04\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cdda3590-29a3-44f6-95f2-9f980659eb04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrQuarantineWriter\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr quarantine data writer\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/quarantine/read\",\r\n \"Microsoft.ContainerRegistry/registries/quarantine/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-16T00:26:37.587182Z\",\r\n \"updatedOn\": \"2019-10-22T00:10:29.8202164Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/c8d4ff99-41c3-41a8-9f60-21dfdad59608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c8d4ff99-41c3-41a8-9f60-21dfdad59608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metricAlerts/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2020-02-12T12:45:46.9200472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Attestation Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read the attestation provider properties\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Attestation/attestationProviders/attestation/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-25T19:42:59.157671Z\",\r\n \"updatedOn\": \"2019-05-10T17:52:38.9036953Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"SYSTEM\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/fd1bd22b-8476-40bc-a0bc-69b95687b9f3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fd1bd22b-8476-40bc-a0bc-69b95687b9f3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/hybridRunbookWorkerGroups/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobs/output/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2018-08-14T22:08:48.1147327Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/hybridRunbookWorkerGroups/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/linkedWorkspace/read\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Automation/automationAccounts/jobs/output/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2018-05-10T20:12:39.69782Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Avere Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can create and manage an Avere vFXT cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/proximityPlacementGroups/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/disks/*\",\r\n \"Microsoft.Network/*/read\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/*/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/resources/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-18T20:00:58.9207889Z\",\r\n \"updatedOn\": \"2020-05-27T06:48:54.4896867Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/4f8fab4f-1852-4a58-a46a-8eaf358af14a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4f8fab4f-1852-4a58-a46a-8eaf358af14a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Avere Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Used by the Avere vFXT cluster to manage the cluster\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-18T20:02:38.3399857Z\",\r\n \"updatedOn\": \"2019-03-29T00:26:37.9205875Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/c025889f-8102-4ebf-b32c-fc0c6f0c6bd9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c025889f-8102-4ebf-b32c-fc0c6f0c6bd9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Cluster Admin Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster admin credential action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/managedClusters/listClusterAdminCredential/action\",\r\n \"Microsoft.ContainerService/managedClusters/accessProfiles/listCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-15T21:38:18.5953853Z\",\r\n \"updatedOn\": \"2020-02-07T02:49:24.9715273Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/0ab0b1a8-8aac-4efd-b8c2-3ee1fb270be8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0ab0b1a8-8aac-4efd-b8c2-3ee1fb270be8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Cluster User Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster user credential action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-15T22:04:53.4037241Z\",\r\n \"updatedOn\": \"2020-02-11T23:37:03.589924Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/4abbcc35-e782-43d8-92c5-2d3f1bd2253f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4abbcc35-e782-43d8-92c5-2d3f1bd2253f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Maps Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read map related data from an Azure maps account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Maps/accounts/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-05T19:47:03.472307Z\",\r\n \"updatedOn\": \"2020-04-28T22:33:41.7780319Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/423170ca-a8f6-4b0f-8487-9e4eb8f49bfa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"423170ca-a8f6-4b0f-8487-9e4eb8f49bfa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/edgeSubscriptions/read\",\r\n \"Microsoft.AzureStack/registrations/products/*/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2020-06-29T22:11:17.0759529Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\r\n \"Microsoft.RecoveryServices/locations/backupStatus/action\",\r\n \"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\r\n \"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\r\n \"Microsoft.RecoveryServices/operations/read\",\r\n \"Microsoft.RecoveryServices/locations/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2019-12-17T10:44:35.8361149Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.CostManagement/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2018-09-26T17:45:09.2227236Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/inquire/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\",\r\n \"Microsoft.RecoveryServices/locations/backupStatus/action\",\r\n \"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\r\n \"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\r\n \"Microsoft.RecoveryServices/operations/read\",\r\n \"Microsoft.RecoveryServices/locations/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2019-12-17T11:02:43.9998686Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupstorageconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\",\r\n \"Microsoft.RecoveryServices/locations/backupStatus/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\r\n \"Microsoft.RecoveryServices/operations/read\",\r\n \"Microsoft.RecoveryServices/locations/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2020-03-04T12:12:04.321311Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Blockchain Member Node Access (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for access to Blockchain Member nodes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Blockchain/blockchainMembers/transactionNodes/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Blockchain/blockchainMembers/transactionNodes/connect/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T10:33:01.9604839Z\",\r\n \"updatedOn\": \"2018-12-21T10:33:58.0042162Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/31a002a1-acaf-453e-8a5b-297c9ca1ea24\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"31a002a1-acaf-453e-8a5b-297c9ca1ea24\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:42:18.897821Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:39.7576926Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:30.8964641Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:42:23.2893077Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-04-25T00:37:56.5416086Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:43.0770473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read and list keys of Cognitive Services.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/listkeys/action\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Insights/diagnosticSettings/read\",\r\n \"Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.Insights/metricdefinitions/read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-08T23:23:43.7701274Z\",\r\n \"updatedOn\": \"2019-02-13T19:53:56.7209248Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a97b65f3-24c7-4388-baec-2e87135dc908\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Data Reader (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read Cognitive Services data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-02-13T20:02:12.6849986Z\",\r\n \"updatedOn\": \"2019-02-13T22:53:55.167529Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b59867f0-fa02-499b-be73-45a86b5b3e1c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b59867f0-fa02-499b-be73-45a86b5b3e1c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create, read, update, delete and manage keys of Cognitive Services.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.CognitiveServices/*\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.Insights/metricdefinitions/read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-08T23:18:39.2257848Z\",\r\n \"updatedOn\": \"2018-09-14T00:53:37.7546808Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CosmosBackupOperator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can submit restore request for a Cosmos DB database or a container for an account\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DocumentDB/databaseAccounts/backup/action\",\r\n \"Microsoft.DocumentDB/databaseAccounts/restore/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-07T19:47:14.965156Z\",\r\n \"updatedOn\": \"2018-12-07T19:52:21.9969834Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/db7b14f2-5adf-42da-9f96-f2ee17bab5cb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"db7b14f2-5adf-42da-9f96-f2ee17bab5cb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\",\r\n \"Microsoft.Blueprint/blueprintAssignments/write\",\r\n \"Microsoft.Blueprint/blueprintAssignments/delete\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:38.458061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Insights/MetricDefinitions/read\",\r\n \"Microsoft.Insights/Metrics/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2018-02-21T01:36:59.6186231Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cost Management Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view costs and manage cost configuration (e.g. budgets, exports)\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Consumption/*\",\r\n \"Microsoft.CostManagement/*\",\r\n \"Microsoft.Billing/billingPeriods/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Advisor/configurations/read\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Management/managementGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-14T16:09:22.8834827Z\",\r\n \"updatedOn\": \"2019-06-25T21:25:06.8686379Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/434105ed-43f6-45c7-a02f-909b2ba83430\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"434105ed-43f6-45c7-a02f-909b2ba83430\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cost Management Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view cost data and configuration (e.g. budgets, exports)\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.CostManagement/*/read\",\r\n \"Microsoft.Billing/billingPeriods/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Advisor/configurations/read\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Management/managementGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-14T16:09:22.8834827Z\",\r\n \"updatedOn\": \"2019-06-25T20:59:11.5762937Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/72fafb9e-0641-4937-9268-a91bfd8191a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"72fafb9e-0641-4937-9268-a91bfd8191a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Box Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything under Data Box Service except giving access to others.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Databox/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-07-27T08:28:42.714021Z\",\r\n \"updatedOn\": \"2018-07-27T08:36:56.3827309Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/add466c9-e687-43fc-8d98-dfcf8d720be5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"add466c9-e687-43fc-8d98-dfcf8d720be5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Box Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Data Box Service except creating order or editing order details and giving access to others.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Databox/*/read\",\r\n \"Microsoft.Databox/jobs/listsecrets/action\",\r\n \"Microsoft.Databox/jobs/listcredentials/action\",\r\n \"Microsoft.Databox/locations/availableSkus/action\",\r\n \"Microsoft.Databox/locations/validateInputs/action\",\r\n \"Microsoft.Databox/locations/regionConfiguration/action\",\r\n \"Microsoft.Databox/locations/validateAddress/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-07-27T08:26:21.9284772Z\",\r\n \"updatedOn\": \"2020-01-24T05:39:52.6143537Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/028f4ed7-e2a9-465e-a8f4-9c0ffdfdc027\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"028f4ed7-e2a9-465e-a8f4-9c0ffdfdc027\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.DataFactory/factories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.EventGrid/eventSubscriptions/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2020-02-14T19:49:21.5789216Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Purger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can purge analytics data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Insights/components/purge/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/purge/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-04-30T22:39:49.61677Z\",\r\n \"updatedOn\": \"2018-04-30T22:44:15.1171162Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/150f5e0c-0603-4f03-8c7f-cf70034c4e90\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"150f5e0c-0603-4f03-8c7f-cf70034c4e90\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/ensureCurrentUserProfile/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.DevTestLab/labs/virtualmachines/listApplicableSchedules/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/getRdpFileContents/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2019-05-08T11:27:34.8855476Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-11-21T01:38:32.0948484Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid EventSubscription Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage EventGrid event subscription operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/*\",\r\n \"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-08T23:27:28.3130743Z\",\r\n \"updatedOn\": \"2019-01-08T00:06:34.3543171Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/428e0ff0-5e57-4d9c-a221-2c70d0e0a443\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"428e0ff0-5e57-4d9c-a221-2c70d0e0a443\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid EventSubscription Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read EventGrid event subscriptions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-09T17:29:28.1417894Z\",\r\n \"updatedOn\": \"2019-01-08T00:05:40.2884365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/2414bbcf-6497-4faf-8c65-045460748405\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2414bbcf-6497-4faf-8c65-045460748405\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Graph Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage all aspects of the Enterprise Graph - Ontology, Schema mapping, Conflation and Conversational AI and Ingestions\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/conflation/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/conflation/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/sourceschema/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/sourceschema/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/intentclassification/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/intentclassification/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ingestion/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ingestion/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ontology/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ontology/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/delete\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-02-23T21:07:22.5844236Z\",\r\n \"updatedOn\": \"2019-02-28T20:21:18.9318073Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b60367af-1334-4454-b71e-769d9a4f83d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b60367af-1334-4454-b71e-769d9a4f83d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"HDInsight Domain Services Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can Read, Create, Modify and Delete Domain Services related operations needed for HDInsight Enterprise Security Package\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AAD/*/read\",\r\n \"Microsoft.AAD/domainServices/*/read\",\r\n \"Microsoft.AAD/domainServices/oucontainer/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-09-12T22:42:51.7451109Z\",\r\n \"updatedOn\": \"2018-09-12T23:06:45.7641599Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8d8d5a11-05d3-4bda-a417-a08778121c7c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d8d5a11-05d3-4bda-a417-a08778121c7c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:32:00.9996357Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\",\r\n \"Microsoft.KeyVault/hsmPools/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-25T17:08:28.5184971Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:49.5373075Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Knowledge Consumer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Knowledge Read permission to consume Enterprise Graph Knowledge using entity search and graph query\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-02-23T21:23:31.4037552Z\",\r\n \"updatedOn\": \"2019-02-28T20:25:00.7369384Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/ee361c5d-f7b5-4119-b4b6-892157c8f64c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee361c5d-f7b5-4119-b4b6-892157c8f64c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Lab Creator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create, manage, delete your managed labs under your Azure Lab Accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.LabServices/labAccounts/*/read\",\r\n \"Microsoft.LabServices/labAccounts/createLab/action\",\r\n \"Microsoft.LabServices/labAccounts/sizes/getRegionalAvailability/action\",\r\n \"Microsoft.LabServices/labAccounts/getRegionalAvailability/action\",\r\n \"Microsoft.LabServices/labAccounts/getPricingAndAvailability/action\",\r\n \"Microsoft.LabServices/labAccounts/getRestrictionsAndUsage/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-01-18T23:38:58.1036141Z\",\r\n \"updatedOn\": \"2020-02-12T23:54:21.0840302Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b97fb8bc-a8b2-4522-a38b-dd33c7e65ead\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b97fb8bc-a8b2-4522-a38b-dd33c7e65ead\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2018-01-30T18:08:26.0438523Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2020-03-26T22:57:55.366783Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/metricAlerts/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/customApis/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2019-10-15T04:28:56.3265986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metricAlerts/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/customApis/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2019-10-15T04:31:27.7685427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Application Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read and perform actions on Managed Application resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Solutions/applications/read\",\r\n \"Microsoft.Solutions/*/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-07-27T00:59:33.7988813Z\",\r\n \"updatedOn\": \"2019-02-20T01:09:55.1593079Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/c7393b34-138c-406f-901b-d8cf2b17e6ae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c7393b34-138c-406f-901b-d8cf2b17e6ae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Applications Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read resources in a managed app and request JIT access.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Solutions/jitRequests/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-09-06T00:33:58.3651522Z\",\r\n \"updatedOn\": \"2018-09-06T00:33:58.3651522Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b9331d33-8a36-4f8c-b097-4f54124fdb44\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b9331d33-8a36-4f8c-b097-4f54124fdb44\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Identity Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read and Assign User Assigned Identity\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/*/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/*/assign/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-14T19:52:04.3924594Z\",\r\n \"updatedOn\": \"2017-12-14T22:16:00.1483256Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f1a07417-d97a-45cb-824c-7a7467783830\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Identity Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, Read, Update, and Delete User Assigned Identity\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-14T19:53:42.8804692Z\",\r\n \"updatedOn\": \"2019-06-20T21:51:27.0850433Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/e40ec5ca-96e0-45a2-b4ff-59039f2c2b59\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e40ec5ca-96e0-45a2-b4ff-59039f2c2b59\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Management Group Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Management Group Contributor Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/managementGroups/delete\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Management/managementGroups/subscriptions/delete\",\r\n \"Microsoft.Management/managementGroups/subscriptions/write\",\r\n \"Microsoft.Management/managementGroups/write\",\r\n \"Microsoft.Management/managementGroups/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-06-22T00:28:29.0523964Z\",\r\n \"updatedOn\": \"2020-07-06T18:13:34.9045672Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Management Group Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Management Group Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Management/managementGroups/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-06-22T00:31:03.4295347Z\",\r\n \"updatedOn\": \"2020-07-06T18:09:27.1441705Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/ac63b705-f282-497d-ac71-919bf39d939d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ac63b705-f282-497d-ac71-919bf39d939d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Metrics Publisher\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enables publishing metrics against Azure resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Insights/Metrics/Write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-14T00:36:16.5610279Z\",\r\n \"updatedOn\": \"2018-08-14T00:37:18.1465065Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3913510d-42f4-4e42-8a64-420c390055eb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2018-01-30T18:08:27.262625Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.AlertsManagement/alerts/*\",\r\n \"Microsoft.AlertsManagement/alertsSummary/*\",\r\n \"Microsoft.Insights/actiongroups/*\",\r\n \"Microsoft.Insights/activityLogAlerts/*\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/metricalerts/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/scheduledqueryrules/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.Insights/workbooks/*\",\r\n \"Microsoft.Insights/privateLinkScopes/*\",\r\n \"Microsoft.Insights/privateLinkScopeOperationStatuses/*\",\r\n \"Microsoft.OperationalInsights/workspaces/write\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.WorkloadMonitor/monitors/*\",\r\n \"Microsoft.WorkloadMonitor/notificationSettings/*\",\r\n \"Microsoft.AlertsManagement/smartDetectorAlertRules/*\",\r\n \"Microsoft.AlertsManagement/actionRules/*\",\r\n \"Microsoft.AlertsManagement/smartGroups/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2020-04-19T16:03:16.7692305Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:42:16.2033878Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:32.2101122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:35.7424745Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:48.2353169Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader and Data Access\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything but will not let you delete or create a storage account or contained resource. It will also allow read/write access to all data contained in a storage account via access to storage account keys.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/ListAccountSas/action\",\r\n \"Microsoft.Storage/storageAccounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-27T23:20:46.1498906Z\",\r\n \"updatedOn\": \"2019-04-04T23:41:26.1056261Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/c12c1c16-33a1-487b-954d-41c89c60f349\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c12c1c16-33a1-487b-954d-41c89c60f349\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Users with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Authorization/policysetdefinitions/*\",\r\n \"Microsoft.PolicyInsights/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2019-11-20T20:26:12.8811365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:42:24.8360756Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:42:21.8687229Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2019-03-12T21:12:48.635016Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager (Legacy)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This is a legacy role. Please use Security Administrator instead\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2018-03-08T18:18:48.618362Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Management/managementGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2018-06-28T17:27:23.106561Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Spatial Anchors Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage spatial anchors in your account, but not delete them\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/create/action\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T17:57:41.1420864Z\",\r\n \"updatedOn\": \"2019-02-13T06:13:39.8686435Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8bbe83f1-e2a6-4df7-8cb4-4e04d4e5c827\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8bbe83f1-e2a6-4df7-8cb4-4e04d4e5c827\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery service except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationOperationStatus/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2019-11-07T06:13:49.0760858Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/switchprotection/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2019-08-28T12:00:57.4472826Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Spatial Anchors Account Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you locate and read properties of spatial anchors in your account\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T17:57:42.9271004Z\",\r\n \"updatedOn\": \"2019-02-13T06:16:15.3170663Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5d51204f-eb77-4b1c-b86a-2ec626c49413\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d51204f-eb77-4b1c-b86a-2ec626c49413\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Spatial Anchors Account Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage spatial anchors in your account, including deleting them\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/create/action\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/delete\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T17:57:43.5489832Z\",\r\n \"updatedOn\": \"2019-02-13T06:15:31.8572222Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/70bbe301-9835-447d-afdd-19eb3167307c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70bbe301-9835-447d-afdd-19eb3167307c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Managed Instance Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL Managed Instances and required network configuration, but can’t give access to others.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/*\",\r\n \"Microsoft.Network/routeTables/*\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/locations/instanceFailoverGroups/*\",\r\n \"Microsoft.Sql/managedInstances/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/*\",\r\n \"Microsoft.Network/virtualNetworks/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-10T22:57:14.2937983Z\",\r\n \"updatedOn\": \"2020-06-24T22:56:31.0576055Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/4939a1f6-9ae0-4e48-a1e0-f2cbe897382d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4939a1f6-9ae0-4e48-a1e0-f2cbe897382d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/extendedAuditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/vulnerabilityAssessments/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-28T22:44:35.864967Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/transparentDataEncryption/*\",\r\n \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/extendedAuditingSettings/read\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/extendedAuditingSettings/read\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/transparentDataEncryption/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/vulnerabilityAssessments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-16T18:44:40.4607572Z\",\r\n \"updatedOn\": \"2019-08-08T22:58:22.2532171Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, including accessing storage account keys which provide full access to storage account data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2019-05-29T20:56:33.9582501Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/extendedAuditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/extendedAuditingSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/vulnerabilityAssessments/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-28T22:44:36.5466043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write and delete access to Azure Storage blob containers and data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/move/action\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2020-03-30T22:49:07.866942Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ba92f5b4-2d11-453d-a403-e96b0029c9fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Storage blob containers and data, including assigning POSIX access control.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/*\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-04T07:02:58.2775257Z\",\r\n \"updatedOn\": \"2019-07-16T21:30:33.7002563Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b7e6dc6d-f1e8-4753-8033-0f276bb0955b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to Azure Storage blob containers and data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2019-07-15T22:01:25.5409721Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write, and delete access to Azure Storage queues and queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/delete\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/delete\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2019-03-05T21:58:02.7367128Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/974c5e8b-45b9-4653-ba55-5f855dd0fb88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"974c5e8b-45b9-4653-ba55-5f855dd0fb88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Message Processor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for peek, receive, and delete access to Azure Storage queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/process/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-01-28T22:27:04.8947111Z\",\r\n \"updatedOn\": \"2019-03-05T22:05:46.1259125Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8a0f0c08-91a1-4084-bc3d-661d67233fed\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8a0f0c08-91a1-4084-bc3d-661d67233fed\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Message Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for sending of Azure Storage queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/add/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-01-28T22:28:34.7459724Z\",\r\n \"updatedOn\": \"2019-03-05T22:11:49.6383892Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/c6a89b2d-59bc-44d0-9896-0f6e12d7b80a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c6a89b2d-59bc-44d0-9896-0f6e12d7b80a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to Azure Storage queues and queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2019-03-05T22:17:32.1779262Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/19e7f393-937e-4f77-808e-94535e297925\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"19e7f393-937e-4f77-808e-94535e297925\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Administrator Login\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View Virtual Machines in the portal and login as administrator\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Compute/virtualMachines/login/action\",\r\n \"Microsoft.Compute/virtualMachines/loginAsAdmin/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-02-09T18:36:13.3315744Z\",\r\n \"updatedOn\": \"2018-05-09T22:17:57.0514548Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/1c0163c0-47e6-4577-8991-ea5c82e286e4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1c0163c0-47e6-4577-8991-ea5c82e286e4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:12.6807454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine User Login\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View Virtual Machines in the portal and login as a regular user.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Compute/virtualMachines/login/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-02-09T18:36:13.3315744Z\",\r\n \"updatedOn\": \"2018-05-09T22:18:52.2780979Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/fb879df8-f326-4884-b1cf-06f3ad86be52\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb879df8-f326-4884-b1cf-06f3ad86be52\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they're connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.SqlVirtualMachine/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2020-02-03T19:38:21.2170228Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\",\r\n \"Microsoft.Web/hostingEnvironments/Join/Action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-03-26T18:17:34.5018645Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-05-12T23:10:23.6193952Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:46.9407288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Bus Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Service Bus resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceBus/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ServiceBus/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-16T21:33:36.7445745Z\",\r\n \"updatedOn\": \"2019-08-21T22:47:11.3982905Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"090c5cfd-751d-490a-894a-3ce6f1109419\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Event Hubs Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Event Hubs resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventHub/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-16T21:34:29.8656362Z\",\r\n \"updatedOn\": \"2019-08-21T22:58:57.7584645Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/f526a384-b230-433a-b45c-95f59c4a2dec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f526a384-b230-433a-b45c-95f59c4a2dec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Attestation Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read write or delete the attestation provider instance\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Attestation/attestationProviders/attestation/read\",\r\n \"Microsoft.Attestation/attestationProviders/attestation/write\",\r\n \"Microsoft.Attestation/attestationProviders/attestation/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-19T00:24:09.3354177Z\",\r\n \"updatedOn\": \"2019-05-10T17:59:06.3448436Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/bbf86eb8-f7b4-4cce-96e4-18cddf81d86e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bbf86eb8-f7b4-4cce-96e4-18cddf81d86e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"HDInsight Cluster Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read and modify HDInsight cluster configurations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HDInsight/*/read\",\r\n \"Microsoft.HDInsight/clusters/getGatewaySettings/action\",\r\n \"Microsoft.HDInsight/clusters/updateGatewaySettings/action\",\r\n \"Microsoft.HDInsight/clusters/configurations/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-20T00:03:01.7110732Z\",\r\n \"updatedOn\": \"2019-04-28T02:34:17.4679314Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/61ed4efc-fab3-44fd-b111-e24485cc132a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"61ed4efc-fab3-44fd-b111-e24485cc132a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Cosmos DB accounts, but not access data in them. Prevents access to account keys and connection strings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlyKeys/*\",\r\n \"Microsoft.DocumentDB/databaseAccounts/regenerateKey/*\",\r\n \"Microsoft.DocumentDB/databaseAccounts/listKeys/*\",\r\n \"Microsoft.DocumentDB/databaseAccounts/listConnectionStrings/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-26T17:01:17.0169383Z\",\r\n \"updatedOn\": \"2019-11-21T01:34:13.3746345Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/230815da-be43-4aae-9cb4-875f7bd000aa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"230815da-be43-4aae-9cb4-875f7bd000aa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Hybrid Server Resource Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read, write, delete, and re-onboard Hybrid servers to the Hybrid Resource Provider.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/*\",\r\n \"Microsoft.HybridCompute/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-29T21:39:32.3132923Z\",\r\n \"updatedOn\": \"2019-05-06T20:08:25.3180258Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/48b40c6e-82e0-4eb3-90d5-19e40f49b624\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"48b40c6e-82e0-4eb3-90d5-19e40f49b624\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Hybrid Server Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can onboard new Hybrid servers to the Hybrid Resource Provider.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-29T22:36:28.1873756Z\",\r\n \"updatedOn\": \"2019-05-06T20:09:17.9364269Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5d1e5ee4-7c68-4a71-ac8b-0739630a3dfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d1e5ee4-7c68-4a71-ac8b-0739630a3dfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Event Hubs Data Receiver\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows receive access to Azure Event Hubs resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/*/eventhubs/consumergroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventHub/*/receive/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:25:21.1056666Z\",\r\n \"updatedOn\": \"2019-08-21T23:00:32.6225396Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/a638d3c7-ab3a-418d-83e6-5f17a39d4fde\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a638d3c7-ab3a-418d-83e6-5f17a39d4fde\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Event Hubs Data Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows send access to Azure Event Hubs resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/*/eventhubs/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventHub/*/send/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:26:12.4673714Z\",\r\n \"updatedOn\": \"2019-08-21T23:02:26.6155679Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/2b629674-e913-4c01-ae53-ef4638d8f975\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2b629674-e913-4c01-ae53-ef4638d8f975\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Bus Data Receiver\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for receive access to Azure Service Bus resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceBus/*/queues/read\",\r\n \"Microsoft.ServiceBus/*/topics/read\",\r\n \"Microsoft.ServiceBus/*/topics/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ServiceBus/*/receive/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:43:01.6343849Z\",\r\n \"updatedOn\": \"2019-08-21T22:55:24.3423558Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/4f6d3b9b-027b-4f4c-9142-0e5a2a2247e0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4f6d3b9b-027b-4f4c-9142-0e5a2a2247e0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Bus Data Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for send access to Azure Service Bus resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceBus/*/queues/read\",\r\n \"Microsoft.ServiceBus/*/topics/read\",\r\n \"Microsoft.ServiceBus/*/topics/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ServiceBus/*/send/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:43:46.7046934Z\",\r\n \"updatedOn\": \"2019-08-21T22:57:12.2555683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/69a216fc-b8fb-44d8-bc22-1f3c2cd27a39\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"69a216fc-b8fb-44d8-bc22-1f3c2cd27a39\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage File Data SMB Share Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to Azure File Share over SMB\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-01T20:19:31.8620471Z\",\r\n \"updatedOn\": \"2019-08-07T01:00:41.9223409Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/aba4ae5f-2193-4029-9191-0cb91df5e314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"aba4ae5f-2193-4029-9191-0cb91df5e314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage File Data SMB Share Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write, and delete access in Azure Storage file shares over SMB\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/write\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-01T20:54:35.483431Z\",\r\n \"updatedOn\": \"2019-08-07T01:05:24.4309872Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/0c867c2a-1d8c-454a-a3db-ab2ea1bdc8bb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0c867c2a-1d8c-454a-a3db-ab2ea1bdc8bb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Private DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage private DNS zone resources, but not the virtual networks they are linked to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/privateDnsZones/*\",\r\n \"Microsoft.Network/privateDnsOperationResults/*\",\r\n \"Microsoft.Network/privateDnsOperationStatuses/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/join/action\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-10T19:31:15.5645518Z\",\r\n \"updatedOn\": \"2019-07-11T21:12:01.7260648Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b12aa53e-6015-4669-85d0-8515ebb3ae7f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b12aa53e-6015-4669-85d0-8515ebb3ae7f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Delegator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for generation of a user delegation key which can be used to sign SAS tokens\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-23T00:51:16.3376761Z\",\r\n \"updatedOn\": \"2019-07-23T01:14:31.8778475Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/db58b8e5-c6ad-4a2a-8342-4190687cbf4a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"db58b8e5-c6ad-4a2a-8342-4190687cbf4a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows user to use the applications in an application group.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DesktopVirtualization/applicationGroups/useApplications/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-07T00:29:03.8727621Z\",\r\n \"updatedOn\": \"2019-08-07T00:29:03.8727621Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/1d18fff3-a72a-46b5-b4a9-0b38a3cd7e63\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1d18fff3-a72a-46b5-b4a9-0b38a3cd7e63\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage File Data SMB Share Elevated Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write, delete and modify NTFS permission access in Azure Storage file shares over SMB\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/write\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/delete\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/modifypermissions/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-07T01:35:36.9935457Z\",\r\n \"updatedOn\": \"2019-08-07T01:35:36.9935457Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/a7264617-510b-434b-a828-9731dc254ea7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a7264617-510b-434b-a828-9731dc254ea7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Blueprint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage blueprint definitions, but not assign them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Blueprint/blueprints/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-14T21:55:16.9683949Z\",\r\n \"updatedOn\": \"2019-08-17T00:10:55.7494677Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/41077137-e803-4205-871c-5a86e6a753b4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41077137-e803-4205-871c-5a86e6a753b4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Blueprint Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can assign existing published blueprints, but cannot create new blueprints. NOTE: this only works if the assignment is done with a user-assigned managed identity.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Blueprint/blueprintAssignments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-14T21:56:48.7897875Z\",\r\n \"updatedOn\": \"2019-08-17T00:06:02.6509737Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/437d2ced-4a38-4302-8479-ed2bcb43d090\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"437d2ced-4a38-4302-8479-ed2bcb43d090\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Sentinel Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Sentinel Contributor\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SecurityInsights/*\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationsManagement/solutions/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.Insights/workbooks/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T16:39:03.8725173Z\",\r\n \"updatedOn\": \"2020-03-11T15:20:51.6768533Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/ab8e14d6-4a74-4a29-9ba8-549422addade\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ab8e14d6-4a74-4a29-9ba8-549422addade\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Sentinel Responder\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Sentinel Responder\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SecurityInsights/*/read\",\r\n \"Microsoft.SecurityInsights/dataConnectorsCheckRequirements/action\",\r\n \"Microsoft.SecurityInsights/cases/*\",\r\n \"Microsoft.SecurityInsights/incidents/*\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\r\n \"Microsoft.OperationsManagement/solutions/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.Insights/workbooks/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T16:54:07.6467264Z\",\r\n \"updatedOn\": \"2020-04-02T08:42:10.2864085Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/3e150937-b8fe-4cfb-8069-0eaf05ecd056\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3e150937-b8fe-4cfb-8069-0eaf05ecd056\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Sentinel Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Sentinel Reader\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SecurityInsights/*/read\",\r\n \"Microsoft.SecurityInsights/dataConnectorsCheckRequirements/action\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/LinkedServices/read\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\r\n \"Microsoft.OperationsManagement/solutions/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.Insights/workbooks/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T16:58:50.1132117Z\",\r\n \"updatedOn\": \"2020-04-02T08:34:51.7222706Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8d289c81-5878-46d4-8554-54e1e3d8b5cb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d289c81-5878-46d4-8554-54e1e3d8b5cb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Workbook Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read workbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"microsoft.insights/workbooks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T20:56:17.680814Z\",\r\n \"updatedOn\": \"2019-08-28T21:43:05.0202124Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b279062a-9be3-42a0-92ae-8b3cf002ec4d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b279062a-9be3-42a0-92ae-8b3cf002ec4d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Workbook Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can save shared workbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/workbooks/write\",\r\n \"Microsoft.Insights/workbooks/delete\",\r\n \"Microsoft.Insights/workbooks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T20:59:42.4820277Z\",\r\n \"updatedOn\": \"2020-01-22T00:05:20.938721Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/e8ddcd69-c73f-4f9f-9844-4100522f16ad\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e8ddcd69-c73f-4f9f-9844-4100522f16ad\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Policy Insights Data Writer (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to resource policies and write access to resource component policy events.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/policyassignments/read\",\r\n \"Microsoft.Authorization/policydefinitions/read\",\r\n \"Microsoft.Authorization/policysetdefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.PolicyInsights/checkDataPolicyCompliance/action\",\r\n \"Microsoft.PolicyInsights/policyEvents/logDataEvents/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-09-19T19:35:20.9504127Z\",\r\n \"updatedOn\": \"2019-09-19T19:37:02.5331596Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/66bb4e9e-b016-4a94-8249-4c0511c2be84\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"66bb4e9e-b016-4a94-8249-4c0511c2be84\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SignalR AccessKey Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read SignalR Service Access Keys\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SignalRService/*/read\",\r\n \"Microsoft.SignalRService/SignalR/listkeys/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-09-20T09:33:19.6236874Z\",\r\n \"updatedOn\": \"2019-09-20T09:33:19.6236874Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/04165923-9d83-45d5-8227-78b77b0a687e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"04165923-9d83-45d5-8227-78b77b0a687e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SignalR Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, Read, Update, and Delete SignalR service resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SignalRService/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-09-20T09:58:09.0009662Z\",\r\n \"updatedOn\": \"2019-09-20T09:58:09.0009662Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8cf5e20a-e4b2-4e9d-b3a1-5ceb692c2761\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8cf5e20a-e4b2-4e9d-b3a1-5ceb692c2761\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Connected Machine Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can onboard Azure Connected Machines.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-23T20:15:07.137287Z\",\r\n \"updatedOn\": \"2019-11-03T18:26:59.2060282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b64e21ea-ac4e-4cdf-9dc9-5b892992bee7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b64e21ea-ac4e-4cdf-9dc9-5b892992bee7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Connected Machine Resource Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read, write, delete and re-onboard Azure Connected Machines.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.HybridCompute/machines/delete\",\r\n \"Microsoft.HybridCompute/machines/reconnect/action\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.HybridCompute/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-23T20:24:59.1474607Z\",\r\n \"updatedOn\": \"2020-03-19T22:39:54.1226122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/cd570a14-e51a-42ad-bac8-bafd67325302\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cd570a14-e51a-42ad-bac8-bafd67325302\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Services Registration assignment Delete Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Managed Services Registration Assignment Delete Role allows the managing tenant users to delete the registration assignment assigned to their tenant.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedServices/registrationAssignments/read\",\r\n \"Microsoft.ManagedServices/registrationAssignments/delete\",\r\n \"Microsoft.ManagedServices/operationStatuses/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-23T22:33:33.1183469Z\",\r\n \"updatedOn\": \"2019-10-24T21:49:09.3875276Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/91c1777a-f3dc-4fae-b103-61d183457e46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"91c1777a-f3dc-4fae-b103-61d183457e46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Configuration Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows full access to App Configuration data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppConfiguration/configurationStores/*/read\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/write\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-25T18:41:40.1185063Z\",\r\n \"updatedOn\": \"2019-10-25T18:41:40.1185063Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Configuration Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to App Configuration data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppConfiguration/configurationStores/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-25T18:45:33.7975332Z\",\r\n \"updatedOn\": \"2019-10-25T18:45:33.7975332Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/516239f1-63e1-4d78-a4de-a74fb236a071\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"516239f1-63e1-4d78-a4de-a74fb236a071\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Kubernetes Cluster - Azure Arc Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role definition to authorize any user/service to create connectedClusters resource\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/Write\",\r\n \"Microsoft.Kubernetes/connectedClusters/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-11-18T17:00:02.2087147Z\",\r\n \"updatedOn\": \"2020-02-10T22:40:48.3317559Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/34e09817-6cbe-4d01-b1a2-e0eac5743d41\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"34e09817-6cbe-4d01-b1a2-e0eac5743d41\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Experimentation Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Experimentation Contributor\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experiment/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/emergencystop/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/write\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-13T00:08:08.6679591Z\",\r\n \"updatedOn\": \"2020-07-07T20:17:06.8223079Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a22b-edd6ce5c915c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f646f1b-fa08-80eb-a22b-edd6ce5c915c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services QnA Maker Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Let’s you read and test a KB only.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-17T18:26:12.3329439Z\",\r\n \"updatedOn\": \"2020-05-08T12:03:46.9266538Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/466ccd10-b268-4a11-b098-b4849f024126\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"466ccd10-b268-4a11-b098-b4849f024126\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services QnA Maker Editor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Let’s you create, edit, import and export a KB. You cannot publish or delete a KB.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/create/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/train/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/refreshkeys/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/operations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/create/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/train/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/refreshkeys/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/operations/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-17T18:27:30.6434556Z\",\r\n \"updatedOn\": \"2020-05-08T12:02:34.0065552Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/f4cc2bf9-21be-47a1-bdf1-5c5804381025\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f4cc2bf9-21be-47a1-bdf1-5c5804381025\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Experimentation Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Experimentation Administrator\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/admin/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/write\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/delete\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experimentadmin/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experiment/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/emergencystop/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/write\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/delete\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/admin/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-18T22:46:33.1116612Z\",\r\n \"updatedOn\": \"2020-04-22T20:10:20.1216929Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a33b-edd6ce5c915c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f646f1b-fa08-80eb-a33b-edd6ce5c915c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Remote Rendering Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides user with conversion, manage session, rendering and diagnostics capabilities for Azure Remote Rendering\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/convert/action\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/convert/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/convert/delete\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/action\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/delete\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/render/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/diagnostic/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-01-23T18:15:31.3450348Z\",\r\n \"updatedOn\": \"2020-01-23T18:15:31.3450348Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/3df8b902-2a6f-47c7-8cc5-360e9b272a7e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3df8b902-2a6f-47c7-8cc5-360e9b272a7e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Remote Rendering Client\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides user with manage session, rendering and diagnostics capabilities for Azure Remote Rendering.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/action\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/delete\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/render/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/diagnostic/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-01-23T18:32:52.7069824Z\",\r\n \"updatedOn\": \"2020-01-23T18:32:52.7069824Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/d39065c4-c120-43c9-ab0a-63eed9795f0a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d39065c4-c120-43c9-ab0a-63eed9795f0a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Application Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for creating managed application resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Solutions/applications/*\",\r\n \"Microsoft.Solutions/register/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/*\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-08T03:39:11.8933879Z\",\r\n \"updatedOn\": \"2020-03-23T02:12:30.0853051Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/641177b8-a67a-45b9-a033-47bc880bb21e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"641177b8-a67a-45b9-a033-47bc880bb21e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Assessment Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you push assessments to Security Center\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Security/assessments/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-13T08:23:47.7656161Z\",\r\n \"updatedOn\": \"2020-02-13T08:23:47.7656161Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/612c2aa1-cb24-443b-ac28-3ab7272de6f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"612c2aa1-cb24-443b-ac28-3ab7272de6f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Tag Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage tags on entities, without providing access to the entities themselves.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resources/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/tags/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-18T23:19:19.2977644Z\",\r\n \"updatedOn\": \"2020-02-19T00:04:58.9214962Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/4a9ae827-6dc8-4573-8ac7-8239d42aa03f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4a9ae827-6dc8-4573-8ac7-8239d42aa03f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Integration Service Environment Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows developers to create and update workflows, integration accounts and API connections in integration service environments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Logic/integrationServiceEnvironments/read\",\r\n \"Microsoft.Logic/integrationServiceEnvironments/join/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-20T21:09:00.5627875Z\",\r\n \"updatedOn\": \"2020-02-20T21:36:24.619073Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/c7aa55d3-1abb-444a-a5ca-5e51e485d6ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c7aa55d3-1abb-444a-a5ca-5e51e485d6ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Integration Service Environment Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage integration service environments, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Logic/integrationServiceEnvironments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-20T21:10:44.4008319Z\",\r\n \"updatedOn\": \"2020-02-20T21:41:56.7983599Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/a41e2c5b-bd99-4a07-88f4-9bf657a760b8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a41e2c5b-bd99-4a07-88f4-9bf657a760b8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Marketplace Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Administrator of marketplace resource provider\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Marketplace/privateStores/write\",\r\n \"Microsoft.Marketplace/privateStores/action\",\r\n \"Microsoft.Marketplace/privateStores/delete\",\r\n \"Microsoft.Marketplace/privateStores/offers/write\",\r\n \"Microsoft.Marketplace/privateStores/offers/action\",\r\n \"Microsoft.Marketplace/privateStores/offers/delete\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-26T14:19:50.9681015Z\",\r\n \"updatedOn\": \"2020-06-23T05:54:42.8370671Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/dd920d6d-f481-47f1-b461-f338c46b2d9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dd920d6d-f481-47f1-b461-f338c46b2d9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read and write Azure Kubernetes Service clusters\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/managedClusters/read\",\r\n \"Microsoft.ContainerService/managedClusters/write\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-27T19:27:15.073997Z\",\r\n \"updatedOn\": \"2020-02-28T02:34:14.5162305Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Digital Twins Reader (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only role for Digital Twins data-plane properties\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DigitalTwins/digitaltwins/read\",\r\n \"Microsoft.DigitalTwins/digitaltwins/relationships/read\",\r\n \"Microsoft.DigitalTwins/eventroutes/read\",\r\n \"Microsoft.DigitalTwins/models/read\",\r\n \"Microsoft.DigitalTwins/query/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-10T23:48:14.7057381Z\",\r\n \"updatedOn\": \"2020-07-01T17:50:50.2393244Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/d57506d4-4c8d-48b1-8587-93c323f6a5a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d57506d4-4c8d-48b1-8587-93c323f6a5a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Digital Twins Owner (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access role for Digital Twins data-plane\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DigitalTwins/eventroutes/*\",\r\n \"Microsoft.DigitalTwins/digitaltwins/*\",\r\n \"Microsoft.DigitalTwins/digitaltwins/commands/*\",\r\n \"Microsoft.DigitalTwins/digitaltwins/relationships/*\",\r\n \"Microsoft.DigitalTwins/models/*\",\r\n \"Microsoft.DigitalTwins/query/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-10T23:49:33.782193Z\",\r\n \"updatedOn\": \"2020-03-10T23:49:33.782193Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/bcd981a7-7f74-457b-83e1-cceb9e632ffe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bcd981a7-7f74-457b-83e1-cceb9e632ffe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Hierarchy Settings Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows users to edit and delete Hierarchy Settings\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/managementGroups/settings/write\",\r\n \"Microsoft.Management/managementGroups/settings/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-13T23:55:11.0212387Z\",\r\n \"updatedOn\": \"2020-03-13T23:58:46.9249866Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/350f8d15-c687-4448-8ae1-157740a3936d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"350f8d15-c687-4448-8ae1-157740a3936d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal full access to FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:35:04.4949547Z\",\r\n \"updatedOn\": \"2020-03-17T18:35:04.4949547Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5a1fc7df-4bf1-4951-a576-89034ee01acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5a1fc7df-4bf1-4951-a576-89034ee01acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Exporter\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal to read and export FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/read\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/export/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:45:01.9764073Z\",\r\n \"updatedOn\": \"2020-03-19T20:29:56.9958536Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/3db33094-8700-4567-8da5-1501d4e7e843\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3db33094-8700-4567-8da5-1501d4e7e843\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal to read FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:49:04.8353499Z\",\r\n \"updatedOn\": \"2020-03-17T18:49:04.8353499Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/4c8d0bbc-75d3-4935-991f-5f3c56d81508\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4c8d0bbc-75d3-4935-991f-5f3c56d81508\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal to read and write FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/hardDelete/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:55:35.2413335Z\",\r\n \"updatedOn\": \"2020-03-17T18:55:35.2413335Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/3f88fce4-5892-4214-ae73-ba5294559913\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3f88fce4-5892-4214-ae73-ba5294559913\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Experimentation Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Experimentation Reader\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-25T18:05:14.8375678Z\",\r\n \"updatedOn\": \"2020-04-22T21:20:46.2737555Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/49632ef5-d9ac-41f4-b8e7-bbe587fa74a1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"49632ef5-d9ac-41f4-b8e7-bbe587fa74a1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Object Understanding Account Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides user with ingestion capabilities for Azure Object Understanding.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/action\",\r\n \"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-04-22T19:15:09.0697923Z\",\r\n \"updatedOn\": \"2020-04-22T19:15:09.0697923Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/4dd61c23-6743-42fe-a388-d8bdd41cb745\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4dd61c23-6743-42fe-a388-d8bdd41cb745\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Maps Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read, write, and delete access to map related data from an Azure maps account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Maps/accounts/*/read\",\r\n \"Microsoft.Maps/accounts/*/write\",\r\n \"Microsoft.Maps/accounts/*/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-07T20:55:05.064541Z\",\r\n \"updatedOn\": \"2020-05-07T20:55:05.064541Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8f5e0ce6-4f7b-4dcf-bddf-e6f48634a204\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f5e0ce6-4f7b-4dcf-bddf-e6f48634a204\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access to the project, including the ability to view, create, edit, or delete projects.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-08T23:47:07.0779345Z\",\r\n \"updatedOn\": \"2020-05-08T23:47:07.0779345Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/c1ff6cc2-c111-46fe-8896-e0ef812ad9f3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c1ff6cc2-c111-46fe-8896-e0ef812ad9f3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Deployment\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Publish, unpublish or export models. Deployment can view the project but can’t update.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/iterations/publish/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/iterations/export/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/quicktest/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/classify/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/detect/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:31:05.952862Z\",\r\n \"updatedOn\": \"2020-05-09T01:31:05.952862Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5c4089e1-6d96-4d2f-b296-c1bc7137275f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5c4089e1-6d96-4d2f-b296-c1bc7137275f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Labeler\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View, edit training images and create, add, remove, or delete the image tags. Labelers can view the project but can’t update anything other than training images and tags.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/query/action\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/images/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/tags/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/images/suggested/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/tagsandregions/suggestions/action\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:33:20.8278896Z\",\r\n \"updatedOn\": \"2020-05-09T01:33:20.8278896Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/88424f51-ebe7-446f-bc41-7fa16989e96c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"88424f51-ebe7-446f-bc41-7fa16989e96c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only actions in the project. Readers can’t create or update the project.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/query/action\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:34:18.5328818Z\",\r\n \"updatedOn\": \"2020-05-09T01:34:18.5328818Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/93586559-c37d-4a6b-ba08-b9f0940c2d73\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"93586559-c37d-4a6b-ba08-b9f0940c2d73\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Trainer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View, edit projects and train the models, including the ability to publish, unpublish, export the models. Trainers can’t create or delete the project.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/action\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/delete\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/import/action\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:35:13.8147804Z\",\r\n \"updatedOn\": \"2020-05-09T01:35:13.8147804Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/0a5ae4ab-0d65-4eeb-be61-29fc9b54394b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a5ae4ab-0d65-4eeb-be61-29fc9b54394b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Administrator (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform any action on certificates, keys and secrets of a key vault, except manage permissions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:46.2349235Z\",\r\n \"updatedOn\": \"2020-05-20T19:40:18.9511304Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00482a5a-887f-4fb3-b363-3b7fe8e74483\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Crypto Officer (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform any action on the keys of a key vault, except manage permissions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/keys/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.0099249Z\",\r\n \"updatedOn\": \"2020-05-20T19:44:51.5886988Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/14b46e9e-c2b7-41b4-b07b-48a6ebf60603\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"14b46e9e-c2b7-41b4-b07b-48a6ebf60603\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Crypto User (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform cryptographic operations on keys and certificates.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/keys/read\",\r\n \"Microsoft.KeyVault/vaults/keys/update/action\",\r\n \"Microsoft.KeyVault/vaults/keys/backup/action\",\r\n \"Microsoft.KeyVault/vaults/keys/encrypt/action\",\r\n \"Microsoft.KeyVault/vaults/keys/decrypt/action\",\r\n \"Microsoft.KeyVault/vaults/keys/wrap/action\",\r\n \"Microsoft.KeyVault/vaults/keys/unwrap/action\",\r\n \"Microsoft.KeyVault/vaults/keys/sign/action\",\r\n \"Microsoft.KeyVault/vaults/keys/verify/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.0699268Z\",\r\n \"updatedOn\": \"2020-05-20T19:48:54.8672037Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/12338af0-0e69-4776-bea7-57ae8d297424\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"12338af0-0e69-4776-bea7-57ae8d297424\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Secrets Officer (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform any action on the secrets of a key vault, except manage permissions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/secrets/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.1449242Z\",\r\n \"updatedOn\": \"2020-05-20T19:51:40.033812Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b86a8fe4-44ce-4948-aee5-eccb2c155cd7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b86a8fe4-44ce-4948-aee5-eccb2c155cd7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Secrets User (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read secret contents.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/secrets/getSecret/action\",\r\n \"Microsoft.KeyVault/vaults/secrets/readMetadata/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.2049241Z\",\r\n \"updatedOn\": \"2020-05-20T19:53:53.9617292Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/4633458b-17de-408a-b874-0445c86b69e6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4633458b-17de-408a-b874-0445c86b69e6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Certificates Officer (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform any action on the certificates of a key vault, except manage permissions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/certificatecas/*\",\r\n \"Microsoft.KeyVault/vaults/certificates/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.2499247Z\",\r\n \"updatedOn\": \"2020-05-20T19:56:22.0363761Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/a4417e6f-fecd-4de8-b567-7b0420556985\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4417e6f-fecd-4de8-b567-7b0420556985\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Reader (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read metadata of key vaults and its certificates, keys and secrets. Cannot read sensitive values such as secret contents or key material.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/vaults/secrets/readMetadata/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.2949294Z\",\r\n \"updatedOn\": \"2020-05-20T19:58:55.0084184Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/21090545-7ca7-4776-b22c-e363652d74d2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"21090545-7ca7-4776-b22c-e363652d74d2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Crypto Service Encryption (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read metadata of keys and perform wrap/unwrap operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/keys/read\",\r\n \"Microsoft.KeyVault/vaults/keys/wrap/action\",\r\n \"Microsoft.KeyVault/vaults/keys/unwrap/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-20T20:55:19.239847Z\",\r\n \"updatedOn\": \"2020-05-20T20:55:19.239847Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/e147488a-f6f5-4113-8e2d-b22465e65bf6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e147488a-f6f5-4113-8e2d-b22465e65bf6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Viewer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view all resources in cluster/namespace, except secrets.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/*/read\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/secrets/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/clusterconfig.azure.com/azureclusteridentityrequests/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:51:12.8801199Z\",\r\n \"updatedOn\": \"2020-06-12T20:51:12.8801199Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/63f0a09d-1495-4db4-a681-037d84835eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"63f0a09d-1495-4db4-a681-037d84835eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you update everything in cluster/namespace, except (cluster)roles and (cluster)role bindings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/*/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/*/write\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/rbac.authorization.k8s.io/*/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/rbac.authorization.k8s.io/*/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/namespaces/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/resourcequotas/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/certificates.k8s.io/certificatesigningrequests/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/policy/podsecuritypolicies/write\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:53:50.6749823Z\",\r\n \"updatedOn\": \"2020-06-12T20:53:50.6749823Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/5b999177-9696-4545-85c7-50de3797e5a1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5b999177-9696-4545-85c7-50de3797e5a1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Cluster Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources in the cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:55:30.9910462Z\",\r\n \"updatedOn\": \"2020-06-12T20:55:30.9910462Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/8393591c-06b9-48a2-a542-1bd6b377f6a2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8393591c-06b9-48a2-a542-1bd6b377f6a2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources under cluster/namespace, except update or delete resource quotas and namespaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/resourcequotas/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/resourcequotas/delete\",\r\n \"Microsoft.Kubernetes/connectedClusters/namespaces/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/namespaces/delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:57:06.0391177Z\",\r\n \"updatedOn\": \"2020-06-12T20:57:06.0391177Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/dffb1e0c-446f-4dde-a09f-99eb5cc68b96\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dffb1e0c-446f-4dde-a09f-99eb5cc68b96\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Cluster Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources in the cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:47:24.4071415Z\",\r\n \"updatedOn\": \"2020-07-02T17:47:24.4071415Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources under cluster/namespace, except update or delete resource quotas and namespaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/resourcequotas/write\",\r\n \"Microsoft.ContainerService/managedClusters/resourcequotas/delete\",\r\n \"Microsoft.ContainerService/managedClusters/namespaces/write\",\r\n \"Microsoft.ContainerService/managedClusters/namespaces/delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:50:30.4020311Z\",\r\n \"updatedOn\": \"2020-07-02T17:50:30.4020311Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/3498e952-d568-435e-9b2c-8d77e338d7f7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3498e952-d568-435e-9b2c-8d77e338d7f7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view all resources in cluster/namespace, except secrets.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/*/read\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/rbac.authorization.k8s.io/*/read\",\r\n \"Microsoft.ContainerService/managedClusters/rbac.authorization.k8s.io/*/write\",\r\n \"Microsoft.ContainerService/managedClusters/secrets/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:53:05.5728294Z\",\r\n \"updatedOn\": \"2020-07-07T16:40:37.2744607Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/7f6c6a51-bcf8-42ba-9220-52d62157d7db\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f6c6a51-bcf8-42ba-9220-52d62157d7db\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you update everything in cluster/namespace, except resource quotas, namespaces, pod security policies, certificate signing requests, (cluster)roles and (cluster)role bindings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/*/read\",\r\n \"Microsoft.ContainerService/managedClusters/*/write\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/rbac.authorization.k8s.io/*/read\",\r\n \"Microsoft.ContainerService/managedClusters/rbac.authorization.k8s.io/*/write\",\r\n \"Microsoft.ContainerService/managedClusters/namespaces/write\",\r\n \"Microsoft.ContainerService/managedClusters/resourcequotas/write\",\r\n \"Microsoft.ContainerService/managedClusters/certificates.k8s.io/certificatesigningrequests/write\",\r\n \"Microsoft.ContainerService/managedClusters/policy/podsecuritypolicies/write\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:54:51.9644983Z\",\r\n \"updatedOn\": \"2020-07-02T17:54:51.9644983Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/a7ffa36f-339b-4b5c-8bdf-e2c188b2c0eb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a7ffa36f-339b-4b5c-8bdf-e2c188b2c0eb\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "//subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments/734de5f5-c680-41c0-8beb-67b98c3539d1?api-version=2020-04-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy9kYW9yb3pjb19idWdfcmVwcm8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy83MzRkZTVmNS1jNjgwLTQxYzAtOGJlYi02N2I5OGMzNTM5ZDE/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2a430ff5-158f-42c4-b3d7-e9f0b81dd641" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28928.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.12.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "eb2a3abb-5a94-483d-b34b-dbe8bf4aafd9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=Production; path=/; secure; HttpOnly; SameSite=None" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "cc3dc399-d9fb-4897-bd29-90c5fa0c59bc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200709T230033Z:cc3dc399-d9fb-4897-bd29-90c5fa0c59bc" - ], - "Date": [ - "Thu, 09 Jul 2020 23:00:32 GMT" - ], - "Content-Length": [ - "1084" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg\",\r\n \"condition\": \"@Resource[Microsoft.Storage/storageAccounts/blobServices/containers:ContainerName] StringEqualsIgnoreCase 'foo_storage_container'\",\r\n \"conditionVersion\": \"1.0\",\r\n \"createdOn\": \"2020-07-09T23:00:30.4997866Z\",\r\n \"updatedOn\": \"2020-07-09T23:00:30.4997866Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false,\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": \"This test should not fail\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments/734de5f5-c680-41c0-8beb-67b98c3539d1\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"734de5f5-c680-41c0-8beb-67b98c3539d1\"\r\n}", - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "4e5329a6-39ce-4e13-b12e-11b30f015986" - } -} \ No newline at end of file diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaWithV2Conditions.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaWithV2Conditions.json deleted file mode 100644 index 9421846bfd5d..000000000000 --- a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaWithV2Conditions.json +++ /dev/null @@ -1,518 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "//subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments/734de5f5-c680-41c0-8beb-67b98c3539d2?api-version=2020-04-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy9kYW9yb3pjb19idWdfcmVwcm8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy83MzRkZTVmNS1jNjgwLTQxYzAtOGJlYi02N2I5OGMzNTM5ZDI/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"canDelegate\": false,\r\n \"description\": \"This test should not fail\",\r\n \"condition\": \"@Resource[Microsoft.Storage/storageAccounts/blobServices/containers:Name] StringEqualsIgnoreCase 'foo_storage_container'\",\r\n \"conditionVersion\": \"2.0\"\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "074d02d5-7d2f-4d8f-8a19-4f41b299f4ff" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.12.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "538" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1725c752-4392-4e53-b9a7-8f81b948329d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=Production; path=/; SameSite=None; secure; HttpOnly" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "9866f579-83dd-49ea-bfdc-6b8d0568a571" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200717T010323Z:9866f579-83dd-49ea-bfdc-6b8d0568a571" - ], - "Date": [ - "Fri, 17 Jul 2020 01:03:23 GMT" - ], - "Content-Length": [ - "1041" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg\",\r\n \"condition\": \"@Resource[Microsoft.Storage/storageAccounts/blobServices/containers:Name] StringEqualsIgnoreCase 'foo_storage_container'\",\r\n \"conditionVersion\": \"2.0\",\r\n \"createdOn\": \"2020-07-17T01:03:22.7603328Z\",\r\n \"updatedOn\": \"2020-07-17T01:03:22.7603328Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false,\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": \"This test should not fail\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments/734de5f5-c680-41c0-8beb-67b98c3539d2\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"734de5f5-c680-41c0-8beb-67b98c3539d2\"\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7?api-version=2018-01-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zLzAzNTNlZTBhLTE5YWUtNDM4MC1iYTNkLWQ1NDc2N2M3NWQ1Yj9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7ddf49f5-ae80-42b0-8ad2-9261c3a0991b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.12.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "864abfb6-b157-41b7-8fed-01d0c985437d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=Production; path=/; secure; HttpOnly; SameSite=None" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "8a10a832-17e3-4831-858c-8dcccafbde24" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200717T010323Z:8a10a832-17e3-4831-858c-8dcccafbde24" - ], - "Date": [ - "Fri, 17 Jul 2020 01:03:23 GMT" - ], - "Content-Length": [ - "873" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Daoroz-Custom1\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"A role to use when testing various things\\nIt does not grant any real permissions, just the ability to read role definitions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-08T17:44:15.2525393Z\",\r\n \"updatedOn\": \"2020-07-08T17:44:15.2525393Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/395544B0-BF41-429D-921F-E1CA2252FCF4/getObjectsByObjectIds?api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"01072e9b-c4a1-4246-a756-031b529bbf66\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4b8197c0-ecd2-444d-98a1-02fc4905bae4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/3.5.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "116" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ocp-aad-diagnostics-server-name": [ - "EcjSyd8qeLRzv+zvYNP4NsM1iZg1KfnPtq+UxfEDZwU=" - ], - "request-id": [ - "26d63f6c-d0d7-49ca-9e98-95d6b428e9fc" - ], - "client-request-id": [ - "4b8197c0-ecd2-444d-98a1-02fc4905bae4" - ], - "x-ms-dirapi-data-contract-version": [ - "1.6" - ], - "ocp-aad-session-key": [ - "0-VH5eL2Pkiq2Z17Opabb7IPjM89KkwmTnfRo4w4b8FgvdtaQPYkKucxwL6HmRWTEOAgp5OwDV2-rglQKHdYqd-qPja9bSZYSxN20WzjlTw1-jy2E7SRnhHB9bmH6QLO.uCS_cYyiUukHl47eEtI89-b6SSFO9t6K95HTypRySr8" - ], - "x-aad-resource-unit": [ - "3" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Duration": [ - "830023" - ], - "Date": [ - "Fri, 17 Jul 2020 01:03:23 GMT" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "1511" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"ageGroup\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"consentProvidedForMinor\": null,\r\n \"country\": null,\r\n \"createdDateTime\": \"2020-07-06T23:49:47Z\",\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ddd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"dagoroz-bug-repro\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2020-07-06T23:49:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"dagoroz-bug-repro@rbacclitest.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/395544B0-BF41-429D-921F-E1CA2252FCF4/getObjectsByObjectIds?api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"01072e9b-c4a1-4246-a756-031b529bbf66\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1c94e1b1-39e4-40ee-8c1a-bd4328b186cf" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/3.5.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "116" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ocp-aad-diagnostics-server-name": [ - "MXtk2KRUe+Pbxfgq6k/d269y526UaR5dGfiehIUvvGs=" - ], - "request-id": [ - "876a2491-05b3-4768-8cfb-6edbf9972c78" - ], - "client-request-id": [ - "1c94e1b1-39e4-40ee-8c1a-bd4328b186cf" - ], - "x-ms-dirapi-data-contract-version": [ - "1.6" - ], - "ocp-aad-session-key": [ - "B9hwi8jT43uKjl_PQ3nWeBLwjlLIGPYWIHr_4hOvE9U0YlLZokL-H7UGSySU6XpH4sZmvjiP-OM4EM4rebFDV_INTz9ahWO4wHUsI4oL_JxWkUXYac5Z1szYEjdcpbWq.w7g2qlYybdquhayfKeistSp7UUU7wjitrW5pwCaR-u8" - ], - "x-aad-resource-unit": [ - "3" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Duration": [ - "342918" - ], - "Date": [ - "Fri, 17 Jul 2020 01:03:24 GMT" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "1511" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"ageGroup\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"consentProvidedForMinor\": null,\r\n \"country\": null,\r\n \"createdDateTime\": \"2020-07-06T23:49:47Z\",\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ddd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"dagoroz-bug-repro\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2020-07-06T23:49:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"dagoroz-bug-repro@rbacclitest.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "//subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'01072e9b-c4a1-4246-a756-031b529bbf66'&api-version=2020-04-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy9kYW9yb3pjb19idWdfcmVwcm8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cz8kZmlsdGVyPXByaW5jaXBhbElkJTIwZXElMjAnZTk1ZmE2MDgtM2Q0OS00NDM4LTlmNjAtMzVkODVkODRjYTE2JyZhcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2312bcda-c54c-4e2e-9367-b00777c0b5f8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.12.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "88da5f20-593c-4d6b-9e4c-76c6bb79f31d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=Production; path=/; SameSite=None; secure; HttpOnly" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "44efe63f-822f-4a7d-8f35-5abce8160a44" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200717T010324Z:44efe63f-822f-4a7d-8f35-5abce8160a44" - ], - "Date": [ - "Fri, 17 Jul 2020 01:03:23 GMT" - ], - "Content-Length": [ - "1087" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg\",\r\n \"condition\": \"@Resource[Microsoft.Storage/storageAccounts/blobServices/containers:Name] StringEqualsIgnoreCase 'foo_storage_container'\",\r\n \"conditionVersion\": \"2.0\",\r\n \"createdOn\": \"2020-07-17T01:03:22.9503355Z\",\r\n \"updatedOn\": \"2020-07-17T01:03:22.9503355Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false,\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": \"This test should not fail\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments/734de5f5-c680-41c0-8beb-67b98c3539d2\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"734de5f5-c680-41c0-8beb-67b98c3539d2\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "//subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleDefinitions?api-version=2018-01-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy9kYW9yb3pjb19idWdfcmVwcm8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVEZWZpbml0aW9ucz9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0d82081b-aa08-49f5-8c19-d8a6f587bdb6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.12.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c6ae4906-6383-47da-b645-94a353f24ac5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=Production; path=/; secure; HttpOnly; SameSite=None" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "85c98979-a99d-4e1f-a517-ee157a50067b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200717T010324Z:85c98979-a99d-4e1f-a517-ee157a50067b" - ], - "Date": [ - "Fri, 17 Jul 2020 01:03:23 GMT" - ], - "Content-Length": [ - "243873" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test Properties\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-13T18:17:20.8584392Z\",\r\n \"updatedOn\": \"2018-03-13T18:18:37.0952708Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/171d2453-29dc-42b4-84fc-3fd259eeaec3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"171d2453-29dc-42b4-84fc-3fd259eeaec3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test RD\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test RDDD\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-04-17T18:39:35.636177Z\",\r\n \"updatedOn\": \"2018-04-17T18:39:35.636177Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/98b036c8-8bf1-4f4a-8f50-a0a6dde0e734\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"98b036c8-8bf1-4f4a-8f50-a0a6dde0e734\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"test role and another testrole\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-22T23:58:52.7462995Z\",\r\n \"updatedOn\": \"2018-04-11T20:49:59.3331071Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a997608d-3f63-4eeb-b01b-1b3ae270cd6d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a997608d-3f63-4eeb-b01b-1b3ae270cd6d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testrole132\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-05-30T23:13:47.7513317Z\",\r\n \"updatedOn\": \"2018-05-30T23:13:47.7513317Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/3e66a0a6-a18a-4afc-a5cc-ec19e06012ae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3e66a0a6-a18a-4afc-a5cc-ec19e06012ae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testrole-novm\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets Fuse Developers access select objects they need.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/*/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/*/read\",\r\n \"Microsoft.Storage/storageAccounts/*/read\",\r\n \"Microsoft.Web/sites/*/read\",\r\n \"Microsoft.ServiceBus/namespaces/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-09-20T00:19:06.4239042Z\",\r\n \"updatedOn\": \"2018-09-20T00:19:06.4239042Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ef4af617-2f0e-412b-b30a-b7c848aa9098\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ef4af617-2f0e-412b-b30a-b7c848aa9098\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestContributor\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\",\r\n \"Microsoft.Blueprint/blueprintAssignments/write\",\r\n \"Microsoft.Blueprint/blueprintAssignments/delete\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-06T00:36:20.4923118Z\",\r\n \"updatedOn\": \"2019-04-10T19:14:27.67508Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-21T18:24:29.0508834Z\",\r\n \"updatedOn\": \"2019-08-21T18:32:39.5641976Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testbatchcontributor\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Batch/batchAccounts/read\",\r\n \"Microsoft.Batch/batchAccounts/*/read\",\r\n \"Microsoft.Batch/batchAccounts/applications/*\",\r\n \"Microsoft.Batch/batchAccounts/listkeys/action\",\r\n \"Microsoft.Batch/batchAccounts/pools/write\",\r\n \"Microsoft.Batch/batchAccounts/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-09-10T16:44:02.3947885Z\",\r\n \"updatedOn\": \"2019-09-10T16:44:02.3947885Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e2ab292b-812a-4306-9c73-df992f61649b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e2ab292b-812a-4306-9c73-df992f61649b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"No RD WRITE\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/roleDefinitions/write\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-01-28T00:57:45.1574464Z\",\r\n \"updatedOn\": \"2020-01-28T00:57:45.1574464Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d8bae860-743b-407c-8cf0-3aa1cbb8788c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d8bae860-743b-407c-8cf0-3aa1cbb8788c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"No RD READ\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-01-29T00:27:29.0693475Z\",\r\n \"updatedOn\": \"2020-01-29T00:27:29.0693475Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/724dd060-7e51-4f7b-a749-cd927f345b68\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"724dd060-7e51-4f7b-a749-cd927f345b68\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"asd\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Synapse/register/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-19T20:09:21.8617073Z\",\r\n \"updatedOn\": \"2020-02-19T20:09:21.8617073Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/254d9483-0229-40a3-a457-f6cbb5449be6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"254d9483-0229-40a3-a457-f6cbb5449be6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"teste\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"setesrt\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"microsoft.operationalinsights/register/action\",\r\n \"microsoft.operationalinsights/unregister/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-27T01:22:58.9649766Z\",\r\n \"updatedOn\": \"2020-02-27T01:22:58.9649766Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7da825e5-3464-48e4-8646-fab69f7de46c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7da825e5-3464-48e4-8646-fab69f7de46c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"asda\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"asdasd\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Synapse/checkNameAvailability/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-27T19:33:25.1899025Z\",\r\n \"updatedOn\": \"2020-02-27T19:33:25.1899025Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7cab0ec5-99cb-466f-937e-26806c98f0fb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7cab0ec5-99cb-466f-937e-26806c98f0fb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CloneIt\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T03:08:21.1526749Z\",\r\n \"updatedOn\": \"2020-03-17T03:08:21.1526749Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acfb9fda-b179-4290-8d82-609ddb722ca0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acfb9fda-b179-4290-8d82-609ddb722ca0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RyanTestMG\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/providers/Microsoft.Management/managementGroups/thisdoesntexist\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-18T23:23:29.8420866Z\",\r\n \"updatedOn\": \"2020-03-18T23:23:29.8420866Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f5fde758-46cb-4388-8e2d-5dfb6f9c5e26\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f5fde758-46cb-4388-8e2d-5dfb6f9c5e26\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"27MarchCR Clone\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [\r\n \"Microsoft.ClassicCompute/virtualMachines/capture/action\",\r\n \"Microsoft.ClassicCompute/virtualMachines/start/action\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-27T03:30:41.2204287Z\",\r\n \"updatedOn\": \"2020-05-25T03:59:50.7212707Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/688cffa8-c3ad-434d-95bf-4feef208c51f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"688cffa8-c3ad-434d-95bf-4feef208c51f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"dfg\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"84codes.CloudAMQP/updateCommunicationPreference/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-04-15T17:01:23.582234Z\",\r\n \"updatedOn\": \"2020-04-15T17:01:23.582234Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/666436ac-d087-4028-8caa-3d56838acc54\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"666436ac-d087-4028-8caa-3d56838acc54\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testest\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"84codes.CloudAMQP/updateCommunicationPreference/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-04-15T17:28:05.771688Z\",\r\n \"updatedOn\": \"2020-04-15T17:28:05.771688Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/778f1528-7abc-42be-a89f-d72860782919\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"778f1528-7abc-42be-a89f-d72860782919\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testewasdasd\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"84codes.CloudAMQP/updateCommunicationPreference/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-04-16T19:16:54.3681577Z\",\r\n \"updatedOn\": \"2020-04-16T19:16:54.3681577Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/351dc63d-3eec-4697-bf6b-ebeb52629640\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"351dc63d-3eec-4697-bf6b-ebeb52629640\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"asdsad\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Synapse/checkNameAvailability/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-04-23T15:27:01.6742334Z\",\r\n \"updatedOn\": \"2020-04-23T15:27:01.6742334Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2b516d2c-4b58-45d7-8c2b-55f2e936d21a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2b516d2c-4b58-45d7-8c2b-55f2e936d21a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testrole1234\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T09:19:08.0056403Z\",\r\n \"updatedOn\": \"2020-06-09T09:19:08.0056403Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f1ae5ae6-80f8-4b6a-9962-96e885ed2fdf\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f1ae5ae6-80f8-4b6a-9962-96e885ed2fdf\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customreader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T21:33:19.2160171Z\",\r\n \"updatedOn\": \"2020-06-09T21:33:19.2160171Z\",\r\n \"createdBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\",\r\n \"updatedBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e9bfc956-b9d6-4931-8df6-d8e759dfb7bd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e9bfc956-b9d6-4931-8df6-d8e759dfb7bd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customabc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T21:37:45.502473Z\",\r\n \"updatedOn\": \"2020-06-09T21:37:45.502473Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/1d3c667d-d849-4444-a61e-910a34a5fbc3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1d3c667d-d849-4444-a61e-910a34a5fbc3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customroletest123\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:01:04.3209554Z\",\r\n \"updatedOn\": \"2020-06-09T22:01:04.3209554Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0a301507-673a-47b2-a629-7fa8ca72af3f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a301507-673a-47b2-a629-7fa8ca72af3f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customroleabc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:09:16.2626975Z\",\r\n \"updatedOn\": \"2020-06-09T22:09:16.2626975Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/bc1ff923-7253-46cd-9120-6ad03ef2d6e6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bc1ff923-7253-46cd-9120-6ad03ef2d6e6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customreader123\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:12:24.0862728Z\",\r\n \"updatedOn\": \"2020-06-09T22:12:24.0862728Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8700af82-f42f-4393-a5f2-eee83964a9aa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8700af82-f42f-4393-a5f2-eee83964a9aa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"test123abc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:14:57.6218091Z\",\r\n \"updatedOn\": \"2020-06-09T22:14:57.6218091Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/eef4fe94-b510-4514-8669-0548903f3495\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"eef4fe94-b510-4514-8669-0548903f3495\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customroleabc123\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:37:36.1262398Z\",\r\n \"updatedOn\": \"2020-06-09T22:37:36.1262398Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fd01a54f-fd90-46ec-b525-a636a28df51f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fd01a54f-fd90-46ec-b525-a636a28df51f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testcustomroleabc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:42:30.4994673Z\",\r\n \"updatedOn\": \"2020-06-09T22:42:30.4994673Z\",\r\n \"createdBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\",\r\n \"updatedBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fecfef36-f4fc-4e4b-93ff-7db5732a444d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fecfef36-f4fc-4e4b-93ff-7db5732a444d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"zzcustomrolezz\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:52:41.6786191Z\",\r\n \"updatedOn\": \"2020-06-09T22:52:41.6786191Z\",\r\n \"createdBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\",\r\n \"updatedBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dc307f0a-46a2-4260-bbca-66b3a4448a8d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dc307f0a-46a2-4260-bbca-66b3a4448a8d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testCustomRole\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:55:26.5124865Z\",\r\n \"updatedOn\": \"2020-06-09T22:55:26.5124865Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b768931c-5d00-4572-a731-431c6189f0da\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b768931c-5d00-4572-a731-431c6189f0da\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"bbCustomRole\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T23:42:41.0368856Z\",\r\n \"updatedOn\": \"2020-06-09T23:42:41.0368856Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae101df6-14ae-4d66-bbe0-a469a964f90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae101df6-14ae-4d66-bbe0-a469a964f90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"zzCustomRole\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T23:55:14.2992167Z\",\r\n \"updatedOn\": \"2020-06-09T23:55:14.2992167Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/bec73b96-f2cf-436c-8917-d547da43a149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bec73b96-f2cf-436c-8917-d547da43a149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customrole123\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-10T01:13:23.0150344Z\",\r\n \"updatedOn\": \"2020-06-10T01:13:23.0150344Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/32d6d31d-e61a-41ec-8386-5dc64b3bc204\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"32d6d31d-e61a-41ec-8386-5dc64b3bc204\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"No RA READ\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-17T06:31:33.3927723Z\",\r\n \"updatedOn\": \"2020-06-17T06:31:33.3927723Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f2b4c36-69f1-4a45-8cda-7d5a9b690408\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f2b4c36-69f1-4a45-8cda-7d5a9b690408\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"No RA WRITE\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-17T06:41:55.5369299Z\",\r\n \"updatedOn\": \"2020-06-17T06:41:55.5369299Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a43bed91-a7af-418a-8f07-e135d151b5b8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a43bed91-a7af-418a-8f07-e135d151b5b8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Another tests role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-01T23:09:24.5638411Z\",\r\n \"updatedOn\": \"2020-07-01T23:09:24.5638411Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0a0e83bc-50b9-4c4d-b2c2-3f41e1a8baf2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a0e83bc-50b9-4c4d-b2c2-3f41e1a8baf2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Daoroz-Custom1\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"A role to use when testing various things\\nIt does not grant any real permissions, just the ability to read role definitions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-08T17:44:15.2525393Z\",\r\n \"updatedOn\": \"2020-07-08T17:44:15.2525393Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Daoroz-Custom2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"A role to be used when testing various things\\nIt does not grant any real permissions, just the ability to read role definitions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-08T17:51:15.4187811Z\",\r\n \"updatedOn\": \"2020-07-08T17:51:15.4187811Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/98ee936c-393c-4f03-81a8-6eccfd82d96e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"98ee936c-393c-4f03-81a8-6eccfd82d96e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Role at MG Root\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role at MG Root\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/1273adef-00a3-4086-a51a-dbcce1857d36\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-24T19:26:02.777463Z\",\r\n \"updatedOn\": \"2019-07-24T19:26:02.777463Z\",\r\n \"createdBy\": \"cdab7ada-d740-47da-a823-ec29c9a68482\",\r\n \"updatedBy\": \"cdab7ada-d740-47da-a823-ec29c9a68482\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa3bf1c6-5da9-47c7-976e-1007e1bc385a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa3bf1c6-5da9-47c7-976e-1007e1bc385a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Role Manish reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Manish reader\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/1273adef-00a3-4086-a51a-dbcce1857d36\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-07T18:53:42.1390099Z\",\r\n \"updatedOn\": \"2020-05-08T01:15:45.1587505Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"e8df956a-9463-408a-a9be-cf5f46d09b37\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4edfca53-b078-483f-9d0e-c83e4544e854\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4edfca53-b078-483f-9d0e-c83e4544e854\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrPush\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr push\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/pull/read\",\r\n \"Microsoft.ContainerRegistry/registries/push/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-29T17:52:32.5201177Z\",\r\n \"updatedOn\": \"2018-11-13T23:26:19.9749249Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8311e382-0749-4cb8-b61a-304f252e45ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8650193Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:17.7502607Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrPull\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr pull\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/pull/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-22T19:01:56.8227182Z\",\r\n \"updatedOn\": \"2018-11-13T23:22:03.2302457Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f951dda-4ed3-4680-a7ca-43fe172d538d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrImageSigner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr image signer\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/sign/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-15T23:23:08.4038322Z\",\r\n \"updatedOn\": \"2018-10-29T19:06:24.9004422Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6cef56e8-d556-48e5-a04f-b8e64114680f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6cef56e8-d556-48e5-a04f-b8e64114680f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrDelete\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr delete\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/artifacts/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-11T20:19:31.6682804Z\",\r\n \"updatedOn\": \"2019-03-11T20:24:38.9845104Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c2f4ef07-c644-48eb-af81-4b1b4947fb11\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c2f4ef07-c644-48eb-af81-4b1b4947fb11\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrQuarantineReader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr quarantine data reader\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/quarantine/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-16T00:27:39.9596835Z\",\r\n \"updatedOn\": \"2019-10-22T00:12:39.702093Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cdda3590-29a3-44f6-95f2-9f980659eb04\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cdda3590-29a3-44f6-95f2-9f980659eb04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrQuarantineWriter\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr quarantine data writer\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/quarantine/read\",\r\n \"Microsoft.ContainerRegistry/registries/quarantine/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-16T00:26:37.587182Z\",\r\n \"updatedOn\": \"2019-10-22T00:10:29.8202164Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c8d4ff99-41c3-41a8-9f60-21dfdad59608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c8d4ff99-41c3-41a8-9f60-21dfdad59608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metricAlerts/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2020-02-12T12:45:46.9200472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Attestation Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read the attestation provider properties\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Attestation/attestationProviders/attestation/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-25T19:42:59.157671Z\",\r\n \"updatedOn\": \"2019-05-10T17:52:38.9036953Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"SYSTEM\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fd1bd22b-8476-40bc-a0bc-69b95687b9f3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fd1bd22b-8476-40bc-a0bc-69b95687b9f3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/hybridRunbookWorkerGroups/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobs/output/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2018-08-14T22:08:48.1147327Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/hybridRunbookWorkerGroups/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/linkedWorkspace/read\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Automation/automationAccounts/jobs/output/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2018-05-10T20:12:39.69782Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Avere Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can create and manage an Avere vFXT cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/proximityPlacementGroups/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/disks/*\",\r\n \"Microsoft.Network/*/read\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/*/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/resources/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-18T20:00:58.9207889Z\",\r\n \"updatedOn\": \"2020-05-27T06:48:54.4896867Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4f8fab4f-1852-4a58-a46a-8eaf358af14a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4f8fab4f-1852-4a58-a46a-8eaf358af14a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Avere Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Used by the Avere vFXT cluster to manage the cluster\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-18T20:02:38.3399857Z\",\r\n \"updatedOn\": \"2019-03-29T00:26:37.9205875Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c025889f-8102-4ebf-b32c-fc0c6f0c6bd9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c025889f-8102-4ebf-b32c-fc0c6f0c6bd9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Cluster Admin Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster admin credential action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/managedClusters/listClusterAdminCredential/action\",\r\n \"Microsoft.ContainerService/managedClusters/accessProfiles/listCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-15T21:38:18.5953853Z\",\r\n \"updatedOn\": \"2020-02-07T02:49:24.9715273Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0ab0b1a8-8aac-4efd-b8c2-3ee1fb270be8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0ab0b1a8-8aac-4efd-b8c2-3ee1fb270be8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Cluster User Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster user credential action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-15T22:04:53.4037241Z\",\r\n \"updatedOn\": \"2020-02-11T23:37:03.589924Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4abbcc35-e782-43d8-92c5-2d3f1bd2253f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4abbcc35-e782-43d8-92c5-2d3f1bd2253f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Maps Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read map related data from an Azure maps account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Maps/accounts/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-05T19:47:03.472307Z\",\r\n \"updatedOn\": \"2020-04-28T22:33:41.7780319Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/423170ca-a8f6-4b0f-8487-9e4eb8f49bfa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"423170ca-a8f6-4b0f-8487-9e4eb8f49bfa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/edgeSubscriptions/read\",\r\n \"Microsoft.AzureStack/registrations/products/*/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2020-06-29T22:11:17.0759529Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\r\n \"Microsoft.RecoveryServices/locations/backupStatus/action\",\r\n \"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\r\n \"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\r\n \"Microsoft.RecoveryServices/operations/read\",\r\n \"Microsoft.RecoveryServices/locations/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2019-12-17T10:44:35.8361149Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.CostManagement/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2018-09-26T17:45:09.2227236Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/inquire/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\",\r\n \"Microsoft.RecoveryServices/locations/backupStatus/action\",\r\n \"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\r\n \"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\r\n \"Microsoft.RecoveryServices/operations/read\",\r\n \"Microsoft.RecoveryServices/locations/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2019-12-17T11:02:43.9998686Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupstorageconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\",\r\n \"Microsoft.RecoveryServices/locations/backupStatus/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\r\n \"Microsoft.RecoveryServices/operations/read\",\r\n \"Microsoft.RecoveryServices/locations/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2020-03-04T12:12:04.321311Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Blockchain Member Node Access (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for access to Blockchain Member nodes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Blockchain/blockchainMembers/transactionNodes/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Blockchain/blockchainMembers/transactionNodes/connect/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T10:33:01.9604839Z\",\r\n \"updatedOn\": \"2018-12-21T10:33:58.0042162Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/31a002a1-acaf-453e-8a5b-297c9ca1ea24\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"31a002a1-acaf-453e-8a5b-297c9ca1ea24\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:42:18.897821Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:39.7576926Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:30.8964641Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:42:23.2893077Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-04-25T00:37:56.5416086Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:43.0770473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read and list keys of Cognitive Services.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/listkeys/action\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Insights/diagnosticSettings/read\",\r\n \"Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.Insights/metricdefinitions/read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-08T23:23:43.7701274Z\",\r\n \"updatedOn\": \"2019-02-13T19:53:56.7209248Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a97b65f3-24c7-4388-baec-2e87135dc908\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Data Reader (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read Cognitive Services data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-02-13T20:02:12.6849986Z\",\r\n \"updatedOn\": \"2019-02-13T22:53:55.167529Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b59867f0-fa02-499b-be73-45a86b5b3e1c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b59867f0-fa02-499b-be73-45a86b5b3e1c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create, read, update, delete and manage keys of Cognitive Services.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.CognitiveServices/*\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.Insights/metricdefinitions/read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-08T23:18:39.2257848Z\",\r\n \"updatedOn\": \"2018-09-14T00:53:37.7546808Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CosmosBackupOperator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can submit restore request for a Cosmos DB database or a container for an account\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DocumentDB/databaseAccounts/backup/action\",\r\n \"Microsoft.DocumentDB/databaseAccounts/restore/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-07T19:47:14.965156Z\",\r\n \"updatedOn\": \"2018-12-07T19:52:21.9969834Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/db7b14f2-5adf-42da-9f96-f2ee17bab5cb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"db7b14f2-5adf-42da-9f96-f2ee17bab5cb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\",\r\n \"Microsoft.Blueprint/blueprintAssignments/write\",\r\n \"Microsoft.Blueprint/blueprintAssignments/delete\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:38.458061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Insights/MetricDefinitions/read\",\r\n \"Microsoft.Insights/Metrics/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2018-02-21T01:36:59.6186231Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cost Management Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view costs and manage cost configuration (e.g. budgets, exports)\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Consumption/*\",\r\n \"Microsoft.CostManagement/*\",\r\n \"Microsoft.Billing/billingPeriods/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Advisor/configurations/read\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Management/managementGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-14T16:09:22.8834827Z\",\r\n \"updatedOn\": \"2019-06-25T21:25:06.8686379Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/434105ed-43f6-45c7-a02f-909b2ba83430\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"434105ed-43f6-45c7-a02f-909b2ba83430\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cost Management Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view cost data and configuration (e.g. budgets, exports)\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.CostManagement/*/read\",\r\n \"Microsoft.Billing/billingPeriods/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Advisor/configurations/read\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Management/managementGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-14T16:09:22.8834827Z\",\r\n \"updatedOn\": \"2019-06-25T20:59:11.5762937Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/72fafb9e-0641-4937-9268-a91bfd8191a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"72fafb9e-0641-4937-9268-a91bfd8191a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Box Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything under Data Box Service except giving access to others.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Databox/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-07-27T08:28:42.714021Z\",\r\n \"updatedOn\": \"2018-07-27T08:36:56.3827309Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/add466c9-e687-43fc-8d98-dfcf8d720be5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"add466c9-e687-43fc-8d98-dfcf8d720be5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Box Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Data Box Service except creating order or editing order details and giving access to others.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Databox/*/read\",\r\n \"Microsoft.Databox/jobs/listsecrets/action\",\r\n \"Microsoft.Databox/jobs/listcredentials/action\",\r\n \"Microsoft.Databox/locations/availableSkus/action\",\r\n \"Microsoft.Databox/locations/validateInputs/action\",\r\n \"Microsoft.Databox/locations/regionConfiguration/action\",\r\n \"Microsoft.Databox/locations/validateAddress/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-07-27T08:26:21.9284772Z\",\r\n \"updatedOn\": \"2020-01-24T05:39:52.6143537Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/028f4ed7-e2a9-465e-a8f4-9c0ffdfdc027\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"028f4ed7-e2a9-465e-a8f4-9c0ffdfdc027\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.DataFactory/factories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.EventGrid/eventSubscriptions/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2020-02-14T19:49:21.5789216Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Purger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can purge analytics data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Insights/components/purge/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/purge/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-04-30T22:39:49.61677Z\",\r\n \"updatedOn\": \"2018-04-30T22:44:15.1171162Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/150f5e0c-0603-4f03-8c7f-cf70034c4e90\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"150f5e0c-0603-4f03-8c7f-cf70034c4e90\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/ensureCurrentUserProfile/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.DevTestLab/labs/virtualmachines/listApplicableSchedules/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/getRdpFileContents/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2019-05-08T11:27:34.8855476Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-11-21T01:38:32.0948484Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid EventSubscription Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage EventGrid event subscription operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/*\",\r\n \"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-08T23:27:28.3130743Z\",\r\n \"updatedOn\": \"2019-01-08T00:06:34.3543171Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/428e0ff0-5e57-4d9c-a221-2c70d0e0a443\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"428e0ff0-5e57-4d9c-a221-2c70d0e0a443\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid EventSubscription Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read EventGrid event subscriptions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-09T17:29:28.1417894Z\",\r\n \"updatedOn\": \"2019-01-08T00:05:40.2884365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2414bbcf-6497-4faf-8c65-045460748405\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2414bbcf-6497-4faf-8c65-045460748405\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Graph Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage all aspects of the Enterprise Graph - Ontology, Schema mapping, Conflation and Conversational AI and Ingestions\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/conflation/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/conflation/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/sourceschema/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/sourceschema/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/intentclassification/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/intentclassification/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ingestion/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ingestion/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ontology/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ontology/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/delete\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-02-23T21:07:22.5844236Z\",\r\n \"updatedOn\": \"2019-02-28T20:21:18.9318073Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b60367af-1334-4454-b71e-769d9a4f83d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b60367af-1334-4454-b71e-769d9a4f83d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"HDInsight Domain Services Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can Read, Create, Modify and Delete Domain Services related operations needed for HDInsight Enterprise Security Package\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AAD/*/read\",\r\n \"Microsoft.AAD/domainServices/*/read\",\r\n \"Microsoft.AAD/domainServices/oucontainer/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-09-12T22:42:51.7451109Z\",\r\n \"updatedOn\": \"2018-09-12T23:06:45.7641599Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d8d5a11-05d3-4bda-a417-a08778121c7c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d8d5a11-05d3-4bda-a417-a08778121c7c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:32:00.9996357Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\",\r\n \"Microsoft.KeyVault/hsmPools/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-25T17:08:28.5184971Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:49.5373075Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Knowledge Consumer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Knowledge Read permission to consume Enterprise Graph Knowledge using entity search and graph query\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-02-23T21:23:31.4037552Z\",\r\n \"updatedOn\": \"2019-02-28T20:25:00.7369384Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee361c5d-f7b5-4119-b4b6-892157c8f64c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee361c5d-f7b5-4119-b4b6-892157c8f64c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Lab Creator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create new labs under your Azure Lab Accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.LabServices/labAccounts/*/read\",\r\n \"Microsoft.LabServices/labAccounts/createLab/action\",\r\n \"Microsoft.LabServices/labAccounts/getPricingAndAvailability/action\",\r\n \"Microsoft.LabServices/labAccounts/getRestrictionsAndUsage/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-01-18T23:38:58.1036141Z\",\r\n \"updatedOn\": \"2020-07-10T17:45:43.2289715Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b97fb8bc-a8b2-4522-a38b-dd33c7e65ead\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b97fb8bc-a8b2-4522-a38b-dd33c7e65ead\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2018-01-30T18:08:26.0438523Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2020-03-26T22:57:55.366783Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/metricAlerts/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/customApis/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2019-10-15T04:28:56.3265986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metricAlerts/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/customApis/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2019-10-15T04:31:27.7685427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Application Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read and perform actions on Managed Application resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Solutions/applications/read\",\r\n \"Microsoft.Solutions/*/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-07-27T00:59:33.7988813Z\",\r\n \"updatedOn\": \"2019-02-20T01:09:55.1593079Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c7393b34-138c-406f-901b-d8cf2b17e6ae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c7393b34-138c-406f-901b-d8cf2b17e6ae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Applications Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read resources in a managed app and request JIT access.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Solutions/jitRequests/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-09-06T00:33:58.3651522Z\",\r\n \"updatedOn\": \"2018-09-06T00:33:58.3651522Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b9331d33-8a36-4f8c-b097-4f54124fdb44\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b9331d33-8a36-4f8c-b097-4f54124fdb44\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Identity Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read and Assign User Assigned Identity\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/*/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/*/assign/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-14T19:52:04.3924594Z\",\r\n \"updatedOn\": \"2017-12-14T22:16:00.1483256Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f1a07417-d97a-45cb-824c-7a7467783830\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Identity Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, Read, Update, and Delete User Assigned Identity\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-14T19:53:42.8804692Z\",\r\n \"updatedOn\": \"2019-06-20T21:51:27.0850433Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e40ec5ca-96e0-45a2-b4ff-59039f2c2b59\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e40ec5ca-96e0-45a2-b4ff-59039f2c2b59\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Management Group Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Management Group Contributor Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/managementGroups/delete\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Management/managementGroups/subscriptions/delete\",\r\n \"Microsoft.Management/managementGroups/subscriptions/write\",\r\n \"Microsoft.Management/managementGroups/write\",\r\n \"Microsoft.Management/managementGroups/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-06-22T00:28:29.0523964Z\",\r\n \"updatedOn\": \"2020-07-06T18:13:34.9045672Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Management Group Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Management Group Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Management/managementGroups/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-06-22T00:31:03.4295347Z\",\r\n \"updatedOn\": \"2020-07-06T18:09:27.1441705Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ac63b705-f282-497d-ac71-919bf39d939d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ac63b705-f282-497d-ac71-919bf39d939d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Metrics Publisher\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enables publishing metrics against Azure resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Insights/Metrics/Write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-14T00:36:16.5610279Z\",\r\n \"updatedOn\": \"2018-08-14T00:37:18.1465065Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3913510d-42f4-4e42-8a64-420c390055eb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2018-01-30T18:08:27.262625Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.AlertsManagement/alerts/*\",\r\n \"Microsoft.AlertsManagement/alertsSummary/*\",\r\n \"Microsoft.Insights/actiongroups/*\",\r\n \"Microsoft.Insights/activityLogAlerts/*\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/metricalerts/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/scheduledqueryrules/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.Insights/workbooks/*\",\r\n \"Microsoft.Insights/privateLinkScopes/*\",\r\n \"Microsoft.Insights/privateLinkScopeOperationStatuses/*\",\r\n \"Microsoft.OperationalInsights/workspaces/write\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.WorkloadMonitor/monitors/*\",\r\n \"Microsoft.WorkloadMonitor/notificationSettings/*\",\r\n \"Microsoft.AlertsManagement/smartDetectorAlertRules/*\",\r\n \"Microsoft.AlertsManagement/actionRules/*\",\r\n \"Microsoft.AlertsManagement/smartGroups/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2020-04-19T16:03:16.7692305Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:42:16.2033878Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:32.2101122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/register/action\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2020-07-16T00:20:31.8240854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader and Data Access\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything but will not let you delete or create a storage account or contained resource. It will also allow read/write access to all data contained in a storage account via access to storage account keys.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/ListAccountSas/action\",\r\n \"Microsoft.Storage/storageAccounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-27T23:20:46.1498906Z\",\r\n \"updatedOn\": \"2019-04-04T23:41:26.1056261Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c12c1c16-33a1-487b-954d-41c89c60f349\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c12c1c16-33a1-487b-954d-41c89c60f349\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Users with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Authorization/policysetdefinitions/*\",\r\n \"Microsoft.PolicyInsights/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2019-11-20T20:26:12.8811365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:42:24.8360756Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:42:21.8687229Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2019-03-12T21:12:48.635016Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager (Legacy)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This is a legacy role. Please use Security Administrator instead\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2018-03-08T18:18:48.618362Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Management/managementGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2018-06-28T17:27:23.106561Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Spatial Anchors Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage spatial anchors in your account, but not delete them\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/create/action\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T17:57:41.1420864Z\",\r\n \"updatedOn\": \"2019-02-13T06:13:39.8686435Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8bbe83f1-e2a6-4df7-8cb4-4e04d4e5c827\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8bbe83f1-e2a6-4df7-8cb4-4e04d4e5c827\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery service except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationOperationStatus/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2019-11-07T06:13:49.0760858Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/switchprotection/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2019-08-28T12:00:57.4472826Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Spatial Anchors Account Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you locate and read properties of spatial anchors in your account\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T17:57:42.9271004Z\",\r\n \"updatedOn\": \"2019-02-13T06:16:15.3170663Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d51204f-eb77-4b1c-b86a-2ec626c49413\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d51204f-eb77-4b1c-b86a-2ec626c49413\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Spatial Anchors Account Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage spatial anchors in your account, including deleting them\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/create/action\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/delete\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T17:57:43.5489832Z\",\r\n \"updatedOn\": \"2019-02-13T06:15:31.8572222Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70bbe301-9835-447d-afdd-19eb3167307c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70bbe301-9835-447d-afdd-19eb3167307c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Managed Instance Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL Managed Instances and required network configuration, but can’t give access to others.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/*\",\r\n \"Microsoft.Network/routeTables/*\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/locations/instanceFailoverGroups/*\",\r\n \"Microsoft.Sql/managedInstances/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/*\",\r\n \"Microsoft.Network/virtualNetworks/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-10T22:57:14.2937983Z\",\r\n \"updatedOn\": \"2020-06-24T22:56:31.0576055Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4939a1f6-9ae0-4e48-a1e0-f2cbe897382d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4939a1f6-9ae0-4e48-a1e0-f2cbe897382d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/extendedAuditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/vulnerabilityAssessments/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-28T22:44:35.864967Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/transparentDataEncryption/*\",\r\n \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/extendedAuditingSettings/read\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/extendedAuditingSettings/read\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/transparentDataEncryption/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/vulnerabilityAssessments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-16T18:44:40.4607572Z\",\r\n \"updatedOn\": \"2019-08-08T22:58:22.2532171Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, including accessing storage account keys which provide full access to storage account data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2019-05-29T20:56:33.9582501Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/extendedAuditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/extendedAuditingSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/vulnerabilityAssessments/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-28T22:44:36.5466043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write and delete access to Azure Storage blob containers and data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/move/action\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2020-03-30T22:49:07.866942Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ba92f5b4-2d11-453d-a403-e96b0029c9fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Storage blob containers and data, including assigning POSIX access control.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/*\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-04T07:02:58.2775257Z\",\r\n \"updatedOn\": \"2019-07-16T21:30:33.7002563Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b7e6dc6d-f1e8-4753-8033-0f276bb0955b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to Azure Storage blob containers and data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2019-07-15T22:01:25.5409721Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write, and delete access to Azure Storage queues and queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/delete\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/delete\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2019-03-05T21:58:02.7367128Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/974c5e8b-45b9-4653-ba55-5f855dd0fb88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"974c5e8b-45b9-4653-ba55-5f855dd0fb88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Message Processor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for peek, receive, and delete access to Azure Storage queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/process/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-01-28T22:27:04.8947111Z\",\r\n \"updatedOn\": \"2019-03-05T22:05:46.1259125Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8a0f0c08-91a1-4084-bc3d-661d67233fed\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8a0f0c08-91a1-4084-bc3d-661d67233fed\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Message Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for sending of Azure Storage queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/add/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-01-28T22:28:34.7459724Z\",\r\n \"updatedOn\": \"2019-03-05T22:11:49.6383892Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c6a89b2d-59bc-44d0-9896-0f6e12d7b80a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c6a89b2d-59bc-44d0-9896-0f6e12d7b80a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to Azure Storage queues and queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2019-03-05T22:17:32.1779262Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/19e7f393-937e-4f77-808e-94535e297925\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"19e7f393-937e-4f77-808e-94535e297925\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Administrator Login\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View Virtual Machines in the portal and login as administrator\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Compute/virtualMachines/login/action\",\r\n \"Microsoft.Compute/virtualMachines/loginAsAdmin/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-02-09T18:36:13.3315744Z\",\r\n \"updatedOn\": \"2018-05-09T22:17:57.0514548Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/1c0163c0-47e6-4577-8991-ea5c82e286e4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1c0163c0-47e6-4577-8991-ea5c82e286e4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:12.6807454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine User Login\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View Virtual Machines in the portal and login as a regular user.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Compute/virtualMachines/login/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-02-09T18:36:13.3315744Z\",\r\n \"updatedOn\": \"2018-05-09T22:18:52.2780979Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb879df8-f326-4884-b1cf-06f3ad86be52\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb879df8-f326-4884-b1cf-06f3ad86be52\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they're connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.SqlVirtualMachine/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2020-02-03T19:38:21.2170228Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\",\r\n \"Microsoft.Web/hostingEnvironments/Join/Action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-03-26T18:17:34.5018645Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-05-12T23:10:23.6193952Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:46.9407288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Bus Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Service Bus resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceBus/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ServiceBus/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-16T21:33:36.7445745Z\",\r\n \"updatedOn\": \"2019-08-21T22:47:11.3982905Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"090c5cfd-751d-490a-894a-3ce6f1109419\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Event Hubs Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Event Hubs resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventHub/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-16T21:34:29.8656362Z\",\r\n \"updatedOn\": \"2019-08-21T22:58:57.7584645Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f526a384-b230-433a-b45c-95f59c4a2dec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f526a384-b230-433a-b45c-95f59c4a2dec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Attestation Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read write or delete the attestation provider instance\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Attestation/attestationProviders/attestation/read\",\r\n \"Microsoft.Attestation/attestationProviders/attestation/write\",\r\n \"Microsoft.Attestation/attestationProviders/attestation/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-19T00:24:09.3354177Z\",\r\n \"updatedOn\": \"2019-05-10T17:59:06.3448436Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/bbf86eb8-f7b4-4cce-96e4-18cddf81d86e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bbf86eb8-f7b4-4cce-96e4-18cddf81d86e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"HDInsight Cluster Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read and modify HDInsight cluster configurations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HDInsight/*/read\",\r\n \"Microsoft.HDInsight/clusters/getGatewaySettings/action\",\r\n \"Microsoft.HDInsight/clusters/updateGatewaySettings/action\",\r\n \"Microsoft.HDInsight/clusters/configurations/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-20T00:03:01.7110732Z\",\r\n \"updatedOn\": \"2019-04-28T02:34:17.4679314Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/61ed4efc-fab3-44fd-b111-e24485cc132a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"61ed4efc-fab3-44fd-b111-e24485cc132a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Cosmos DB accounts, but not access data in them. Prevents access to account keys and connection strings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlyKeys/*\",\r\n \"Microsoft.DocumentDB/databaseAccounts/regenerateKey/*\",\r\n \"Microsoft.DocumentDB/databaseAccounts/listKeys/*\",\r\n \"Microsoft.DocumentDB/databaseAccounts/listConnectionStrings/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-26T17:01:17.0169383Z\",\r\n \"updatedOn\": \"2019-11-21T01:34:13.3746345Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/230815da-be43-4aae-9cb4-875f7bd000aa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"230815da-be43-4aae-9cb4-875f7bd000aa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Hybrid Server Resource Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read, write, delete, and re-onboard Hybrid servers to the Hybrid Resource Provider.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/*\",\r\n \"Microsoft.HybridCompute/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-29T21:39:32.3132923Z\",\r\n \"updatedOn\": \"2019-05-06T20:08:25.3180258Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/48b40c6e-82e0-4eb3-90d5-19e40f49b624\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"48b40c6e-82e0-4eb3-90d5-19e40f49b624\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Hybrid Server Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can onboard new Hybrid servers to the Hybrid Resource Provider.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-29T22:36:28.1873756Z\",\r\n \"updatedOn\": \"2019-05-06T20:09:17.9364269Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d1e5ee4-7c68-4a71-ac8b-0739630a3dfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d1e5ee4-7c68-4a71-ac8b-0739630a3dfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Event Hubs Data Receiver\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows receive access to Azure Event Hubs resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/*/eventhubs/consumergroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventHub/*/receive/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:25:21.1056666Z\",\r\n \"updatedOn\": \"2019-08-21T23:00:32.6225396Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a638d3c7-ab3a-418d-83e6-5f17a39d4fde\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a638d3c7-ab3a-418d-83e6-5f17a39d4fde\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Event Hubs Data Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows send access to Azure Event Hubs resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/*/eventhubs/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventHub/*/send/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:26:12.4673714Z\",\r\n \"updatedOn\": \"2019-08-21T23:02:26.6155679Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2b629674-e913-4c01-ae53-ef4638d8f975\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2b629674-e913-4c01-ae53-ef4638d8f975\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Bus Data Receiver\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for receive access to Azure Service Bus resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceBus/*/queues/read\",\r\n \"Microsoft.ServiceBus/*/topics/read\",\r\n \"Microsoft.ServiceBus/*/topics/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ServiceBus/*/receive/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:43:01.6343849Z\",\r\n \"updatedOn\": \"2019-08-21T22:55:24.3423558Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4f6d3b9b-027b-4f4c-9142-0e5a2a2247e0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4f6d3b9b-027b-4f4c-9142-0e5a2a2247e0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Bus Data Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for send access to Azure Service Bus resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceBus/*/queues/read\",\r\n \"Microsoft.ServiceBus/*/topics/read\",\r\n \"Microsoft.ServiceBus/*/topics/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ServiceBus/*/send/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:43:46.7046934Z\",\r\n \"updatedOn\": \"2019-08-21T22:57:12.2555683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/69a216fc-b8fb-44d8-bc22-1f3c2cd27a39\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"69a216fc-b8fb-44d8-bc22-1f3c2cd27a39\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage File Data SMB Share Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to Azure File Share over SMB\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-01T20:19:31.8620471Z\",\r\n \"updatedOn\": \"2019-08-07T01:00:41.9223409Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/aba4ae5f-2193-4029-9191-0cb91df5e314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"aba4ae5f-2193-4029-9191-0cb91df5e314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage File Data SMB Share Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write, and delete access in Azure Storage file shares over SMB\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/write\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-01T20:54:35.483431Z\",\r\n \"updatedOn\": \"2019-08-07T01:05:24.4309872Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0c867c2a-1d8c-454a-a3db-ab2ea1bdc8bb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0c867c2a-1d8c-454a-a3db-ab2ea1bdc8bb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Private DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage private DNS zone resources, but not the virtual networks they are linked to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/privateDnsZones/*\",\r\n \"Microsoft.Network/privateDnsOperationResults/*\",\r\n \"Microsoft.Network/privateDnsOperationStatuses/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/join/action\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-10T19:31:15.5645518Z\",\r\n \"updatedOn\": \"2019-07-11T21:12:01.7260648Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b12aa53e-6015-4669-85d0-8515ebb3ae7f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b12aa53e-6015-4669-85d0-8515ebb3ae7f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Delegator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for generation of a user delegation key which can be used to sign SAS tokens\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-23T00:51:16.3376761Z\",\r\n \"updatedOn\": \"2019-07-23T01:14:31.8778475Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/db58b8e5-c6ad-4a2a-8342-4190687cbf4a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"db58b8e5-c6ad-4a2a-8342-4190687cbf4a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows user to use the applications in an application group.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DesktopVirtualization/applicationGroups/useApplications/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-07T00:29:03.8727621Z\",\r\n \"updatedOn\": \"2019-08-07T00:29:03.8727621Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/1d18fff3-a72a-46b5-b4a9-0b38a3cd7e63\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1d18fff3-a72a-46b5-b4a9-0b38a3cd7e63\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage File Data SMB Share Elevated Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write, delete and modify NTFS permission access in Azure Storage file shares over SMB\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/write\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/delete\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/modifypermissions/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-07T01:35:36.9935457Z\",\r\n \"updatedOn\": \"2019-08-07T01:35:36.9935457Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a7264617-510b-434b-a828-9731dc254ea7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a7264617-510b-434b-a828-9731dc254ea7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Blueprint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage blueprint definitions, but not assign them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Blueprint/blueprints/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-14T21:55:16.9683949Z\",\r\n \"updatedOn\": \"2019-08-17T00:10:55.7494677Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41077137-e803-4205-871c-5a86e6a753b4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41077137-e803-4205-871c-5a86e6a753b4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Blueprint Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can assign existing published blueprints, but cannot create new blueprints. NOTE: this only works if the assignment is done with a user-assigned managed identity.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Blueprint/blueprintAssignments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-14T21:56:48.7897875Z\",\r\n \"updatedOn\": \"2019-08-17T00:06:02.6509737Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/437d2ced-4a38-4302-8479-ed2bcb43d090\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"437d2ced-4a38-4302-8479-ed2bcb43d090\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Sentinel Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Sentinel Contributor\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SecurityInsights/*\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationsManagement/solutions/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.Insights/workbooks/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T16:39:03.8725173Z\",\r\n \"updatedOn\": \"2020-03-11T15:20:51.6768533Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ab8e14d6-4a74-4a29-9ba8-549422addade\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ab8e14d6-4a74-4a29-9ba8-549422addade\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Sentinel Responder\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Sentinel Responder\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SecurityInsights/*/read\",\r\n \"Microsoft.SecurityInsights/dataConnectorsCheckRequirements/action\",\r\n \"Microsoft.SecurityInsights/cases/*\",\r\n \"Microsoft.SecurityInsights/incidents/*\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\r\n \"Microsoft.OperationsManagement/solutions/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.Insights/workbooks/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T16:54:07.6467264Z\",\r\n \"updatedOn\": \"2020-04-02T08:42:10.2864085Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/3e150937-b8fe-4cfb-8069-0eaf05ecd056\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3e150937-b8fe-4cfb-8069-0eaf05ecd056\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Sentinel Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Sentinel Reader\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SecurityInsights/*/read\",\r\n \"Microsoft.SecurityInsights/dataConnectorsCheckRequirements/action\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/LinkedServices/read\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\r\n \"Microsoft.OperationsManagement/solutions/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.Insights/workbooks/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T16:58:50.1132117Z\",\r\n \"updatedOn\": \"2020-04-02T08:34:51.7222706Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d289c81-5878-46d4-8554-54e1e3d8b5cb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d289c81-5878-46d4-8554-54e1e3d8b5cb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Workbook Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read workbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"microsoft.insights/workbooks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T20:56:17.680814Z\",\r\n \"updatedOn\": \"2019-08-28T21:43:05.0202124Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b279062a-9be3-42a0-92ae-8b3cf002ec4d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b279062a-9be3-42a0-92ae-8b3cf002ec4d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Workbook Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can save shared workbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/workbooks/write\",\r\n \"Microsoft.Insights/workbooks/delete\",\r\n \"Microsoft.Insights/workbooks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T20:59:42.4820277Z\",\r\n \"updatedOn\": \"2020-01-22T00:05:20.938721Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e8ddcd69-c73f-4f9f-9844-4100522f16ad\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e8ddcd69-c73f-4f9f-9844-4100522f16ad\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Policy Insights Data Writer (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to resource policies and write access to resource component policy events.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/policyassignments/read\",\r\n \"Microsoft.Authorization/policydefinitions/read\",\r\n \"Microsoft.Authorization/policysetdefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.PolicyInsights/checkDataPolicyCompliance/action\",\r\n \"Microsoft.PolicyInsights/policyEvents/logDataEvents/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-09-19T19:35:20.9504127Z\",\r\n \"updatedOn\": \"2019-09-19T19:37:02.5331596Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/66bb4e9e-b016-4a94-8249-4c0511c2be84\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"66bb4e9e-b016-4a94-8249-4c0511c2be84\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SignalR AccessKey Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read SignalR Service Access Keys\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SignalRService/*/read\",\r\n \"Microsoft.SignalRService/SignalR/listkeys/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-09-20T09:33:19.6236874Z\",\r\n \"updatedOn\": \"2019-09-20T09:33:19.6236874Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/04165923-9d83-45d5-8227-78b77b0a687e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"04165923-9d83-45d5-8227-78b77b0a687e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SignalR Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, Read, Update, and Delete SignalR service resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SignalRService/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-09-20T09:58:09.0009662Z\",\r\n \"updatedOn\": \"2019-09-20T09:58:09.0009662Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8cf5e20a-e4b2-4e9d-b3a1-5ceb692c2761\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8cf5e20a-e4b2-4e9d-b3a1-5ceb692c2761\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Connected Machine Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can onboard Azure Connected Machines.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-23T20:15:07.137287Z\",\r\n \"updatedOn\": \"2019-11-03T18:26:59.2060282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b64e21ea-ac4e-4cdf-9dc9-5b892992bee7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b64e21ea-ac4e-4cdf-9dc9-5b892992bee7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Connected Machine Resource Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read, write, delete and re-onboard Azure Connected Machines.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.HybridCompute/machines/delete\",\r\n \"Microsoft.HybridCompute/machines/reconnect/action\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.HybridCompute/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-23T20:24:59.1474607Z\",\r\n \"updatedOn\": \"2020-03-19T22:39:54.1226122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cd570a14-e51a-42ad-bac8-bafd67325302\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cd570a14-e51a-42ad-bac8-bafd67325302\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Services Registration assignment Delete Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Managed Services Registration Assignment Delete Role allows the managing tenant users to delete the registration assignment assigned to their tenant.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedServices/registrationAssignments/read\",\r\n \"Microsoft.ManagedServices/registrationAssignments/delete\",\r\n \"Microsoft.ManagedServices/operationStatuses/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-23T22:33:33.1183469Z\",\r\n \"updatedOn\": \"2019-10-24T21:49:09.3875276Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/91c1777a-f3dc-4fae-b103-61d183457e46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"91c1777a-f3dc-4fae-b103-61d183457e46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Configuration Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows full access to App Configuration data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppConfiguration/configurationStores/*/read\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/write\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-25T18:41:40.1185063Z\",\r\n \"updatedOn\": \"2019-10-25T18:41:40.1185063Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Configuration Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to App Configuration data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppConfiguration/configurationStores/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-25T18:45:33.7975332Z\",\r\n \"updatedOn\": \"2019-10-25T18:45:33.7975332Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/516239f1-63e1-4d78-a4de-a74fb236a071\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"516239f1-63e1-4d78-a4de-a74fb236a071\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Kubernetes Cluster - Azure Arc Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role definition to authorize any user/service to create connectedClusters resource\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/Write\",\r\n \"Microsoft.Kubernetes/connectedClusters/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-11-18T17:00:02.2087147Z\",\r\n \"updatedOn\": \"2020-02-10T22:40:48.3317559Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/34e09817-6cbe-4d01-b1a2-e0eac5743d41\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"34e09817-6cbe-4d01-b1a2-e0eac5743d41\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Experimentation Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Experimentation Contributor\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experiment/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/emergencystop/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/write\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-13T00:08:08.6679591Z\",\r\n \"updatedOn\": \"2020-07-07T20:17:06.8223079Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a22b-edd6ce5c915c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f646f1b-fa08-80eb-a22b-edd6ce5c915c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services QnA Maker Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Let’s you read and test a KB only.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-17T18:26:12.3329439Z\",\r\n \"updatedOn\": \"2020-05-08T12:03:46.9266538Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/466ccd10-b268-4a11-b098-b4849f024126\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"466ccd10-b268-4a11-b098-b4849f024126\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services QnA Maker Editor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Let’s you create, edit, import and export a KB. You cannot publish or delete a KB.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/create/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/train/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/refreshkeys/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/operations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/create/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/train/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/refreshkeys/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/operations/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-17T18:27:30.6434556Z\",\r\n \"updatedOn\": \"2020-05-08T12:02:34.0065552Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f4cc2bf9-21be-47a1-bdf1-5c5804381025\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f4cc2bf9-21be-47a1-bdf1-5c5804381025\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Experimentation Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Experimentation Administrator\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/admin/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/write\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/delete\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experimentadmin/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experiment/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/emergencystop/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/write\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/delete\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/admin/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-18T22:46:33.1116612Z\",\r\n \"updatedOn\": \"2020-04-22T20:10:20.1216929Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a33b-edd6ce5c915c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f646f1b-fa08-80eb-a33b-edd6ce5c915c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Remote Rendering Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides user with conversion, manage session, rendering and diagnostics capabilities for Azure Remote Rendering\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/convert/action\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/convert/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/convert/delete\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/action\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/delete\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/render/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/diagnostic/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-01-23T18:15:31.3450348Z\",\r\n \"updatedOn\": \"2020-01-23T18:15:31.3450348Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/3df8b902-2a6f-47c7-8cc5-360e9b272a7e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3df8b902-2a6f-47c7-8cc5-360e9b272a7e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Remote Rendering Client\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides user with manage session, rendering and diagnostics capabilities for Azure Remote Rendering.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/action\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/delete\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/render/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/diagnostic/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-01-23T18:32:52.7069824Z\",\r\n \"updatedOn\": \"2020-01-23T18:32:52.7069824Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d39065c4-c120-43c9-ab0a-63eed9795f0a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d39065c4-c120-43c9-ab0a-63eed9795f0a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Application Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for creating managed application resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Solutions/applications/*\",\r\n \"Microsoft.Solutions/register/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/*\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-08T03:39:11.8933879Z\",\r\n \"updatedOn\": \"2020-03-23T02:12:30.0853051Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/641177b8-a67a-45b9-a033-47bc880bb21e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"641177b8-a67a-45b9-a033-47bc880bb21e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Assessment Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you push assessments to Security Center\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Security/assessments/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-13T08:23:47.7656161Z\",\r\n \"updatedOn\": \"2020-02-13T08:23:47.7656161Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/612c2aa1-cb24-443b-ac28-3ab7272de6f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"612c2aa1-cb24-443b-ac28-3ab7272de6f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Tag Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage tags on entities, without providing access to the entities themselves.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resources/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/tags/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-18T23:19:19.2977644Z\",\r\n \"updatedOn\": \"2020-02-19T00:04:58.9214962Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4a9ae827-6dc8-4573-8ac7-8239d42aa03f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4a9ae827-6dc8-4573-8ac7-8239d42aa03f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Integration Service Environment Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows developers to create and update workflows, integration accounts and API connections in integration service environments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Logic/integrationServiceEnvironments/read\",\r\n \"Microsoft.Logic/integrationServiceEnvironments/join/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-20T21:09:00.5627875Z\",\r\n \"updatedOn\": \"2020-02-20T21:36:24.619073Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c7aa55d3-1abb-444a-a5ca-5e51e485d6ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c7aa55d3-1abb-444a-a5ca-5e51e485d6ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Integration Service Environment Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage integration service environments, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Logic/integrationServiceEnvironments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-20T21:10:44.4008319Z\",\r\n \"updatedOn\": \"2020-02-20T21:41:56.7983599Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a41e2c5b-bd99-4a07-88f4-9bf657a760b8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a41e2c5b-bd99-4a07-88f4-9bf657a760b8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Marketplace Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Administrator of marketplace resource provider\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Marketplace/privateStores/write\",\r\n \"Microsoft.Marketplace/privateStores/action\",\r\n \"Microsoft.Marketplace/privateStores/delete\",\r\n \"Microsoft.Marketplace/privateStores/offers/write\",\r\n \"Microsoft.Marketplace/privateStores/offers/action\",\r\n \"Microsoft.Marketplace/privateStores/offers/delete\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-26T14:19:50.9681015Z\",\r\n \"updatedOn\": \"2020-06-23T05:54:42.8370671Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dd920d6d-f481-47f1-b461-f338c46b2d9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dd920d6d-f481-47f1-b461-f338c46b2d9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read and write Azure Kubernetes Service clusters\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/managedClusters/read\",\r\n \"Microsoft.ContainerService/managedClusters/write\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-27T19:27:15.073997Z\",\r\n \"updatedOn\": \"2020-02-28T02:34:14.5162305Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Digital Twins Reader (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only role for Digital Twins data-plane properties\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DigitalTwins/digitaltwins/read\",\r\n \"Microsoft.DigitalTwins/digitaltwins/relationships/read\",\r\n \"Microsoft.DigitalTwins/eventroutes/read\",\r\n \"Microsoft.DigitalTwins/models/read\",\r\n \"Microsoft.DigitalTwins/query/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-10T23:48:14.7057381Z\",\r\n \"updatedOn\": \"2020-07-01T17:50:50.2393244Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d57506d4-4c8d-48b1-8587-93c323f6a5a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d57506d4-4c8d-48b1-8587-93c323f6a5a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Digital Twins Owner (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access role for Digital Twins data-plane\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DigitalTwins/eventroutes/*\",\r\n \"Microsoft.DigitalTwins/digitaltwins/*\",\r\n \"Microsoft.DigitalTwins/digitaltwins/commands/*\",\r\n \"Microsoft.DigitalTwins/digitaltwins/relationships/*\",\r\n \"Microsoft.DigitalTwins/models/*\",\r\n \"Microsoft.DigitalTwins/query/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-10T23:49:33.782193Z\",\r\n \"updatedOn\": \"2020-03-10T23:49:33.782193Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/bcd981a7-7f74-457b-83e1-cceb9e632ffe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bcd981a7-7f74-457b-83e1-cceb9e632ffe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Hierarchy Settings Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows users to edit and delete Hierarchy Settings\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/managementGroups/settings/write\",\r\n \"Microsoft.Management/managementGroups/settings/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-13T23:55:11.0212387Z\",\r\n \"updatedOn\": \"2020-03-13T23:58:46.9249866Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/350f8d15-c687-4448-8ae1-157740a3936d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"350f8d15-c687-4448-8ae1-157740a3936d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal full access to FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:35:04.4949547Z\",\r\n \"updatedOn\": \"2020-03-17T18:35:04.4949547Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5a1fc7df-4bf1-4951-a576-89034ee01acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5a1fc7df-4bf1-4951-a576-89034ee01acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Exporter\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal to read and export FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/read\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/export/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:45:01.9764073Z\",\r\n \"updatedOn\": \"2020-03-19T20:29:56.9958536Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/3db33094-8700-4567-8da5-1501d4e7e843\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3db33094-8700-4567-8da5-1501d4e7e843\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal to read FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:49:04.8353499Z\",\r\n \"updatedOn\": \"2020-03-17T18:49:04.8353499Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4c8d0bbc-75d3-4935-991f-5f3c56d81508\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4c8d0bbc-75d3-4935-991f-5f3c56d81508\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal to read and write FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/hardDelete/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:55:35.2413335Z\",\r\n \"updatedOn\": \"2020-03-17T18:55:35.2413335Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/3f88fce4-5892-4214-ae73-ba5294559913\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3f88fce4-5892-4214-ae73-ba5294559913\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Experimentation Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Experimentation Reader\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-25T18:05:14.8375678Z\",\r\n \"updatedOn\": \"2020-04-22T21:20:46.2737555Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/49632ef5-d9ac-41f4-b8e7-bbe587fa74a1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"49632ef5-d9ac-41f4-b8e7-bbe587fa74a1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Object Understanding Account Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides user with ingestion capabilities for Azure Object Understanding.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/action\",\r\n \"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-04-22T19:15:09.0697923Z\",\r\n \"updatedOn\": \"2020-04-22T19:15:09.0697923Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4dd61c23-6743-42fe-a388-d8bdd41cb745\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4dd61c23-6743-42fe-a388-d8bdd41cb745\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Maps Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read, write, and delete access to map related data from an Azure maps account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Maps/accounts/*/read\",\r\n \"Microsoft.Maps/accounts/*/write\",\r\n \"Microsoft.Maps/accounts/*/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-07T20:55:05.064541Z\",\r\n \"updatedOn\": \"2020-05-07T20:55:05.064541Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f5e0ce6-4f7b-4dcf-bddf-e6f48634a204\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f5e0ce6-4f7b-4dcf-bddf-e6f48634a204\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access to the project, including the ability to view, create, edit, or delete projects.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-08T23:47:07.0779345Z\",\r\n \"updatedOn\": \"2020-05-08T23:47:07.0779345Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c1ff6cc2-c111-46fe-8896-e0ef812ad9f3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c1ff6cc2-c111-46fe-8896-e0ef812ad9f3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Deployment\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Publish, unpublish or export models. Deployment can view the project but can’t update.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/iterations/publish/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/iterations/export/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/quicktest/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/classify/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/detect/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:31:05.952862Z\",\r\n \"updatedOn\": \"2020-05-09T01:31:05.952862Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5c4089e1-6d96-4d2f-b296-c1bc7137275f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5c4089e1-6d96-4d2f-b296-c1bc7137275f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Labeler\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View, edit training images and create, add, remove, or delete the image tags. Labelers can view the project but can’t update anything other than training images and tags.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/query/action\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/images/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/tags/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/images/suggested/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/tagsandregions/suggestions/action\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:33:20.8278896Z\",\r\n \"updatedOn\": \"2020-05-09T01:33:20.8278896Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/88424f51-ebe7-446f-bc41-7fa16989e96c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"88424f51-ebe7-446f-bc41-7fa16989e96c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only actions in the project. Readers can’t create or update the project.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/query/action\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:34:18.5328818Z\",\r\n \"updatedOn\": \"2020-05-09T01:34:18.5328818Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/93586559-c37d-4a6b-ba08-b9f0940c2d73\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"93586559-c37d-4a6b-ba08-b9f0940c2d73\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Trainer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View, edit projects and train the models, including the ability to publish, unpublish, export the models. Trainers can’t create or delete the project.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/action\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/delete\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/import/action\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:35:13.8147804Z\",\r\n \"updatedOn\": \"2020-05-09T01:35:13.8147804Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0a5ae4ab-0d65-4eeb-be61-29fc9b54394b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a5ae4ab-0d65-4eeb-be61-29fc9b54394b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Administrator (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform any action on certificates, keys and secrets of a key vault, except manage permissions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:46.2349235Z\",\r\n \"updatedOn\": \"2020-05-20T19:40:18.9511304Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00482a5a-887f-4fb3-b363-3b7fe8e74483\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Crypto Officer (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform any action on the keys of a key vault, except manage permissions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/keys/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.0099249Z\",\r\n \"updatedOn\": \"2020-05-20T19:44:51.5886988Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/14b46e9e-c2b7-41b4-b07b-48a6ebf60603\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"14b46e9e-c2b7-41b4-b07b-48a6ebf60603\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Crypto User (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform cryptographic operations on keys and certificates.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/keys/read\",\r\n \"Microsoft.KeyVault/vaults/keys/update/action\",\r\n \"Microsoft.KeyVault/vaults/keys/backup/action\",\r\n \"Microsoft.KeyVault/vaults/keys/encrypt/action\",\r\n \"Microsoft.KeyVault/vaults/keys/decrypt/action\",\r\n \"Microsoft.KeyVault/vaults/keys/wrap/action\",\r\n \"Microsoft.KeyVault/vaults/keys/unwrap/action\",\r\n \"Microsoft.KeyVault/vaults/keys/sign/action\",\r\n \"Microsoft.KeyVault/vaults/keys/verify/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.0699268Z\",\r\n \"updatedOn\": \"2020-05-20T19:48:54.8672037Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/12338af0-0e69-4776-bea7-57ae8d297424\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"12338af0-0e69-4776-bea7-57ae8d297424\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Secrets Officer (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform any action on the secrets of a key vault, except manage permissions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/secrets/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.1449242Z\",\r\n \"updatedOn\": \"2020-05-20T19:51:40.033812Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b86a8fe4-44ce-4948-aee5-eccb2c155cd7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b86a8fe4-44ce-4948-aee5-eccb2c155cd7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Secrets User (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read secret contents.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/secrets/getSecret/action\",\r\n \"Microsoft.KeyVault/vaults/secrets/readMetadata/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.2049241Z\",\r\n \"updatedOn\": \"2020-05-20T19:53:53.9617292Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4633458b-17de-408a-b874-0445c86b69e6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4633458b-17de-408a-b874-0445c86b69e6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Certificates Officer (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform any action on the certificates of a key vault, except manage permissions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/certificatecas/*\",\r\n \"Microsoft.KeyVault/vaults/certificates/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.2499247Z\",\r\n \"updatedOn\": \"2020-05-20T19:56:22.0363761Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4417e6f-fecd-4de8-b567-7b0420556985\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4417e6f-fecd-4de8-b567-7b0420556985\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Reader (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read metadata of key vaults and its certificates, keys and secrets. Cannot read sensitive values such as secret contents or key material.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/vaults/secrets/readMetadata/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.2949294Z\",\r\n \"updatedOn\": \"2020-05-20T19:58:55.0084184Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/21090545-7ca7-4776-b22c-e363652d74d2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"21090545-7ca7-4776-b22c-e363652d74d2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Crypto Service Encryption (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read metadata of keys and perform wrap/unwrap operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/keys/read\",\r\n \"Microsoft.KeyVault/vaults/keys/wrap/action\",\r\n \"Microsoft.KeyVault/vaults/keys/unwrap/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-20T20:55:19.239847Z\",\r\n \"updatedOn\": \"2020-05-20T20:55:19.239847Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e147488a-f6f5-4113-8e2d-b22465e65bf6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e147488a-f6f5-4113-8e2d-b22465e65bf6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Viewer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view all resources in cluster/namespace, except secrets.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/*/read\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/secrets/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/clusterconfig.azure.com/azureclusteridentityrequests/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:51:12.8801199Z\",\r\n \"updatedOn\": \"2020-06-12T20:51:12.8801199Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/63f0a09d-1495-4db4-a681-037d84835eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"63f0a09d-1495-4db4-a681-037d84835eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you update everything in cluster/namespace, except (cluster)roles and (cluster)role bindings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/*/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/*/write\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/rbac.authorization.k8s.io/*/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/rbac.authorization.k8s.io/*/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/namespaces/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/resourcequotas/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/certificates.k8s.io/certificatesigningrequests/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/policy/podsecuritypolicies/write\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:53:50.6749823Z\",\r\n \"updatedOn\": \"2020-06-12T20:53:50.6749823Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5b999177-9696-4545-85c7-50de3797e5a1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5b999177-9696-4545-85c7-50de3797e5a1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Cluster Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources in the cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:55:30.9910462Z\",\r\n \"updatedOn\": \"2020-06-12T20:55:30.9910462Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8393591c-06b9-48a2-a542-1bd6b377f6a2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8393591c-06b9-48a2-a542-1bd6b377f6a2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources under cluster/namespace, except update or delete resource quotas and namespaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/resourcequotas/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/resourcequotas/delete\",\r\n \"Microsoft.Kubernetes/connectedClusters/namespaces/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/namespaces/delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:57:06.0391177Z\",\r\n \"updatedOn\": \"2020-06-12T20:57:06.0391177Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dffb1e0c-446f-4dde-a09f-99eb5cc68b96\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dffb1e0c-446f-4dde-a09f-99eb5cc68b96\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Cluster Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources in the cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:47:24.4071415Z\",\r\n \"updatedOn\": \"2020-07-02T17:47:24.4071415Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources under cluster/namespace, except update or delete resource quotas and namespaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/resourcequotas/write\",\r\n \"Microsoft.ContainerService/managedClusters/resourcequotas/delete\",\r\n \"Microsoft.ContainerService/managedClusters/namespaces/write\",\r\n \"Microsoft.ContainerService/managedClusters/namespaces/delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:50:30.4020311Z\",\r\n \"updatedOn\": \"2020-07-02T17:50:30.4020311Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/3498e952-d568-435e-9b2c-8d77e338d7f7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3498e952-d568-435e-9b2c-8d77e338d7f7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view all resources in cluster/namespace, except secrets.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/*/read\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/rbac.authorization.k8s.io/*/read\",\r\n \"Microsoft.ContainerService/managedClusters/rbac.authorization.k8s.io/*/write\",\r\n \"Microsoft.ContainerService/managedClusters/secrets/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:53:05.5728294Z\",\r\n \"updatedOn\": \"2020-07-07T16:40:37.2744607Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7f6c6a51-bcf8-42ba-9220-52d62157d7db\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f6c6a51-bcf8-42ba-9220-52d62157d7db\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you update everything in cluster/namespace, except resource quotas, namespaces, pod security policies, certificate signing requests, (cluster)roles and (cluster)role bindings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/*/read\",\r\n \"Microsoft.ContainerService/managedClusters/*/write\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/rbac.authorization.k8s.io/*/read\",\r\n \"Microsoft.ContainerService/managedClusters/rbac.authorization.k8s.io/*/write\",\r\n \"Microsoft.ContainerService/managedClusters/namespaces/write\",\r\n \"Microsoft.ContainerService/managedClusters/resourcequotas/write\",\r\n \"Microsoft.ContainerService/managedClusters/certificates.k8s.io/certificatesigningrequests/write\",\r\n \"Microsoft.ContainerService/managedClusters/policy/podsecuritypolicies/write\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:54:51.9644983Z\",\r\n \"updatedOn\": \"2020-07-02T17:54:51.9644983Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a7ffa36f-339b-4b5c-8bdf-e2c188b2c0eb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a7ffa36f-339b-4b5c-8bdf-e2c188b2c0eb\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "//subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments/734de5f5-c680-41c0-8beb-67b98c3539d2?api-version=2020-04-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy9kYW9yb3pjb19idWdfcmVwcm8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy83MzRkZTVmNS1jNjgwLTQxYzAtOGJlYi02N2I5OGMzNTM5ZDI/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0dfd6586-0795-415f-a7a9-08ece38187c6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.12.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0400061d-a005-40a4-a759-a55abf0e9003" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=Production; path=/; secure; HttpOnly; SameSite=None" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "b92a592c-81b1-4172-8489-4f1d32e816b9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200717T010326Z:b92a592c-81b1-4172-8489-4f1d32e816b9" - ], - "Date": [ - "Fri, 17 Jul 2020 01:03:25 GMT" - ], - "Content-Length": [ - "1075" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg\",\r\n \"condition\": \"@Resource[Microsoft.Storage/storageAccounts/blobServices/containers:Name] StringEqualsIgnoreCase 'foo_storage_container'\",\r\n \"conditionVersion\": \"2.0\",\r\n \"createdOn\": \"2020-07-17T01:03:22.9503355Z\",\r\n \"updatedOn\": \"2020-07-17T01:03:22.9503355Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false,\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": \"This test should not fail\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments/734de5f5-c680-41c0-8beb-67b98c3539d2\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"734de5f5-c680-41c0-8beb-67b98c3539d2\"\r\n}", - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "4004a9fd-d58e-48dc-aeb2-4a4aec58606f" - } -} \ No newline at end of file diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaWithV2ConditionsOnly.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaWithV2ConditionsOnly.json deleted file mode 100644 index 2c0c525ba98f..000000000000 --- a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaWithV2ConditionsOnly.json +++ /dev/null @@ -1,518 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "//subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments/734de5f5-c680-41c0-8beb-67b98c3539d2?api-version=2020-04-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy9kYW9yb3pjb19idWdfcmVwcm8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy83MzRkZTVmNS1jNjgwLTQxYzAtOGJlYi02N2I5OGMzNTM5ZDI/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"canDelegate\": false,\r\n \"description\": \"This test should not fail\",\r\n \"condition\": \"@Resource[Microsoft.Storage/storageAccounts/blobServices/containers:Name] StringEqualsIgnoreCase 'foo_storage_container'\",\r\n \"conditionVersion\": \"2.0\"\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13b601a1-526e-45da-a2b2-f22f74c68337" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.12.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "538" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3c73c0c9-bf10-4fe7-91cd-e1c76e2e9fec" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=Production; path=/; SameSite=None; secure; HttpOnly" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "6fcb0f9e-9ca1-407b-ad39-b5590c5d3e34" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200717T010329Z:6fcb0f9e-9ca1-407b-ad39-b5590c5d3e34" - ], - "Date": [ - "Fri, 17 Jul 2020 01:03:29 GMT" - ], - "Content-Length": [ - "1041" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg\",\r\n \"condition\": \"@Resource[Microsoft.Storage/storageAccounts/blobServices/containers:Name] StringEqualsIgnoreCase 'foo_storage_container'\",\r\n \"conditionVersion\": \"2.0\",\r\n \"createdOn\": \"2020-07-17T01:03:28.9914418Z\",\r\n \"updatedOn\": \"2020-07-17T01:03:28.9914418Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false,\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": \"This test should not fail\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments/734de5f5-c680-41c0-8beb-67b98c3539d2\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"734de5f5-c680-41c0-8beb-67b98c3539d2\"\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7?api-version=2018-01-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zLzAzNTNlZTBhLTE5YWUtNDM4MC1iYTNkLWQ1NDc2N2M3NWQ1Yj9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8a181225-cc8e-448d-a930-78f39b020e76" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.12.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "694c9f4d-7b94-4ee2-a54f-0c6d94225d2c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=Production; path=/; secure; HttpOnly; SameSite=None" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "1db8ec28-678a-488a-83e1-0022623466f6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200717T010329Z:1db8ec28-678a-488a-83e1-0022623466f6" - ], - "Date": [ - "Fri, 17 Jul 2020 01:03:29 GMT" - ], - "Content-Length": [ - "873" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Daoroz-Custom1\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"A role to use when testing various things\\nIt does not grant any real permissions, just the ability to read role definitions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-08T17:44:15.2525393Z\",\r\n \"updatedOn\": \"2020-07-08T17:44:15.2525393Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/395544B0-BF41-429D-921F-E1CA2252FCF4/getObjectsByObjectIds?api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"01072e9b-c4a1-4246-a756-031b529bbf66\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0076959f-5d09-4f03-a9f7-d4be396eb915" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/3.5.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "116" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ocp-aad-diagnostics-server-name": [ - "qD03Phkyp3PESyOCOq/UWezyOoJRSPWoF1sQ7pSJmlE=" - ], - "request-id": [ - "32b16353-d6d7-41f9-ad4e-8f43cbde99b8" - ], - "client-request-id": [ - "0076959f-5d09-4f03-a9f7-d4be396eb915" - ], - "x-ms-dirapi-data-contract-version": [ - "1.6" - ], - "ocp-aad-session-key": [ - "onnnrPbw7g6QCSIoNLmaSKwvaATyfJJcj78qUMavIOEEUGTFWIT5GjrEhF94JH5qN2CZv6KB3qPxBTwQFe7zI4CazDIEmjaYShejpvypcRxrO0aNluyL9wc-EITLaPKS.0svXI81E-lTfbpCyeS3GOquOhM4cNtpc5oCVgdEiUJM" - ], - "x-aad-resource-unit": [ - "3" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Duration": [ - "368986" - ], - "Date": [ - "Fri, 17 Jul 2020 01:03:29 GMT" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "1511" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/395544B0-BF41-429D-921F-E1CA2252FCF4/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"ageGroup\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"consentProvidedForMinor\": null,\r\n \"country\": null,\r\n \"createdDateTime\": \"2020-07-06T23:49:47Z\",\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ddd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"dagoroz-bug-repro\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2020-07-06T23:49:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"dagoroz-bug-repro@rbacclitest.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/395544B0-BF41-429D-921F-E1CA2252FCF4/getObjectsByObjectIds?api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"01072e9b-c4a1-4246-a756-031b529bbf66\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2fee237e-8e2f-40f6-9997-13030f9e9f0e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/3.5.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "116" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ocp-aad-diagnostics-server-name": [ - "cAVsKsE66TYakbqGtubIAtWvSCoR9a+ArvTZEZ5t0Yk=" - ], - "request-id": [ - "5ebdb93c-7271-4096-b079-9ca50aaf56fa" - ], - "client-request-id": [ - "2fee237e-8e2f-40f6-9997-13030f9e9f0e" - ], - "x-ms-dirapi-data-contract-version": [ - "1.6" - ], - "ocp-aad-session-key": [ - "Y6sU9FqB88SoCA1x_WEGhA1-CVMeUZqoC9GTLVtjmWVXCdFGP5qn3M2WE4NaFuasIecOUKgfTxuqiXjnIcVU6FhF-re0-vd6FFeE-x8av_pQtQiGCNY_8RqUnIviTWsA.taV8XC_JptOGtfwelWcgm57fdLWDJHecjD1ukIBTI6Q" - ], - "x-aad-resource-unit": [ - "3" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Duration": [ - "323191" - ], - "Date": [ - "Fri, 17 Jul 2020 01:03:30 GMT" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "1511" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/395544B0-BF41-429D-921F-E1CA2252FCF4/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"ageGroup\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"consentProvidedForMinor\": null,\r\n \"country\": null,\r\n \"createdDateTime\": \"2020-07-06T23:49:47Z\",\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ddd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"dagoroz-bug-repro\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2020-07-06T23:49:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"dagoroz-bug-repro@rbacclitest.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "//subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'01072e9b-c4a1-4246-a756-031b529bbf66'&api-version=2020-04-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy9kYW9yb3pjb19idWdfcmVwcm8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cz8kZmlsdGVyPXByaW5jaXBhbElkJTIwZXElMjAnZTk1ZmE2MDgtM2Q0OS00NDM4LTlmNjAtMzVkODVkODRjYTE2JyZhcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "737ff02e-3f97-45ab-a86b-7ee6a8baeb0c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.12.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1d579c58-aa98-48db-b0d0-7dd8e94a9f05" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=Production; path=/; SameSite=None; secure; HttpOnly" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "96527d2f-0a9b-426d-b116-62230f6357db" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200717T010330Z:96527d2f-0a9b-426d-b116-62230f6357db" - ], - "Date": [ - "Fri, 17 Jul 2020 01:03:30 GMT" - ], - "Content-Length": [ - "1087" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg\",\r\n \"condition\": \"@Resource[Microsoft.Storage/storageAccounts/blobServices/containers:Name] StringEqualsIgnoreCase 'foo_storage_container'\",\r\n \"conditionVersion\": \"2.0\",\r\n \"createdOn\": \"2020-07-17T01:03:22.9503355Z\",\r\n \"updatedOn\": \"2020-07-17T01:03:29.1742508Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false,\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": \"This test should not fail\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments/734de5f5-c680-41c0-8beb-67b98c3539d2\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"734de5f5-c680-41c0-8beb-67b98c3539d2\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "//subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleDefinitions?api-version=2018-01-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy9kYW9yb3pjb19idWdfcmVwcm8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVEZWZpbml0aW9ucz9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "49d73c6f-da52-4475-891e-3118365f9466" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.12.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "de953189-fce5-4b82-9fdb-b713555c9c10" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=Production; path=/; secure; HttpOnly; SameSite=None" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "a9c22a54-1fe7-4acb-8d41-419cdb857de2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200717T010330Z:a9c22a54-1fe7-4acb-8d41-419cdb857de2" - ], - "Date": [ - "Fri, 17 Jul 2020 01:03:30 GMT" - ], - "Content-Length": [ - "243873" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test Properties\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-13T18:17:20.8584392Z\",\r\n \"updatedOn\": \"2018-03-13T18:18:37.0952708Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/171d2453-29dc-42b4-84fc-3fd259eeaec3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"171d2453-29dc-42b4-84fc-3fd259eeaec3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test RD\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test RDDD\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-04-17T18:39:35.636177Z\",\r\n \"updatedOn\": \"2018-04-17T18:39:35.636177Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/98b036c8-8bf1-4f4a-8f50-a0a6dde0e734\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"98b036c8-8bf1-4f4a-8f50-a0a6dde0e734\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"test role and another testrole\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-22T23:58:52.7462995Z\",\r\n \"updatedOn\": \"2018-04-11T20:49:59.3331071Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a997608d-3f63-4eeb-b01b-1b3ae270cd6d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a997608d-3f63-4eeb-b01b-1b3ae270cd6d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testrole132\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-05-30T23:13:47.7513317Z\",\r\n \"updatedOn\": \"2018-05-30T23:13:47.7513317Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/3e66a0a6-a18a-4afc-a5cc-ec19e06012ae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3e66a0a6-a18a-4afc-a5cc-ec19e06012ae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testrole-novm\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets Fuse Developers access select objects they need.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/*/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/*/read\",\r\n \"Microsoft.Storage/storageAccounts/*/read\",\r\n \"Microsoft.Web/sites/*/read\",\r\n \"Microsoft.ServiceBus/namespaces/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-09-20T00:19:06.4239042Z\",\r\n \"updatedOn\": \"2018-09-20T00:19:06.4239042Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ef4af617-2f0e-412b-b30a-b7c848aa9098\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ef4af617-2f0e-412b-b30a-b7c848aa9098\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestContributor\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\",\r\n \"Microsoft.Blueprint/blueprintAssignments/write\",\r\n \"Microsoft.Blueprint/blueprintAssignments/delete\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-06T00:36:20.4923118Z\",\r\n \"updatedOn\": \"2019-04-10T19:14:27.67508Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole Tests Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-21T18:24:29.0508834Z\",\r\n \"updatedOn\": \"2019-08-21T18:32:39.5641976Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d7dd69e-9ae2-44a1-94d8-f7bc8e12645e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testbatchcontributor\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Batch/batchAccounts/read\",\r\n \"Microsoft.Batch/batchAccounts/*/read\",\r\n \"Microsoft.Batch/batchAccounts/applications/*\",\r\n \"Microsoft.Batch/batchAccounts/listkeys/action\",\r\n \"Microsoft.Batch/batchAccounts/pools/write\",\r\n \"Microsoft.Batch/batchAccounts/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-09-10T16:44:02.3947885Z\",\r\n \"updatedOn\": \"2019-09-10T16:44:02.3947885Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e2ab292b-812a-4306-9c73-df992f61649b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e2ab292b-812a-4306-9c73-df992f61649b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"No RD WRITE\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/roleDefinitions/write\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-01-28T00:57:45.1574464Z\",\r\n \"updatedOn\": \"2020-01-28T00:57:45.1574464Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d8bae860-743b-407c-8cf0-3aa1cbb8788c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d8bae860-743b-407c-8cf0-3aa1cbb8788c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"No RD READ\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-01-29T00:27:29.0693475Z\",\r\n \"updatedOn\": \"2020-01-29T00:27:29.0693475Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/724dd060-7e51-4f7b-a749-cd927f345b68\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"724dd060-7e51-4f7b-a749-cd927f345b68\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"asd\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Synapse/register/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-19T20:09:21.8617073Z\",\r\n \"updatedOn\": \"2020-02-19T20:09:21.8617073Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/254d9483-0229-40a3-a457-f6cbb5449be6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"254d9483-0229-40a3-a457-f6cbb5449be6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"teste\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"setesrt\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"microsoft.operationalinsights/register/action\",\r\n \"microsoft.operationalinsights/unregister/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-27T01:22:58.9649766Z\",\r\n \"updatedOn\": \"2020-02-27T01:22:58.9649766Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7da825e5-3464-48e4-8646-fab69f7de46c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7da825e5-3464-48e4-8646-fab69f7de46c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"asda\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"asdasd\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Synapse/checkNameAvailability/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-27T19:33:25.1899025Z\",\r\n \"updatedOn\": \"2020-02-27T19:33:25.1899025Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7cab0ec5-99cb-466f-937e-26806c98f0fb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7cab0ec5-99cb-466f-937e-26806c98f0fb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CloneIt\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T03:08:21.1526749Z\",\r\n \"updatedOn\": \"2020-03-17T03:08:21.1526749Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acfb9fda-b179-4290-8d82-609ddb722ca0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acfb9fda-b179-4290-8d82-609ddb722ca0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RyanTestMG\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/providers/Microsoft.Management/managementGroups/thisdoesntexist\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-18T23:23:29.8420866Z\",\r\n \"updatedOn\": \"2020-03-18T23:23:29.8420866Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f5fde758-46cb-4388-8e2d-5dfb6f9c5e26\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f5fde758-46cb-4388-8e2d-5dfb6f9c5e26\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"27MarchCR Clone\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [\r\n \"Microsoft.ClassicCompute/virtualMachines/capture/action\",\r\n \"Microsoft.ClassicCompute/virtualMachines/start/action\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-27T03:30:41.2204287Z\",\r\n \"updatedOn\": \"2020-05-25T03:59:50.7212707Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/688cffa8-c3ad-434d-95bf-4feef208c51f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"688cffa8-c3ad-434d-95bf-4feef208c51f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"dfg\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"84codes.CloudAMQP/updateCommunicationPreference/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-04-15T17:01:23.582234Z\",\r\n \"updatedOn\": \"2020-04-15T17:01:23.582234Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/666436ac-d087-4028-8caa-3d56838acc54\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"666436ac-d087-4028-8caa-3d56838acc54\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testest\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"84codes.CloudAMQP/updateCommunicationPreference/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-04-15T17:28:05.771688Z\",\r\n \"updatedOn\": \"2020-04-15T17:28:05.771688Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/778f1528-7abc-42be-a89f-d72860782919\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"778f1528-7abc-42be-a89f-d72860782919\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testewasdasd\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"84codes.CloudAMQP/updateCommunicationPreference/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-04-16T19:16:54.3681577Z\",\r\n \"updatedOn\": \"2020-04-16T19:16:54.3681577Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/351dc63d-3eec-4697-bf6b-ebeb52629640\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"351dc63d-3eec-4697-bf6b-ebeb52629640\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"asdsad\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Synapse/checkNameAvailability/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-04-23T15:27:01.6742334Z\",\r\n \"updatedOn\": \"2020-04-23T15:27:01.6742334Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2b516d2c-4b58-45d7-8c2b-55f2e936d21a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2b516d2c-4b58-45d7-8c2b-55f2e936d21a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testrole1234\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T09:19:08.0056403Z\",\r\n \"updatedOn\": \"2020-06-09T09:19:08.0056403Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f1ae5ae6-80f8-4b6a-9962-96e885ed2fdf\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f1ae5ae6-80f8-4b6a-9962-96e885ed2fdf\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customreader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T21:33:19.2160171Z\",\r\n \"updatedOn\": \"2020-06-09T21:33:19.2160171Z\",\r\n \"createdBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\",\r\n \"updatedBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e9bfc956-b9d6-4931-8df6-d8e759dfb7bd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e9bfc956-b9d6-4931-8df6-d8e759dfb7bd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customabc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T21:37:45.502473Z\",\r\n \"updatedOn\": \"2020-06-09T21:37:45.502473Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/1d3c667d-d849-4444-a61e-910a34a5fbc3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1d3c667d-d849-4444-a61e-910a34a5fbc3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customroletest123\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:01:04.3209554Z\",\r\n \"updatedOn\": \"2020-06-09T22:01:04.3209554Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0a301507-673a-47b2-a629-7fa8ca72af3f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a301507-673a-47b2-a629-7fa8ca72af3f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customroleabc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:09:16.2626975Z\",\r\n \"updatedOn\": \"2020-06-09T22:09:16.2626975Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/bc1ff923-7253-46cd-9120-6ad03ef2d6e6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bc1ff923-7253-46cd-9120-6ad03ef2d6e6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customreader123\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:12:24.0862728Z\",\r\n \"updatedOn\": \"2020-06-09T22:12:24.0862728Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8700af82-f42f-4393-a5f2-eee83964a9aa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8700af82-f42f-4393-a5f2-eee83964a9aa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"test123abc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:14:57.6218091Z\",\r\n \"updatedOn\": \"2020-06-09T22:14:57.6218091Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/eef4fe94-b510-4514-8669-0548903f3495\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"eef4fe94-b510-4514-8669-0548903f3495\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customroleabc123\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:37:36.1262398Z\",\r\n \"updatedOn\": \"2020-06-09T22:37:36.1262398Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fd01a54f-fd90-46ec-b525-a636a28df51f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fd01a54f-fd90-46ec-b525-a636a28df51f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testcustomroleabc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:42:30.4994673Z\",\r\n \"updatedOn\": \"2020-06-09T22:42:30.4994673Z\",\r\n \"createdBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\",\r\n \"updatedBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fecfef36-f4fc-4e4b-93ff-7db5732a444d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fecfef36-f4fc-4e4b-93ff-7db5732a444d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"zzcustomrolezz\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:52:41.6786191Z\",\r\n \"updatedOn\": \"2020-06-09T22:52:41.6786191Z\",\r\n \"createdBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\",\r\n \"updatedBy\": \"fc6c8339-646b-4fb2-a2e2-80f95c0baf96\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dc307f0a-46a2-4260-bbca-66b3a4448a8d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dc307f0a-46a2-4260-bbca-66b3a4448a8d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testCustomRole\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T22:55:26.5124865Z\",\r\n \"updatedOn\": \"2020-06-09T22:55:26.5124865Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b768931c-5d00-4572-a731-431c6189f0da\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b768931c-5d00-4572-a731-431c6189f0da\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"bbCustomRole\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T23:42:41.0368856Z\",\r\n \"updatedOn\": \"2020-06-09T23:42:41.0368856Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae101df6-14ae-4d66-bbe0-a469a964f90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae101df6-14ae-4d66-bbe0-a469a964f90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"zzCustomRole\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-09T23:55:14.2992167Z\",\r\n \"updatedOn\": \"2020-06-09T23:55:14.2992167Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/bec73b96-f2cf-436c-8917-d547da43a149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bec73b96-f2cf-436c-8917-d547da43a149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"customrole123\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-10T01:13:23.0150344Z\",\r\n \"updatedOn\": \"2020-06-10T01:13:23.0150344Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/32d6d31d-e61a-41ec-8386-5dc64b3bc204\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"32d6d31d-e61a-41ec-8386-5dc64b3bc204\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"No RA READ\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-17T06:31:33.3927723Z\",\r\n \"updatedOn\": \"2020-06-17T06:31:33.3927723Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f2b4c36-69f1-4a45-8cda-7d5a9b690408\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f2b4c36-69f1-4a45-8cda-7d5a9b690408\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"No RA WRITE\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/roleAssignments/write\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-17T06:41:55.5369299Z\",\r\n \"updatedOn\": \"2020-06-17T06:41:55.5369299Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a43bed91-a7af-418a-8f07-e135d151b5b8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a43bed91-a7af-418a-8f07-e135d151b5b8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Another tests role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-01T23:09:24.5638411Z\",\r\n \"updatedOn\": \"2020-07-01T23:09:24.5638411Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0a0e83bc-50b9-4c4d-b2c2-3f41e1a8baf2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a0e83bc-50b9-4c4d-b2c2-3f41e1a8baf2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Daoroz-Custom1\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"A role to use when testing various things\\nIt does not grant any real permissions, just the ability to read role definitions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-08T17:44:15.2525393Z\",\r\n \"updatedOn\": \"2020-07-08T17:44:15.2525393Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Daoroz-Custom2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"A role to be used when testing various things\\nIt does not grant any real permissions, just the ability to read role definitions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-08T17:51:15.4187811Z\",\r\n \"updatedOn\": \"2020-07-08T17:51:15.4187811Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/98ee936c-393c-4f03-81a8-6eccfd82d96e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"98ee936c-393c-4f03-81a8-6eccfd82d96e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Role at MG Root\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role at MG Root\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/395544B0-BF41-429D-921F-E1CA2252FCF4\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-24T19:26:02.777463Z\",\r\n \"updatedOn\": \"2019-07-24T19:26:02.777463Z\",\r\n \"createdBy\": \"cdab7ada-d740-47da-a823-ec29c9a68482\",\r\n \"updatedBy\": \"cdab7ada-d740-47da-a823-ec29c9a68482\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa3bf1c6-5da9-47c7-976e-1007e1bc385a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa3bf1c6-5da9-47c7-976e-1007e1bc385a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Role Manish reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Manish reader\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.Management/managementGroups/395544B0-BF41-429D-921F-E1CA2252FCF4\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-07T18:53:42.1390099Z\",\r\n \"updatedOn\": \"2020-05-08T01:15:45.1587505Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"e8df956a-9463-408a-a9be-cf5f46d09b37\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4edfca53-b078-483f-9d0e-c83e4544e854\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4edfca53-b078-483f-9d0e-c83e4544e854\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrPush\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr push\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/pull/read\",\r\n \"Microsoft.ContainerRegistry/registries/push/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-29T17:52:32.5201177Z\",\r\n \"updatedOn\": \"2018-11-13T23:26:19.9749249Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8311e382-0749-4cb8-b61a-304f252e45ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8650193Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:17.7502607Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrPull\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr pull\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/pull/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-22T19:01:56.8227182Z\",\r\n \"updatedOn\": \"2018-11-13T23:22:03.2302457Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f951dda-4ed3-4680-a7ca-43fe172d538d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrImageSigner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr image signer\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/sign/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-15T23:23:08.4038322Z\",\r\n \"updatedOn\": \"2018-10-29T19:06:24.9004422Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6cef56e8-d556-48e5-a04f-b8e64114680f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6cef56e8-d556-48e5-a04f-b8e64114680f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrDelete\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr delete\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/artifacts/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-11T20:19:31.6682804Z\",\r\n \"updatedOn\": \"2019-03-11T20:24:38.9845104Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c2f4ef07-c644-48eb-af81-4b1b4947fb11\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c2f4ef07-c644-48eb-af81-4b1b4947fb11\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrQuarantineReader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr quarantine data reader\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/quarantine/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-16T00:27:39.9596835Z\",\r\n \"updatedOn\": \"2019-10-22T00:12:39.702093Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cdda3590-29a3-44f6-95f2-9f980659eb04\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cdda3590-29a3-44f6-95f2-9f980659eb04\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"AcrQuarantineWriter\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"acr quarantine data writer\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerRegistry/registries/quarantine/read\",\r\n \"Microsoft.ContainerRegistry/registries/quarantine/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-16T00:26:37.587182Z\",\r\n \"updatedOn\": \"2019-10-22T00:10:29.8202164Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c8d4ff99-41c3-41a8-9f60-21dfdad59608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c8d4ff99-41c3-41a8-9f60-21dfdad59608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metricAlerts/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2020-02-12T12:45:46.9200472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Attestation Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read the attestation provider properties\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Attestation/attestationProviders/attestation/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-25T19:42:59.157671Z\",\r\n \"updatedOn\": \"2019-05-10T17:52:38.9036953Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"SYSTEM\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fd1bd22b-8476-40bc-a0bc-69b95687b9f3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fd1bd22b-8476-40bc-a0bc-69b95687b9f3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/hybridRunbookWorkerGroups/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobs/output/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2018-08-14T22:08:48.1147327Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/hybridRunbookWorkerGroups/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/linkedWorkspace/read\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Automation/automationAccounts/jobs/output/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2018-05-10T20:12:39.69782Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Avere Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can create and manage an Avere vFXT cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/proximityPlacementGroups/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/disks/*\",\r\n \"Microsoft.Network/*/read\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/*/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/resources/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-18T20:00:58.9207889Z\",\r\n \"updatedOn\": \"2020-05-27T06:48:54.4896867Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4f8fab4f-1852-4a58-a46a-8eaf358af14a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4f8fab4f-1852-4a58-a46a-8eaf358af14a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Avere Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Used by the Avere vFXT cluster to manage the cluster\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-03-18T20:02:38.3399857Z\",\r\n \"updatedOn\": \"2019-03-29T00:26:37.9205875Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c025889f-8102-4ebf-b32c-fc0c6f0c6bd9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c025889f-8102-4ebf-b32c-fc0c6f0c6bd9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Cluster Admin Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster admin credential action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/managedClusters/listClusterAdminCredential/action\",\r\n \"Microsoft.ContainerService/managedClusters/accessProfiles/listCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-15T21:38:18.5953853Z\",\r\n \"updatedOn\": \"2020-02-07T02:49:24.9715273Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0ab0b1a8-8aac-4efd-b8c2-3ee1fb270be8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0ab0b1a8-8aac-4efd-b8c2-3ee1fb270be8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Cluster User Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"List cluster user credential action.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-15T22:04:53.4037241Z\",\r\n \"updatedOn\": \"2020-02-11T23:37:03.589924Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4abbcc35-e782-43d8-92c5-2d3f1bd2253f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4abbcc35-e782-43d8-92c5-2d3f1bd2253f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Maps Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read map related data from an Azure maps account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Maps/accounts/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-05T19:47:03.472307Z\",\r\n \"updatedOn\": \"2020-04-28T22:33:41.7780319Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/423170ca-a8f6-4b0f-8487-9e4eb8f49bfa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"423170ca-a8f6-4b0f-8487-9e4eb8f49bfa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/edgeSubscriptions/read\",\r\n \"Microsoft.AzureStack/registrations/products/*/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2020-06-29T22:11:17.0759529Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\r\n \"Microsoft.RecoveryServices/locations/backupStatus/action\",\r\n \"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\r\n \"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\r\n \"Microsoft.RecoveryServices/operations/read\",\r\n \"Microsoft.RecoveryServices/locations/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2019-12-17T10:44:35.8361149Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.CostManagement/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2018-09-26T17:45:09.2227236Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/inquire/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\",\r\n \"Microsoft.RecoveryServices/locations/backupStatus/action\",\r\n \"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\r\n \"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\r\n \"Microsoft.RecoveryServices/operations/read\",\r\n \"Microsoft.RecoveryServices/locations/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2019-12-17T11:02:43.9998686Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupstorageconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\",\r\n \"Microsoft.RecoveryServices/locations/backupStatus/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\r\n \"Microsoft.RecoveryServices/operations/read\",\r\n \"Microsoft.RecoveryServices/locations/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2020-03-04T12:12:04.321311Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Blockchain Member Node Access (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for access to Blockchain Member nodes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Blockchain/blockchainMembers/transactionNodes/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Blockchain/blockchainMembers/transactionNodes/connect/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T10:33:01.9604839Z\",\r\n \"updatedOn\": \"2018-12-21T10:33:58.0042162Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/31a002a1-acaf-453e-8a5b-297c9ca1ea24\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"31a002a1-acaf-453e-8a5b-297c9ca1ea24\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:42:18.897821Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:39.7576926Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:30.8964641Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:42:23.2893077Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-04-25T00:37:56.5416086Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:43.0770473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read and list keys of Cognitive Services.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/listkeys/action\",\r\n \"Microsoft.Insights/alertRules/read\",\r\n \"Microsoft.Insights/diagnosticSettings/read\",\r\n \"Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.Insights/metricdefinitions/read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-08T23:23:43.7701274Z\",\r\n \"updatedOn\": \"2019-02-13T19:53:56.7209248Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a97b65f3-24c7-4388-baec-2e87135dc908\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Data Reader (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read Cognitive Services data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-02-13T20:02:12.6849986Z\",\r\n \"updatedOn\": \"2019-02-13T22:53:55.167529Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b59867f0-fa02-499b-be73-45a86b5b3e1c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b59867f0-fa02-499b-be73-45a86b5b3e1c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create, read, update, delete and manage keys of Cognitive Services.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.CognitiveServices/*\",\r\n \"Microsoft.Features/features/read\",\r\n \"Microsoft.Features/providers/features/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logDefinitions/read\",\r\n \"Microsoft.Insights/metricdefinitions/read\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-08T23:18:39.2257848Z\",\r\n \"updatedOn\": \"2018-09-14T00:53:37.7546808Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CosmosBackupOperator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can submit restore request for a Cosmos DB database or a container for an account\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DocumentDB/databaseAccounts/backup/action\",\r\n \"Microsoft.DocumentDB/databaseAccounts/restore/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-07T19:47:14.965156Z\",\r\n \"updatedOn\": \"2018-12-07T19:52:21.9969834Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/db7b14f2-5adf-42da-9f96-f2ee17bab5cb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"db7b14f2-5adf-42da-9f96-f2ee17bab5cb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\",\r\n \"Microsoft.Blueprint/blueprintAssignments/write\",\r\n \"Microsoft.Blueprint/blueprintAssignments/delete\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:38.458061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Insights/MetricDefinitions/read\",\r\n \"Microsoft.Insights/Metrics/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2018-02-21T01:36:59.6186231Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cost Management Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view costs and manage cost configuration (e.g. budgets, exports)\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Consumption/*\",\r\n \"Microsoft.CostManagement/*\",\r\n \"Microsoft.Billing/billingPeriods/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Advisor/configurations/read\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Management/managementGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-14T16:09:22.8834827Z\",\r\n \"updatedOn\": \"2019-06-25T21:25:06.8686379Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/434105ed-43f6-45c7-a02f-909b2ba83430\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"434105ed-43f6-45c7-a02f-909b2ba83430\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cost Management Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view cost data and configuration (e.g. budgets, exports)\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.CostManagement/*/read\",\r\n \"Microsoft.Billing/billingPeriods/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Advisor/configurations/read\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Management/managementGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-14T16:09:22.8834827Z\",\r\n \"updatedOn\": \"2019-06-25T20:59:11.5762937Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/72fafb9e-0641-4937-9268-a91bfd8191a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"72fafb9e-0641-4937-9268-a91bfd8191a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Box Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything under Data Box Service except giving access to others.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Databox/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-07-27T08:28:42.714021Z\",\r\n \"updatedOn\": \"2018-07-27T08:36:56.3827309Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/add466c9-e687-43fc-8d98-dfcf8d720be5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"add466c9-e687-43fc-8d98-dfcf8d720be5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Box Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Data Box Service except creating order or editing order details and giving access to others.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Databox/*/read\",\r\n \"Microsoft.Databox/jobs/listsecrets/action\",\r\n \"Microsoft.Databox/jobs/listcredentials/action\",\r\n \"Microsoft.Databox/locations/availableSkus/action\",\r\n \"Microsoft.Databox/locations/validateInputs/action\",\r\n \"Microsoft.Databox/locations/regionConfiguration/action\",\r\n \"Microsoft.Databox/locations/validateAddress/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-07-27T08:26:21.9284772Z\",\r\n \"updatedOn\": \"2020-01-24T05:39:52.6143537Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/028f4ed7-e2a9-465e-a8f4-9c0ffdfdc027\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"028f4ed7-e2a9-465e-a8f4-9c0ffdfdc027\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.DataFactory/factories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.EventGrid/eventSubscriptions/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2020-02-14T19:49:21.5789216Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Purger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can purge analytics data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Insights/components/purge/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/purge/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-04-30T22:39:49.61677Z\",\r\n \"updatedOn\": \"2018-04-30T22:44:15.1171162Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/150f5e0c-0603-4f03-8c7f-cf70034c4e90\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"150f5e0c-0603-4f03-8c7f-cf70034c4e90\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/ensureCurrentUserProfile/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.DevTestLab/labs/virtualmachines/listApplicableSchedules/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/getRdpFileContents/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2019-05-08T11:27:34.8855476Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-11-21T01:38:32.0948484Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid EventSubscription Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage EventGrid event subscription operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/*\",\r\n \"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-08T23:27:28.3130743Z\",\r\n \"updatedOn\": \"2019-01-08T00:06:34.3543171Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/428e0ff0-5e57-4d9c-a221-2c70d0e0a443\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"428e0ff0-5e57-4d9c-a221-2c70d0e0a443\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"EventGrid EventSubscription Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read EventGrid event subscriptions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.EventGrid/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/eventSubscriptions/read\",\r\n \"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-10-09T17:29:28.1417894Z\",\r\n \"updatedOn\": \"2019-01-08T00:05:40.2884365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2414bbcf-6497-4faf-8c65-045460748405\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2414bbcf-6497-4faf-8c65-045460748405\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Graph Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage all aspects of the Enterprise Graph - Ontology, Schema mapping, Conflation and Conversational AI and Ingestions\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/conflation/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/conflation/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/sourceschema/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/sourceschema/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/intentclassification/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/intentclassification/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ingestion/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ingestion/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ontology/read\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/ontology/write\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/delete\",\r\n \"Microsoft.EnterpriseKnowledgeGraph/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-02-23T21:07:22.5844236Z\",\r\n \"updatedOn\": \"2019-02-28T20:21:18.9318073Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b60367af-1334-4454-b71e-769d9a4f83d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b60367af-1334-4454-b71e-769d9a4f83d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"HDInsight Domain Services Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can Read, Create, Modify and Delete Domain Services related operations needed for HDInsight Enterprise Security Package\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AAD/*/read\",\r\n \"Microsoft.AAD/domainServices/*/read\",\r\n \"Microsoft.AAD/domainServices/oucontainer/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-09-12T22:42:51.7451109Z\",\r\n \"updatedOn\": \"2018-09-12T23:06:45.7641599Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d8d5a11-05d3-4bda-a417-a08778121c7c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d8d5a11-05d3-4bda-a417-a08778121c7c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:32:00.9996357Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\",\r\n \"Microsoft.KeyVault/hsmPools/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-25T17:08:28.5184971Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:49.5373075Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Knowledge Consumer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Knowledge Read permission to consume Enterprise Graph Knowledge using entity search and graph query\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-02-23T21:23:31.4037552Z\",\r\n \"updatedOn\": \"2019-02-28T20:25:00.7369384Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee361c5d-f7b5-4119-b4b6-892157c8f64c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee361c5d-f7b5-4119-b4b6-892157c8f64c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Lab Creator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create new labs under your Azure Lab Accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.LabServices/labAccounts/*/read\",\r\n \"Microsoft.LabServices/labAccounts/createLab/action\",\r\n \"Microsoft.LabServices/labAccounts/getPricingAndAvailability/action\",\r\n \"Microsoft.LabServices/labAccounts/getRestrictionsAndUsage/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-01-18T23:38:58.1036141Z\",\r\n \"updatedOn\": \"2020-07-10T17:45:43.2289715Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b97fb8bc-a8b2-4522-a38b-dd33c7e65ead\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b97fb8bc-a8b2-4522-a38b-dd33c7e65ead\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2018-01-30T18:08:26.0438523Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2020-03-26T22:57:55.366783Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/metricAlerts/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/customApis/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2019-10-15T04:28:56.3265986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metricAlerts/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/customApis/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2019-10-15T04:31:27.7685427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Application Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read and perform actions on Managed Application resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Solutions/applications/read\",\r\n \"Microsoft.Solutions/*/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-07-27T00:59:33.7988813Z\",\r\n \"updatedOn\": \"2019-02-20T01:09:55.1593079Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c7393b34-138c-406f-901b-d8cf2b17e6ae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c7393b34-138c-406f-901b-d8cf2b17e6ae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Applications Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read resources in a managed app and request JIT access.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Solutions/jitRequests/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-09-06T00:33:58.3651522Z\",\r\n \"updatedOn\": \"2018-09-06T00:33:58.3651522Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b9331d33-8a36-4f8c-b097-4f54124fdb44\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b9331d33-8a36-4f8c-b097-4f54124fdb44\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Identity Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read and Assign User Assigned Identity\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/*/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/*/assign/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-14T19:52:04.3924594Z\",\r\n \"updatedOn\": \"2017-12-14T22:16:00.1483256Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f1a07417-d97a-45cb-824c-7a7467783830\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Identity Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, Read, Update, and Delete User Assigned Identity\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities/delete\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-14T19:53:42.8804692Z\",\r\n \"updatedOn\": \"2019-06-20T21:51:27.0850433Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e40ec5ca-96e0-45a2-b4ff-59039f2c2b59\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e40ec5ca-96e0-45a2-b4ff-59039f2c2b59\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Management Group Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Management Group Contributor Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/managementGroups/delete\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Management/managementGroups/subscriptions/delete\",\r\n \"Microsoft.Management/managementGroups/subscriptions/write\",\r\n \"Microsoft.Management/managementGroups/write\",\r\n \"Microsoft.Management/managementGroups/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-06-22T00:28:29.0523964Z\",\r\n \"updatedOn\": \"2020-07-06T18:13:34.9045672Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Management Group Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Management Group Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Management/managementGroups/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-06-22T00:31:03.4295347Z\",\r\n \"updatedOn\": \"2020-07-06T18:09:27.1441705Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ac63b705-f282-497d-ac71-919bf39d939d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ac63b705-f282-497d-ac71-919bf39d939d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Metrics Publisher\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Enables publishing metrics against Azure resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Insights/Metrics/Write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-08-14T00:36:16.5610279Z\",\r\n \"updatedOn\": \"2018-08-14T00:37:18.1465065Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3913510d-42f4-4e42-8a64-420c390055eb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2018-01-30T18:08:27.262625Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.AlertsManagement/alerts/*\",\r\n \"Microsoft.AlertsManagement/alertsSummary/*\",\r\n \"Microsoft.Insights/actiongroups/*\",\r\n \"Microsoft.Insights/activityLogAlerts/*\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/metricalerts/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/scheduledqueryrules/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.Insights/workbooks/*\",\r\n \"Microsoft.Insights/privateLinkScopes/*\",\r\n \"Microsoft.Insights/privateLinkScopeOperationStatuses/*\",\r\n \"Microsoft.OperationalInsights/workspaces/write\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.WorkloadMonitor/monitors/*\",\r\n \"Microsoft.WorkloadMonitor/notificationSettings/*\",\r\n \"Microsoft.AlertsManagement/smartDetectorAlertRules/*\",\r\n \"Microsoft.AlertsManagement/actionRules/*\",\r\n \"Microsoft.AlertsManagement/smartGroups/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2020-04-19T16:03:16.7692305Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:42:16.2033878Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:32.2101122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },{\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/register/action\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2020-07-16T00:20:31.8240854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader and Data Access\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything but will not let you delete or create a storage account or contained resource. It will also allow read/write access to all data contained in a storage account via access to storage account keys.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/ListAccountSas/action\",\r\n \"Microsoft.Storage/storageAccounts/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-03-27T23:20:46.1498906Z\",\r\n \"updatedOn\": \"2019-04-04T23:41:26.1056261Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c12c1c16-33a1-487b-954d-41c89c60f349\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c12c1c16-33a1-487b-954d-41c89c60f349\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Users with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Authorization/policysetdefinitions/*\",\r\n \"Microsoft.PolicyInsights/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2019-11-20T20:26:12.8811365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:42:24.8360756Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T20:42:21.8687229Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2019-03-12T21:12:48.635016Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager (Legacy)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"This is a legacy role. Please use Security Administrator instead\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2018-03-08T18:18:48.618362Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Management/managementGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2018-06-28T17:27:23.106561Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Spatial Anchors Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage spatial anchors in your account, but not delete them\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/create/action\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T17:57:41.1420864Z\",\r\n \"updatedOn\": \"2019-02-13T06:13:39.8686435Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8bbe83f1-e2a6-4df7-8cb4-4e04d4e5c827\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8bbe83f1-e2a6-4df7-8cb4-4e04d4e5c827\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery service except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationOperationStatus/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2019-11-07T06:13:49.0760858Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/switchprotection/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2019-08-28T12:00:57.4472826Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Spatial Anchors Account Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you locate and read properties of spatial anchors in your account\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T17:57:42.9271004Z\",\r\n \"updatedOn\": \"2019-02-13T06:16:15.3170663Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d51204f-eb77-4b1c-b86a-2ec626c49413\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d51204f-eb77-4b1c-b86a-2ec626c49413\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Spatial Anchors Account Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage spatial anchors in your account, including deleting them\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/create/action\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/delete\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\",\r\n \"Microsoft.MixedReality/SpatialAnchorsAccounts/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-21T17:57:43.5489832Z\",\r\n \"updatedOn\": \"2019-02-13T06:15:31.8572222Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70bbe301-9835-447d-afdd-19eb3167307c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70bbe301-9835-447d-afdd-19eb3167307c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Managed Instance Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL Managed Instances and required network configuration, but can’t give access to others.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/*\",\r\n \"Microsoft.Network/routeTables/*\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/locations/instanceFailoverGroups/*\",\r\n \"Microsoft.Sql/managedInstances/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/*\",\r\n \"Microsoft.Network/virtualNetworks/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-10T22:57:14.2937983Z\",\r\n \"updatedOn\": \"2020-06-24T22:56:31.0576055Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4939a1f6-9ae0-4e48-a1e0-f2cbe897382d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4939a1f6-9ae0-4e48-a1e0-f2cbe897382d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/extendedAuditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/vulnerabilityAssessments/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-28T22:44:35.864967Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/transparentDataEncryption/*\",\r\n \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/extendedAuditingSettings/read\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/extendedAuditingSettings/read\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/transparentDataEncryption/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/vulnerabilityAssessments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-16T18:44:40.4607572Z\",\r\n \"updatedOn\": \"2019-08-08T22:58:22.2532171Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, including accessing storage account keys which provide full access to storage account data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2019-05-29T20:56:33.9582501Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Insights/metrics/read\",\r\n \"Microsoft.Insights/metricDefinitions/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/extendedAuditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/extendedAuditingSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/vulnerabilityAssessments/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-28T22:44:36.5466043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write and delete access to Azure Storage blob containers and data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/move/action\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2020-03-30T22:49:07.866942Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ba92f5b4-2d11-453d-a403-e96b0029c9fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Storage blob containers and data, including assigning POSIX access control.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/*\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-12-04T07:02:58.2775257Z\",\r\n \"updatedOn\": \"2019-07-16T21:30:33.7002563Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b7e6dc6d-f1e8-4753-8033-0f276bb0955b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to Azure Storage blob containers and data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2019-07-15T22:01:25.5409721Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write, and delete access to Azure Storage queues and queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/delete\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/delete\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/write\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2019-03-05T21:58:02.7367128Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/974c5e8b-45b9-4653-ba55-5f855dd0fb88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"974c5e8b-45b9-4653-ba55-5f855dd0fb88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Message Processor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for peek, receive, and delete access to Azure Storage queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\",\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/process/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-01-28T22:27:04.8947111Z\",\r\n \"updatedOn\": \"2019-03-05T22:05:46.1259125Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8a0f0c08-91a1-4084-bc3d-661d67233fed\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8a0f0c08-91a1-4084-bc3d-661d67233fed\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Message Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for sending of Azure Storage queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/add/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-01-28T22:28:34.7459724Z\",\r\n \"updatedOn\": \"2019-03-05T22:11:49.6383892Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c6a89b2d-59bc-44d0-9896-0f6e12d7b80a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c6a89b2d-59bc-44d0-9896-0f6e12d7b80a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Queue Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to Azure Storage queues and queue messages\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-21T00:01:24.7972312Z\",\r\n \"updatedOn\": \"2019-03-05T22:17:32.1779262Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/19e7f393-937e-4f77-808e-94535e297925\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"19e7f393-937e-4f77-808e-94535e297925\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Administrator Login\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View Virtual Machines in the portal and login as administrator\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Compute/virtualMachines/login/action\",\r\n \"Microsoft.Compute/virtualMachines/loginAsAdmin/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-02-09T18:36:13.3315744Z\",\r\n \"updatedOn\": \"2018-05-09T22:17:57.0514548Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/1c0163c0-47e6-4577-8991-ea5c82e286e4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1c0163c0-47e6-4577-8991-ea5c82e286e4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:12.6807454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine User Login\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View Virtual Machines in the portal and login as a regular user.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Compute/virtualMachines/login/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2018-02-09T18:36:13.3315744Z\",\r\n \"updatedOn\": \"2018-05-09T22:18:52.2780979Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb879df8-f326-4884-b1cf-06f3ad86be52\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb879df8-f326-4884-b1cf-06f3ad86be52\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they're connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.SqlVirtualMachine/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2020-02-03T19:38:21.2170228Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\",\r\n \"Microsoft.Web/hostingEnvironments/Join/Action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-03-26T18:17:34.5018645Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-05-12T23:10:23.6193952Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:46.9407288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Bus Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Service Bus resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceBus/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ServiceBus/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-16T21:33:36.7445745Z\",\r\n \"updatedOn\": \"2019-08-21T22:47:11.3982905Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"090c5cfd-751d-490a-894a-3ce6f1109419\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Event Hubs Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for full access to Azure Event Hubs resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventHub/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-16T21:34:29.8656362Z\",\r\n \"updatedOn\": \"2019-08-21T22:58:57.7584645Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f526a384-b230-433a-b45c-95f59c4a2dec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f526a384-b230-433a-b45c-95f59c4a2dec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Attestation Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read write or delete the attestation provider instance\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Attestation/attestationProviders/attestation/read\",\r\n \"Microsoft.Attestation/attestationProviders/attestation/write\",\r\n \"Microsoft.Attestation/attestationProviders/attestation/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-19T00:24:09.3354177Z\",\r\n \"updatedOn\": \"2019-05-10T17:59:06.3448436Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/bbf86eb8-f7b4-4cce-96e4-18cddf81d86e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bbf86eb8-f7b4-4cce-96e4-18cddf81d86e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"HDInsight Cluster Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read and modify HDInsight cluster configurations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HDInsight/*/read\",\r\n \"Microsoft.HDInsight/clusters/getGatewaySettings/action\",\r\n \"Microsoft.HDInsight/clusters/updateGatewaySettings/action\",\r\n \"Microsoft.HDInsight/clusters/configurations/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-20T00:03:01.7110732Z\",\r\n \"updatedOn\": \"2019-04-28T02:34:17.4679314Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/61ed4efc-fab3-44fd-b111-e24485cc132a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"61ed4efc-fab3-44fd-b111-e24485cc132a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Cosmos DB accounts, but not access data in them. Prevents access to account keys and connection strings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlyKeys/*\",\r\n \"Microsoft.DocumentDB/databaseAccounts/regenerateKey/*\",\r\n \"Microsoft.DocumentDB/databaseAccounts/listKeys/*\",\r\n \"Microsoft.DocumentDB/databaseAccounts/listConnectionStrings/*\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-26T17:01:17.0169383Z\",\r\n \"updatedOn\": \"2019-11-21T01:34:13.3746345Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/230815da-be43-4aae-9cb4-875f7bd000aa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"230815da-be43-4aae-9cb4-875f7bd000aa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Hybrid Server Resource Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read, write, delete, and re-onboard Hybrid servers to the Hybrid Resource Provider.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/*\",\r\n \"Microsoft.HybridCompute/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-29T21:39:32.3132923Z\",\r\n \"updatedOn\": \"2019-05-06T20:08:25.3180258Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/48b40c6e-82e0-4eb3-90d5-19e40f49b624\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"48b40c6e-82e0-4eb3-90d5-19e40f49b624\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Hybrid Server Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can onboard new Hybrid servers to the Hybrid Resource Provider.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-04-29T22:36:28.1873756Z\",\r\n \"updatedOn\": \"2019-05-06T20:09:17.9364269Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d1e5ee4-7c68-4a71-ac8b-0739630a3dfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d1e5ee4-7c68-4a71-ac8b-0739630a3dfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Event Hubs Data Receiver\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows receive access to Azure Event Hubs resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/*/eventhubs/consumergroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventHub/*/receive/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:25:21.1056666Z\",\r\n \"updatedOn\": \"2019-08-21T23:00:32.6225396Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a638d3c7-ab3a-418d-83e6-5f17a39d4fde\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a638d3c7-ab3a-418d-83e6-5f17a39d4fde\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Event Hubs Data Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows send access to Azure Event Hubs resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.EventHub/*/eventhubs/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.EventHub/*/send/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:26:12.4673714Z\",\r\n \"updatedOn\": \"2019-08-21T23:02:26.6155679Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2b629674-e913-4c01-ae53-ef4638d8f975\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2b629674-e913-4c01-ae53-ef4638d8f975\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Bus Data Receiver\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for receive access to Azure Service Bus resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceBus/*/queues/read\",\r\n \"Microsoft.ServiceBus/*/topics/read\",\r\n \"Microsoft.ServiceBus/*/topics/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ServiceBus/*/receive/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:43:01.6343849Z\",\r\n \"updatedOn\": \"2019-08-21T22:55:24.3423558Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4f6d3b9b-027b-4f4c-9142-0e5a2a2247e0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4f6d3b9b-027b-4f4c-9142-0e5a2a2247e0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Service Bus Data Sender\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for send access to Azure Service Bus resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ServiceBus/*/queues/read\",\r\n \"Microsoft.ServiceBus/*/topics/read\",\r\n \"Microsoft.ServiceBus/*/topics/subscriptions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ServiceBus/*/send/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-05-10T06:43:46.7046934Z\",\r\n \"updatedOn\": \"2019-08-21T22:57:12.2555683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/69a216fc-b8fb-44d8-bc22-1f3c2cd27a39\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"69a216fc-b8fb-44d8-bc22-1f3c2cd27a39\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage File Data SMB Share Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read access to Azure File Share over SMB\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-01T20:19:31.8620471Z\",\r\n \"updatedOn\": \"2019-08-07T01:00:41.9223409Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/aba4ae5f-2193-4029-9191-0cb91df5e314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"aba4ae5f-2193-4029-9191-0cb91df5e314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage File Data SMB Share Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write, and delete access in Azure Storage file shares over SMB\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/write\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-01T20:54:35.483431Z\",\r\n \"updatedOn\": \"2019-08-07T01:05:24.4309872Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0c867c2a-1d8c-454a-a3db-ab2ea1bdc8bb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0c867c2a-1d8c-454a-a3db-ab2ea1bdc8bb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Private DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage private DNS zone resources, but not the virtual networks they are linked to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Network/privateDnsZones/*\",\r\n \"Microsoft.Network/privateDnsOperationResults/*\",\r\n \"Microsoft.Network/privateDnsOperationStatuses/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/join/action\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-10T19:31:15.5645518Z\",\r\n \"updatedOn\": \"2019-07-11T21:12:01.7260648Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b12aa53e-6015-4669-85d0-8515ebb3ae7f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b12aa53e-6015-4669-85d0-8515ebb3ae7f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Blob Delegator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for generation of a user delegation key which can be used to sign SAS tokens\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-07-23T00:51:16.3376761Z\",\r\n \"updatedOn\": \"2019-07-23T01:14:31.8778475Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/db58b8e5-c6ad-4a2a-8342-4190687cbf4a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"db58b8e5-c6ad-4a2a-8342-4190687cbf4a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Desktop Virtualization User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows user to use the applications in an application group.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DesktopVirtualization/applicationGroups/useApplications/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-07T00:29:03.8727621Z\",\r\n \"updatedOn\": \"2019-08-07T00:29:03.8727621Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/1d18fff3-a72a-46b5-b4a9-0b38a3cd7e63\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"1d18fff3-a72a-46b5-b4a9-0b38a3cd7e63\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage File Data SMB Share Elevated Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for read, write, delete and modify NTFS permission access in Azure Storage file shares over SMB\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/write\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/delete\",\r\n \"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/modifypermissions/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-07T01:35:36.9935457Z\",\r\n \"updatedOn\": \"2019-08-07T01:35:36.9935457Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a7264617-510b-434b-a828-9731dc254ea7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a7264617-510b-434b-a828-9731dc254ea7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Blueprint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage blueprint definitions, but not assign them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Blueprint/blueprints/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-14T21:55:16.9683949Z\",\r\n \"updatedOn\": \"2019-08-17T00:10:55.7494677Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41077137-e803-4205-871c-5a86e6a753b4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41077137-e803-4205-871c-5a86e6a753b4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Blueprint Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can assign existing published blueprints, but cannot create new blueprints. NOTE: this only works if the assignment is done with a user-assigned managed identity.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Blueprint/blueprintAssignments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-14T21:56:48.7897875Z\",\r\n \"updatedOn\": \"2019-08-17T00:06:02.6509737Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/437d2ced-4a38-4302-8479-ed2bcb43d090\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"437d2ced-4a38-4302-8479-ed2bcb43d090\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Sentinel Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Sentinel Contributor\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SecurityInsights/*\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationsManagement/solutions/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.Insights/workbooks/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T16:39:03.8725173Z\",\r\n \"updatedOn\": \"2020-03-11T15:20:51.6768533Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ab8e14d6-4a74-4a29-9ba8-549422addade\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ab8e14d6-4a74-4a29-9ba8-549422addade\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Sentinel Responder\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Sentinel Responder\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SecurityInsights/*/read\",\r\n \"Microsoft.SecurityInsights/dataConnectorsCheckRequirements/action\",\r\n \"Microsoft.SecurityInsights/cases/*\",\r\n \"Microsoft.SecurityInsights/incidents/*\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\r\n \"Microsoft.OperationsManagement/solutions/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.Insights/workbooks/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T16:54:07.6467264Z\",\r\n \"updatedOn\": \"2020-04-02T08:42:10.2864085Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/3e150937-b8fe-4cfb-8069-0eaf05ecd056\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3e150937-b8fe-4cfb-8069-0eaf05ecd056\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Sentinel Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Azure Sentinel Reader\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SecurityInsights/*/read\",\r\n \"Microsoft.SecurityInsights/dataConnectorsCheckRequirements/action\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/LinkedServices/read\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\r\n \"Microsoft.OperationsManagement/solutions/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/read\",\r\n \"Microsoft.OperationalInsights/workspaces/query/*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/dataSources/read\",\r\n \"Microsoft.Insights/workbooks/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T16:58:50.1132117Z\",\r\n \"updatedOn\": \"2020-04-02T08:34:51.7222706Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d289c81-5878-46d4-8554-54e1e3d8b5cb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d289c81-5878-46d4-8554-54e1e3d8b5cb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Workbook Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read workbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"microsoft.insights/workbooks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T20:56:17.680814Z\",\r\n \"updatedOn\": \"2019-08-28T21:43:05.0202124Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b279062a-9be3-42a0-92ae-8b3cf002ec4d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b279062a-9be3-42a0-92ae-8b3cf002ec4d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Workbook Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can save shared workbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/workbooks/write\",\r\n \"Microsoft.Insights/workbooks/delete\",\r\n \"Microsoft.Insights/workbooks/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-08-28T20:59:42.4820277Z\",\r\n \"updatedOn\": \"2020-01-22T00:05:20.938721Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e8ddcd69-c73f-4f9f-9844-4100522f16ad\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e8ddcd69-c73f-4f9f-9844-4100522f16ad\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Policy Insights Data Writer (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to resource policies and write access to resource component policy events.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/policyassignments/read\",\r\n \"Microsoft.Authorization/policydefinitions/read\",\r\n \"Microsoft.Authorization/policysetdefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.PolicyInsights/checkDataPolicyCompliance/action\",\r\n \"Microsoft.PolicyInsights/policyEvents/logDataEvents/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-09-19T19:35:20.9504127Z\",\r\n \"updatedOn\": \"2019-09-19T19:37:02.5331596Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/66bb4e9e-b016-4a94-8249-4c0511c2be84\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"66bb4e9e-b016-4a94-8249-4c0511c2be84\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SignalR AccessKey Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read SignalR Service Access Keys\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SignalRService/*/read\",\r\n \"Microsoft.SignalRService/SignalR/listkeys/action\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-09-20T09:33:19.6236874Z\",\r\n \"updatedOn\": \"2019-09-20T09:33:19.6236874Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/04165923-9d83-45d5-8227-78b77b0a687e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"04165923-9d83-45d5-8227-78b77b0a687e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SignalR Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create, Read, Update, and Delete SignalR service resources\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.SignalRService/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-09-20T09:58:09.0009662Z\",\r\n \"updatedOn\": \"2019-09-20T09:58:09.0009662Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8cf5e20a-e4b2-4e9d-b3a1-5ceb692c2761\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8cf5e20a-e4b2-4e9d-b3a1-5ceb692c2761\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Connected Machine Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can onboard Azure Connected Machines.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-23T20:15:07.137287Z\",\r\n \"updatedOn\": \"2019-11-03T18:26:59.2060282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b64e21ea-ac4e-4cdf-9dc9-5b892992bee7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b64e21ea-ac4e-4cdf-9dc9-5b892992bee7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Connected Machine Resource Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read, write, delete and re-onboard Azure Connected Machines.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.HybridCompute/machines/read\",\r\n \"Microsoft.HybridCompute/machines/write\",\r\n \"Microsoft.HybridCompute/machines/delete\",\r\n \"Microsoft.HybridCompute/machines/reconnect/action\",\r\n \"Microsoft.HybridCompute/machines/extensions/write\",\r\n \"Microsoft.HybridCompute/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-23T20:24:59.1474607Z\",\r\n \"updatedOn\": \"2020-03-19T22:39:54.1226122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cd570a14-e51a-42ad-bac8-bafd67325302\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cd570a14-e51a-42ad-bac8-bafd67325302\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Services Registration assignment Delete Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Managed Services Registration Assignment Delete Role allows the managing tenant users to delete the registration assignment assigned to their tenant.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ManagedServices/registrationAssignments/read\",\r\n \"Microsoft.ManagedServices/registrationAssignments/delete\",\r\n \"Microsoft.ManagedServices/operationStatuses/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-23T22:33:33.1183469Z\",\r\n \"updatedOn\": \"2019-10-24T21:49:09.3875276Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/91c1777a-f3dc-4fae-b103-61d183457e46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"91c1777a-f3dc-4fae-b103-61d183457e46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Configuration Data Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows full access to App Configuration data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppConfiguration/configurationStores/*/read\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/write\",\r\n \"Microsoft.AppConfiguration/configurationStores/*/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-25T18:41:40.1185063Z\",\r\n \"updatedOn\": \"2019-10-25T18:41:40.1185063Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"App Configuration Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to App Configuration data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.AppConfiguration/configurationStores/*/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-10-25T18:45:33.7975332Z\",\r\n \"updatedOn\": \"2019-10-25T18:45:33.7975332Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/516239f1-63e1-4d78-a4de-a74fb236a071\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"516239f1-63e1-4d78-a4de-a74fb236a071\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Kubernetes Cluster - Azure Arc Onboarding\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role definition to authorize any user/service to create connectedClusters resource\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/Write\",\r\n \"Microsoft.Kubernetes/connectedClusters/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-11-18T17:00:02.2087147Z\",\r\n \"updatedOn\": \"2020-02-10T22:40:48.3317559Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/34e09817-6cbe-4d01-b1a2-e0eac5743d41\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"34e09817-6cbe-4d01-b1a2-e0eac5743d41\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Experimentation Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Experimentation Contributor\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experiment/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/emergencystop/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/write\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-13T00:08:08.6679591Z\",\r\n \"updatedOn\": \"2020-07-07T20:17:06.8223079Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a22b-edd6ce5c915c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f646f1b-fa08-80eb-a22b-edd6ce5c915c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services QnA Maker Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Let’s you read and test a KB only.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-17T18:26:12.3329439Z\",\r\n \"updatedOn\": \"2020-05-08T12:03:46.9266538Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/466ccd10-b268-4a11-b098-b4849f024126\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"466ccd10-b268-4a11-b098-b4849f024126\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services QnA Maker Editor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Let’s you create, edit, import and export a KB. You cannot publish or delete a KB.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\",\r\n \"Microsoft.Authorization/roleAssignments/read\",\r\n \"Microsoft.Authorization/roleDefinitions/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/create/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/train/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/refreshkeys/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker/operations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/download/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/create/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/generateanswer/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/train/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/refreshkeys/action\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/read\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/write\",\r\n \"Microsoft.CognitiveServices/accounts/QnAMaker.v2/operations/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-17T18:27:30.6434556Z\",\r\n \"updatedOn\": \"2020-05-08T12:02:34.0065552Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f4cc2bf9-21be-47a1-bdf1-5c5804381025\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f4cc2bf9-21be-47a1-bdf1-5c5804381025\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Experimentation Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Experimentation Administrator\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/admin/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/write\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/delete\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experimentadmin/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experiment/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/emergencystop/action\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/write\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/delete\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/admin/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2019-12-18T22:46:33.1116612Z\",\r\n \"updatedOn\": \"2020-04-22T20:10:20.1216929Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a33b-edd6ce5c915c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f646f1b-fa08-80eb-a33b-edd6ce5c915c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Remote Rendering Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides user with conversion, manage session, rendering and diagnostics capabilities for Azure Remote Rendering\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/convert/action\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/convert/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/convert/delete\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/action\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/delete\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/render/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/diagnostic/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-01-23T18:15:31.3450348Z\",\r\n \"updatedOn\": \"2020-01-23T18:15:31.3450348Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/3df8b902-2a6f-47c7-8cc5-360e9b272a7e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3df8b902-2a6f-47c7-8cc5-360e9b272a7e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Remote Rendering Client\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides user with manage session, rendering and diagnostics capabilities for Azure Remote Rendering.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/action\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/delete\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/render/read\",\r\n \"Microsoft.MixedReality/RemoteRenderingAccounts/diagnostic/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-01-23T18:32:52.7069824Z\",\r\n \"updatedOn\": \"2020-01-23T18:32:52.7069824Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d39065c4-c120-43c9-ab0a-63eed9795f0a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d39065c4-c120-43c9-ab0a-63eed9795f0a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Managed Application Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows for creating managed application resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Solutions/applications/*\",\r\n \"Microsoft.Solutions/register/action\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/*\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-08T03:39:11.8933879Z\",\r\n \"updatedOn\": \"2020-03-23T02:12:30.0853051Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/641177b8-a67a-45b9-a033-47bc880bb21e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"641177b8-a67a-45b9-a033-47bc880bb21e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Assessment Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you push assessments to Security Center\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Security/assessments/write\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-13T08:23:47.7656161Z\",\r\n \"updatedOn\": \"2020-02-13T08:23:47.7656161Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/612c2aa1-cb24-443b-ac28-3ab7272de6f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"612c2aa1-cb24-443b-ac28-3ab7272de6f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Tag Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage tags on entities, without providing access to the entities themselves.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resources/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/tags/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-18T23:19:19.2977644Z\",\r\n \"updatedOn\": \"2020-02-19T00:04:58.9214962Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4a9ae827-6dc8-4573-8ac7-8239d42aa03f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4a9ae827-6dc8-4573-8ac7-8239d42aa03f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Integration Service Environment Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows developers to create and update workflows, integration accounts and API connections in integration service environments.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Logic/integrationServiceEnvironments/read\",\r\n \"Microsoft.Logic/integrationServiceEnvironments/join/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-20T21:09:00.5627875Z\",\r\n \"updatedOn\": \"2020-02-20T21:36:24.619073Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c7aa55d3-1abb-444a-a5ca-5e51e485d6ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c7aa55d3-1abb-444a-a5ca-5e51e485d6ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Integration Service Environment Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage integration service environments, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Logic/integrationServiceEnvironments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-20T21:10:44.4008319Z\",\r\n \"updatedOn\": \"2020-02-20T21:41:56.7983599Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a41e2c5b-bd99-4a07-88f4-9bf657a760b8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a41e2c5b-bd99-4a07-88f4-9bf657a760b8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Marketplace Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Administrator of marketplace resource provider\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Marketplace/privateStores/write\",\r\n \"Microsoft.Marketplace/privateStores/action\",\r\n \"Microsoft.Marketplace/privateStores/delete\",\r\n \"Microsoft.Marketplace/privateStores/offers/write\",\r\n \"Microsoft.Marketplace/privateStores/offers/action\",\r\n \"Microsoft.Marketplace/privateStores/offers/delete\",\r\n \"Microsoft.Authorization/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-26T14:19:50.9681015Z\",\r\n \"updatedOn\": \"2020-06-23T05:54:42.8370671Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dd920d6d-f481-47f1-b461-f338c46b2d9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dd920d6d-f481-47f1-b461-f338c46b2d9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service Contributor Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read and write Azure Kubernetes Service clusters\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ContainerService/managedClusters/read\",\r\n \"Microsoft.ContainerService/managedClusters/write\",\r\n \"Microsoft.Resources/deployments/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-02-27T19:27:15.073997Z\",\r\n \"updatedOn\": \"2020-02-28T02:34:14.5162305Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Digital Twins Reader (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only role for Digital Twins data-plane properties\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DigitalTwins/digitaltwins/read\",\r\n \"Microsoft.DigitalTwins/digitaltwins/relationships/read\",\r\n \"Microsoft.DigitalTwins/eventroutes/read\",\r\n \"Microsoft.DigitalTwins/models/read\",\r\n \"Microsoft.DigitalTwins/query/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-10T23:48:14.7057381Z\",\r\n \"updatedOn\": \"2020-07-01T17:50:50.2393244Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d57506d4-4c8d-48b1-8587-93c323f6a5a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d57506d4-4c8d-48b1-8587-93c323f6a5a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Digital Twins Owner (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access role for Digital Twins data-plane\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.DigitalTwins/eventroutes/*\",\r\n \"Microsoft.DigitalTwins/digitaltwins/*\",\r\n \"Microsoft.DigitalTwins/digitaltwins/commands/*\",\r\n \"Microsoft.DigitalTwins/digitaltwins/relationships/*\",\r\n \"Microsoft.DigitalTwins/models/*\",\r\n \"Microsoft.DigitalTwins/query/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-10T23:49:33.782193Z\",\r\n \"updatedOn\": \"2020-03-10T23:49:33.782193Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/bcd981a7-7f74-457b-83e1-cceb9e632ffe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bcd981a7-7f74-457b-83e1-cceb9e632ffe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Hierarchy Settings Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows users to edit and delete Hierarchy Settings\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Management/managementGroups/settings/write\",\r\n \"Microsoft.Management/managementGroups/settings/delete\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-13T23:55:11.0212387Z\",\r\n \"updatedOn\": \"2020-03-13T23:58:46.9249866Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/350f8d15-c687-4448-8ae1-157740a3936d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"350f8d15-c687-4448-8ae1-157740a3936d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal full access to FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:35:04.4949547Z\",\r\n \"updatedOn\": \"2020-03-17T18:35:04.4949547Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5a1fc7df-4bf1-4951-a576-89034ee01acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5a1fc7df-4bf1-4951-a576-89034ee01acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Exporter\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal to read and export FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/read\",\r\n \"Microsoft.HealthcareApis/services/fhir/resources/export/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:45:01.9764073Z\",\r\n \"updatedOn\": \"2020-03-19T20:29:56.9958536Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/3db33094-8700-4567-8da5-1501d4e7e843\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3db33094-8700-4567-8da5-1501d4e7e843\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal to read FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:49:04.8353499Z\",\r\n \"updatedOn\": \"2020-03-17T18:49:04.8353499Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4c8d0bbc-75d3-4935-991f-5f3c56d81508\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4c8d0bbc-75d3-4935-991f-5f3c56d81508\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"FHIR Data Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Role allows user or principal to read and write FHIR Data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.HealthcareApis/services/fhir/resources/hardDelete/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-17T18:55:35.2413335Z\",\r\n \"updatedOn\": \"2020-03-17T18:55:35.2413335Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/3f88fce4-5892-4214-ae73-ba5294559913\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3f88fce4-5892-4214-ae73-ba5294559913\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Experimentation Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Experimentation Reader\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Experimentation/experimentWorkspaces/read\",\r\n \"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-03-25T18:05:14.8375678Z\",\r\n \"updatedOn\": \"2020-04-22T21:20:46.2737555Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/49632ef5-d9ac-41f4-b8e7-bbe587fa74a1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"49632ef5-d9ac-41f4-b8e7-bbe587fa74a1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Object Understanding Account Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Provides user with ingestion capabilities for Azure Object Understanding.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/action\",\r\n \"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/read\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-04-22T19:15:09.0697923Z\",\r\n \"updatedOn\": \"2020-04-22T19:15:09.0697923Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4dd61c23-6743-42fe-a388-d8bdd41cb745\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4dd61c23-6743-42fe-a388-d8bdd41cb745\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Maps Data Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Grants access to read, write, and delete access to map related data from an Azure maps account.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Maps/accounts/*/read\",\r\n \"Microsoft.Maps/accounts/*/write\",\r\n \"Microsoft.Maps/accounts/*/delete\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-07T20:55:05.064541Z\",\r\n \"updatedOn\": \"2020-05-07T20:55:05.064541Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f5e0ce6-4f7b-4dcf-bddf-e6f48634a204\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f5e0ce6-4f7b-4dcf-bddf-e6f48634a204\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Full access to the project, including the ability to view, create, edit, or delete projects.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-08T23:47:07.0779345Z\",\r\n \"updatedOn\": \"2020-05-08T23:47:07.0779345Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c1ff6cc2-c111-46fe-8896-e0ef812ad9f3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c1ff6cc2-c111-46fe-8896-e0ef812ad9f3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Deployment\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Publish, unpublish or export models. Deployment can view the project but can’t update.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/iterations/publish/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/iterations/export/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/quicktest/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/classify/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/detect/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:31:05.952862Z\",\r\n \"updatedOn\": \"2020-05-09T01:31:05.952862Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5c4089e1-6d96-4d2f-b296-c1bc7137275f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5c4089e1-6d96-4d2f-b296-c1bc7137275f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Labeler\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View, edit training images and create, add, remove, or delete the image tags. Labelers can view the project but can’t update anything other than training images and tags.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/query/action\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/images/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/tags/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/images/suggested/*\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/tagsandregions/suggestions/action\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:33:20.8278896Z\",\r\n \"updatedOn\": \"2020-05-09T01:33:20.8278896Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/88424f51-ebe7-446f-bc41-7fa16989e96c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"88424f51-ebe7-446f-bc41-7fa16989e96c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only actions in the project. Readers can’t create or update the project.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/query/action\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:34:18.5328818Z\",\r\n \"updatedOn\": \"2020-05-09T01:34:18.5328818Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/93586559-c37d-4a6b-ba08-b9f0940c2d73\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"93586559-c37d-4a6b-ba08-b9f0940c2d73\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cognitive Services Custom Vision Trainer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"View, edit projects and train the models, including the ability to publish, unpublish, export the models. Trainers can’t create or delete the project.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.CognitiveServices/*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/action\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/delete\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/import/action\",\r\n \"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-09T01:35:13.8147804Z\",\r\n \"updatedOn\": \"2020-05-09T01:35:13.8147804Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0a5ae4ab-0d65-4eeb-be61-29fc9b54394b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a5ae4ab-0d65-4eeb-be61-29fc9b54394b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Administrator (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform any action on certificates, keys and secrets of a key vault, except manage permissions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:46.2349235Z\",\r\n \"updatedOn\": \"2020-05-20T19:40:18.9511304Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00482a5a-887f-4fb3-b363-3b7fe8e74483\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Crypto Officer (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform any action on the keys of a key vault, except manage permissions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/keys/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.0099249Z\",\r\n \"updatedOn\": \"2020-05-20T19:44:51.5886988Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/14b46e9e-c2b7-41b4-b07b-48a6ebf60603\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"14b46e9e-c2b7-41b4-b07b-48a6ebf60603\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Crypto User (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform cryptographic operations on keys and certificates.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/keys/read\",\r\n \"Microsoft.KeyVault/vaults/keys/update/action\",\r\n \"Microsoft.KeyVault/vaults/keys/backup/action\",\r\n \"Microsoft.KeyVault/vaults/keys/encrypt/action\",\r\n \"Microsoft.KeyVault/vaults/keys/decrypt/action\",\r\n \"Microsoft.KeyVault/vaults/keys/wrap/action\",\r\n \"Microsoft.KeyVault/vaults/keys/unwrap/action\",\r\n \"Microsoft.KeyVault/vaults/keys/sign/action\",\r\n \"Microsoft.KeyVault/vaults/keys/verify/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.0699268Z\",\r\n \"updatedOn\": \"2020-05-20T19:48:54.8672037Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/12338af0-0e69-4776-bea7-57ae8d297424\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"12338af0-0e69-4776-bea7-57ae8d297424\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Secrets Officer (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform any action on the secrets of a key vault, except manage permissions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/secrets/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.1449242Z\",\r\n \"updatedOn\": \"2020-05-20T19:51:40.033812Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b86a8fe4-44ce-4948-aee5-eccb2c155cd7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b86a8fe4-44ce-4948-aee5-eccb2c155cd7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Secrets User (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read secret contents.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/secrets/getSecret/action\",\r\n \"Microsoft.KeyVault/vaults/secrets/readMetadata/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.2049241Z\",\r\n \"updatedOn\": \"2020-05-20T19:53:53.9617292Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4633458b-17de-408a-b874-0445c86b69e6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4633458b-17de-408a-b874-0445c86b69e6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Certificates Officer (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can perform any action on the certificates of a key vault, except manage permissions.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/certificatecas/*\",\r\n \"Microsoft.KeyVault/vaults/certificates/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.2499247Z\",\r\n \"updatedOn\": \"2020-05-20T19:56:22.0363761Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4417e6f-fecd-4de8-b567-7b0420556985\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4417e6f-fecd-4de8-b567-7b0420556985\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Reader (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read metadata of key vaults and its certificates, keys and secrets. Cannot read sensitive values such as secret contents or key material.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.KeyVault/checkNameAvailability/read\",\r\n \"Microsoft.KeyVault/deletedVaults/read\",\r\n \"Microsoft.KeyVault/locations/*/read\",\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/operations/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/*/read\",\r\n \"Microsoft.KeyVault/vaults/secrets/readMetadata/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-19T17:52:47.2949294Z\",\r\n \"updatedOn\": \"2020-05-20T19:58:55.0084184Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/21090545-7ca7-4776-b22c-e363652d74d2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"21090545-7ca7-4776-b22c-e363652d74d2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Crypto Service Encryption (preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read metadata of keys and perform wrap/unwrap operations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.KeyVault/vaults/keys/read\",\r\n \"Microsoft.KeyVault/vaults/keys/wrap/action\",\r\n \"Microsoft.KeyVault/vaults/keys/unwrap/action\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-05-20T20:55:19.239847Z\",\r\n \"updatedOn\": \"2020-05-20T20:55:19.239847Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e147488a-f6f5-4113-8e2d-b22465e65bf6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e147488a-f6f5-4113-8e2d-b22465e65bf6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Viewer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view all resources in cluster/namespace, except secrets.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/*/read\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/secrets/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/clusterconfig.azure.com/azureclusteridentityrequests/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:51:12.8801199Z\",\r\n \"updatedOn\": \"2020-06-12T20:51:12.8801199Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/63f0a09d-1495-4db4-a681-037d84835eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"63f0a09d-1495-4db4-a681-037d84835eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you update everything in cluster/namespace, except (cluster)roles and (cluster)role bindings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/*/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/*/write\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/rbac.authorization.k8s.io/*/read\",\r\n \"Microsoft.Kubernetes/connectedClusters/rbac.authorization.k8s.io/*/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/namespaces/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/resourcequotas/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/certificates.k8s.io/certificatesigningrequests/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/policy/podsecuritypolicies/write\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:53:50.6749823Z\",\r\n \"updatedOn\": \"2020-06-12T20:53:50.6749823Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5b999177-9696-4545-85c7-50de3797e5a1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5b999177-9696-4545-85c7-50de3797e5a1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Cluster Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources in the cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:55:30.9910462Z\",\r\n \"updatedOn\": \"2020-06-12T20:55:30.9910462Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8393591c-06b9-48a2-a542-1bd6b377f6a2\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8393591c-06b9-48a2-a542-1bd6b377f6a2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Arc Kubernetes Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources under cluster/namespace, except update or delete resource quotas and namespaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.Kubernetes/connectedClusters/resourcequotas/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/resourcequotas/delete\",\r\n \"Microsoft.Kubernetes/connectedClusters/namespaces/write\",\r\n \"Microsoft.Kubernetes/connectedClusters/namespaces/delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-06-12T20:57:06.0391177Z\",\r\n \"updatedOn\": \"2020-06-12T20:57:06.0391177Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dffb1e0c-446f-4dde-a09f-99eb5cc68b96\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dffb1e0c-446f-4dde-a09f-99eb5cc68b96\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Cluster Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources in the cluster.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/*\"\r\n ],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:47:24.4071415Z\",\r\n \"updatedOn\": \"2020-07-02T17:47:24.4071415Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage all resources under cluster/namespace, except update or delete resource quotas and namespaces.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/*\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/resourcequotas/write\",\r\n \"Microsoft.ContainerService/managedClusters/resourcequotas/delete\",\r\n \"Microsoft.ContainerService/managedClusters/namespaces/write\",\r\n \"Microsoft.ContainerService/managedClusters/namespaces/delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:50:30.4020311Z\",\r\n \"updatedOn\": \"2020-07-02T17:50:30.4020311Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/3498e952-d568-435e-9b2c-8d77e338d7f7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3498e952-d568-435e-9b2c-8d77e338d7f7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view all resources in cluster/namespace, except secrets.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/*/read\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/rbac.authorization.k8s.io/*/read\",\r\n \"Microsoft.ContainerService/managedClusters/rbac.authorization.k8s.io/*/write\",\r\n \"Microsoft.ContainerService/managedClusters/secrets/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:53:05.5728294Z\",\r\n \"updatedOn\": \"2020-07-07T16:40:37.2744607Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7f6c6a51-bcf8-42ba-9220-52d62157d7db\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7f6c6a51-bcf8-42ba-9220-52d62157d7db\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Kubernetes Service RBAC Writer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you update everything in cluster/namespace, except resource quotas, namespaces, pod security policies, certificate signing requests, (cluster)roles and (cluster)role bindings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/*/read\",\r\n \"Microsoft.ContainerService/managedClusters/*/write\"\r\n ],\r\n \"notDataActions\": [\r\n \"Microsoft.ContainerService/managedClusters/rbac.authorization.k8s.io/*/read\",\r\n \"Microsoft.ContainerService/managedClusters/rbac.authorization.k8s.io/*/write\",\r\n \"Microsoft.ContainerService/managedClusters/namespaces/write\",\r\n \"Microsoft.ContainerService/managedClusters/resourcequotas/write\",\r\n \"Microsoft.ContainerService/managedClusters/certificates.k8s.io/certificatesigningrequests/write\",\r\n \"Microsoft.ContainerService/managedClusters/policy/podsecuritypolicies/write\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2020-07-02T17:54:51.9644983Z\",\r\n \"updatedOn\": \"2020-07-02T17:54:51.9644983Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a7ffa36f-339b-4b5c-8bdf-e2c188b2c0eb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a7ffa36f-339b-4b5c-8bdf-e2c188b2c0eb\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "//subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments/734de5f5-c680-41c0-8beb-67b98c3539d2?api-version=2020-04-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy9kYW9yb3pjb19idWdfcmVwcm8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy83MzRkZTVmNS1jNjgwLTQxYzAtOGJlYi02N2I5OGMzNTM5ZDI/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a9370535-a843-42cc-88e0-09d4098af15b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.12.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "11167ef6-b789-434c-9cfa-645e0a76d877" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=Production; path=/; secure; HttpOnly; SameSite=None" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "a53087e5-077e-4cba-b519-70bb68585179" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200717T010332Z:a53087e5-077e-4cba-b519-70bb68585179" - ], - "Date": [ - "Fri, 17 Jul 2020 01:03:32 GMT" - ], - "Content-Length": [ - "1075" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"01072e9b-c4a1-4246-a756-031b529bbf66\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg\",\r\n \"condition\": \"@Resource[Microsoft.Storage/storageAccounts/blobServices/containers:Name] StringEqualsIgnoreCase 'foo_storage_container'\",\r\n \"conditionVersion\": \"2.0\",\r\n \"createdOn\": \"2020-07-17T01:03:22.9503355Z\",\r\n \"updatedOn\": \"2020-07-17T01:03:29.1742508Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false,\r\n \"delegatedManagedIdentityResourceId\": null,\r\n \"description\": \"This test should not fail\"\r\n },\r\n \"id\": \"/subscriptions/4e5329a6-39ce-4e13-b12e-11b30f015986/resourceGroups/contoso_rg/providers/Microsoft.Authorization/roleAssignments/734de5f5-c680-41c0-8beb-67b98c3539d2\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"734de5f5-c680-41c0-8beb-67b98c3539d2\"\r\n}", - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "4004a9fd-d58e-48dc-aeb2-4a4aec58606f" - } -} \ No newline at end of file diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md index d62f93b427ad..ec41a6efbf62 100644 --- a/src/Resources/Resources/ChangeLog.md +++ b/src/Resources/Resources/ChangeLog.md @@ -18,8 +18,6 @@ - Additional information about change #1 --> ## Upcoming Release -* added properties "Condition", "ConditionVersion" and "Description" to New-AzRoleAssignment - - this includes all the relevant changes to the data models ## Version 2.3.0 * Updated `Save-AzResourceGroupDeploymentTemplate` to use the SDK. diff --git a/src/Resources/Resources/Models.Authorization/AuthorizationClient.cs b/src/Resources/Resources/Models.Authorization/AuthorizationClient.cs index 0ef10067a655..21e8bff36aa0 100644 --- a/src/Resources/Resources/Models.Authorization/AuthorizationClient.cs +++ b/src/Resources/Resources/Models.Authorization/AuthorizationClient.cs @@ -133,17 +133,11 @@ public IEnumerable FilterRoleDefinitionsByCustom(string scope, string roleDefinitionId = !string.IsNullOrEmpty(parameters.RoleDefinitionName) ? AuthorizationHelper.ConstructFullyQualifiedRoleDefinitionIdFromScopeAndIdAsGuid(scope, GetSingleRoleDefinitionByName(parameters.RoleDefinitionName, scope).Id) : AuthorizationHelper.ConstructFullyQualifiedRoleDefinitionIdFromScopeAndIdAsGuid(scope, parameters.RoleDefinitionId); - parameters.Description = string.IsNullOrWhiteSpace(parameters.Description) ? null : parameters.Description; - parameters.Condition = string.IsNullOrWhiteSpace(parameters.Condition) ? null : parameters.Condition; - parameters.ConditionVersion = string.IsNullOrWhiteSpace(parameters.ConditionVersion) ? null : parameters.ConditionVersion; var createParameters = new RoleAssignmentCreateParameters { PrincipalId = principalId.ToString(), RoleDefinitionId = roleDefinitionId, - CanDelegate = parameters.CanDelegate, - Description = parameters.Description, - Condition = parameters.Condition, - ConditionVersion = parameters.ConditionVersion + CanDelegate = parameters.CanDelegate }; RoleAssignment assignment = AuthorizationManagementClient.RoleAssignments.Create( diff --git a/src/Resources/Resources/Models.Authorization/AuthorizationClientExtensions.cs b/src/Resources/Resources/Models.Authorization/AuthorizationClientExtensions.cs index b9bd6e7cd7c4..47bec28105cb 100644 --- a/src/Resources/Resources/Models.Authorization/AuthorizationClientExtensions.cs +++ b/src/Resources/Resources/Models.Authorization/AuthorizationClientExtensions.cs @@ -269,10 +269,7 @@ private static IEnumerable ToPSRoleAssignments(this IEnumerabl SignInName = ((PSADUser)adObject).UserPrincipalName, ObjectId = adObject.Id, ObjectType = adObject.Type, - CanDelegate = delegationFlag, - Description = assignment.Description, - Condition = assignment.Condition, - ConditionVersion = assignment.ConditionVersion, + CanDelegate = delegationFlag }); } else if (adObject is PSADGroup) @@ -286,10 +283,7 @@ private static IEnumerable ToPSRoleAssignments(this IEnumerabl Scope = assignment.Scope, ObjectId = adObject.Id, ObjectType = adObject.Type, - CanDelegate = delegationFlag, - Description = assignment.Description, - Condition = assignment.Condition, - ConditionVersion = assignment.ConditionVersion, + CanDelegate = delegationFlag }); } else if (adObject is PSADServicePrincipal) @@ -303,10 +297,7 @@ private static IEnumerable ToPSRoleAssignments(this IEnumerabl Scope = assignment.Scope, ObjectId = adObject.Id, ObjectType = adObject.Type, - CanDelegate = delegationFlag, - Description = assignment.Description, - Condition = assignment.Condition, - ConditionVersion = assignment.ConditionVersion, + CanDelegate = delegationFlag }); } else if (adObject is PSErrorHelperObject && ((PSErrorHelperObject)adObject).ErrorType == ErrorTypeEnum.MalformedQuery) @@ -318,10 +309,7 @@ private static IEnumerable ToPSRoleAssignments(this IEnumerabl RoleDefinitionId = roleDefinition.Id, RoleDefinitionName = roleDefinition.Name, Scope = assignment.Scope, - ObjectType = assignment.Type, - Description = assignment.Description, - Condition = assignment.Condition, - ConditionVersion = assignment.ConditionVersion, + ObjectType = assignment.Type }); } else if (!excludeAssignmentsForDeletedPrincipals) @@ -335,10 +323,7 @@ private static IEnumerable ToPSRoleAssignments(this IEnumerabl Scope = assignment.Scope, ObjectId = adObject.Id, CanDelegate = delegationFlag, - ObjectType = DeletedObject, - Description = assignment.Description, - Condition = assignment.Condition, - ConditionVersion = assignment.ConditionVersion, + ObjectType = DeletedObject }); } diff --git a/src/Resources/Resources/Models.Authorization/FilterRoleAssignmentsOptions.cs b/src/Resources/Resources/Models.Authorization/FilterRoleAssignmentsOptions.cs index 3a288e7bc34a..fb7b41b6ae93 100644 --- a/src/Resources/Resources/Models.Authorization/FilterRoleAssignmentsOptions.cs +++ b/src/Resources/Resources/Models.Authorization/FilterRoleAssignmentsOptions.cs @@ -26,9 +26,6 @@ public class FilterRoleAssignmentsOptions public string RoleDefinitionId { get; set; } private string scope; - public string Description { get; set; } - public string Condition { get; set; } - public string ConditionVersion { get; set; } public string Scope { diff --git a/src/Resources/Resources/Models.Authorization/PSRoleAssignment.cs b/src/Resources/Resources/Models.Authorization/PSRoleAssignment.cs index 095ae51e7218..7883030c6d70 100644 --- a/src/Resources/Resources/Models.Authorization/PSRoleAssignment.cs +++ b/src/Resources/Resources/Models.Authorization/PSRoleAssignment.cs @@ -35,11 +35,5 @@ public class PSRoleAssignment public string ObjectType { get; set; } public bool CanDelegate { get; set; } - - public string Description { get; set; } - - public string ConditionVersion { get; set; } - - public string Condition { get; set; } } } diff --git a/src/Resources/Resources/Resources.csproj b/src/Resources/Resources/Resources.csproj index ba0c364245f2..70b9c5f54350 100644 --- a/src/Resources/Resources/Resources.csproj +++ b/src/Resources/Resources/Resources.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/Resources/Resources/RoleAssignments/NewAzureRoleAssignmentCommand.cs b/src/Resources/Resources/RoleAssignments/NewAzureRoleAssignmentCommand.cs index f6c746d06623..c70f2f118386 100644 --- a/src/Resources/Resources/RoleAssignments/NewAzureRoleAssignmentCommand.cs +++ b/src/Resources/Resources/RoleAssignments/NewAzureRoleAssignmentCommand.cs @@ -137,75 +137,6 @@ public class NewAzureRoleAssignmentCommand : ResourcesBaseCmdlet [ValidateNotNullOrEmpty] public string RoleDefinitionName { get; set; } - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.Empty, - HelpMessage = "Brief description of the role assignment.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ResourceGroupWithObjectId, - HelpMessage = "Brief description of the role assignment.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ResourceGroupWithSignInName, - HelpMessage = "Brief description of the role assignment.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ResourceGroupWithSPN, - HelpMessage = "Brief description of the role assignment.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ResourceWithObjectId, - HelpMessage = "Brief description of the role assignment.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ResourceWithSignInName, - HelpMessage = "Brief description of the role assignment.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ResourceWithSPN, - HelpMessage = "Brief description of the role assignment.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.RoleIdWithScopeAndObjectId, - HelpMessage = "Brief description of the role assignment.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ScopeWithSignInName, - HelpMessage = "Brief description of the role assignment.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ScopeWithSPN, - HelpMessage = "Brief description of the role assignment.")] - [ValidateNotNullOrEmpty] - public string Description { get; set; } - - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.Empty, - HelpMessage = "Condition to be applied to the RoleAssignment.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ResourceGroupWithObjectId, - HelpMessage = "Condition to be applied to the RoleAssignment.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ResourceGroupWithSignInName, - HelpMessage = "Condition to be applied to the RoleAssignment.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ResourceGroupWithSPN, - HelpMessage = "Condition to be applied to the RoleAssignment.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ResourceWithObjectId, - HelpMessage = "Condition to be applied to the RoleAssignment.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ResourceWithSignInName, - HelpMessage = "Condition to be applied to the RoleAssignment.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ResourceWithSPN, - HelpMessage = "Condition to be applied to the RoleAssignment.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.RoleIdWithScopeAndObjectId, - HelpMessage = "Condition to be applied to the RoleAssignment.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ScopeWithSignInName, - HelpMessage = "Condition to be applied to the RoleAssignment.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ScopeWithSPN, - HelpMessage = "Condition to be applied to the RoleAssignment.")] - [ValidateNotNullOrEmpty] - public string Condition { get; set; } - - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.Empty, - HelpMessage = "Version of the condition.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ResourceGroupWithObjectId, - HelpMessage = "Version of the condition.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ResourceGroupWithSignInName, - HelpMessage = "Version of the condition.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ResourceGroupWithSPN, - HelpMessage = "Version of the condition.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ResourceWithObjectId, - HelpMessage = "Version of the condition.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ResourceWithSignInName, - HelpMessage = "Version of the condition.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ResourceWithSPN, - HelpMessage = "Version of the condition.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.RoleIdWithScopeAndObjectId, - HelpMessage = "Version of the condition.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ScopeWithSignInName, - HelpMessage = "Version of the condition.")] - [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.ScopeWithSPN, - HelpMessage = "Version of the condition.")] - [ValidateNotNullOrEmpty] - public string ConditionVersion { get; set; } - [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.RoleIdWithScopeAndObjectId, HelpMessage = "Role Id the principal is assigned to.")] [ValidateGuidNotEmpty] @@ -221,26 +152,6 @@ public class NewAzureRoleAssignmentCommand : ResourcesBaseCmdlet public override void ExecuteCmdlet() { - if (string.IsNullOrEmpty(Condition) ^ string.IsNullOrEmpty(ConditionVersion)) - { - if (!string.IsNullOrEmpty(Condition)) - { - ConditionVersion = "2.0"; - WriteDebug("-Condition was set but -ConditionVersion was not, defaulting to lowest publicly available version: '2.0'"); - } - else - { - WriteExceptionError(new ArgumentException("If -ConditionVersion is set -Condition can not be empty.")); - return; - } - - } - double _conditionVersion = double.Parse((ConditionVersion ?? "2.0")); - if (_conditionVersion < 2.0) - { - WriteExceptionError(new ArgumentException("Argument -ConditionVersion must be greater or equal than 2.0")); - return; - } FilterRoleAssignmentsOptions parameters = new FilterRoleAssignmentsOptions() { Scope = Scope, @@ -261,9 +172,6 @@ public override void ExecuteCmdlet() Subscription = DefaultProfile.DefaultContext.Subscription.Id, }, CanDelegate = AllowDelegation.IsPresent ? true : false, - Description = Description, - Condition = Condition, - ConditionVersion = ConditionVersion, }; AuthorizationClient.ValidateScope(parameters.Scope, false); diff --git a/src/Resources/Resources/RoleAssignments/RemoveAzureRoleAssignmentCommand.cs b/src/Resources/Resources/RoleAssignments/RemoveAzureRoleAssignmentCommand.cs index d6e9a01a03af..ab22e535664b 100644 --- a/src/Resources/Resources/RoleAssignments/RemoveAzureRoleAssignmentCommand.cs +++ b/src/Resources/Resources/RoleAssignments/RemoveAzureRoleAssignmentCommand.cs @@ -28,7 +28,7 @@ namespace Microsoft.Azure.Commands.Resources /// /// Removes a given role assignment. /// - [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RoleAssignment", SupportsShouldProcess = true, DefaultParameterSetName = ParameterSet.Empty), OutputType(typeof(PSRoleAssignment))] + [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RoleAssignment", SupportsShouldProcess = true,DefaultParameterSetName = ParameterSet.Empty), OutputType(typeof(PSRoleAssignment))] public class RemoveAzureRoleAssignmentCommand : ResourcesBaseCmdlet { [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = ParameterSet.Empty, diff --git a/src/Storage/Storage.Management.Test/ScenarioTests/StorageDataPlaneTests.ps1 b/src/Storage/Storage.Management.Test/ScenarioTests/StorageDataPlaneTests.ps1 index cb2f8b3977ed..c5411975f8d2 100644 --- a/src/Storage/Storage.Management.Test/ScenarioTests/StorageDataPlaneTests.ps1 +++ b/src/Storage/Storage.Management.Test/ScenarioTests/StorageDataPlaneTests.ps1 @@ -281,7 +281,7 @@ function Test-Blob $scopename = "testscope" $containerName2 = "testscopecontainer" New-AzStorageEncryptionScope -ResourceGroupName $ResourceGroupName -StorageAccountName $storageAccountName -EncryptionScopeName $scopename -StorageEncryption - $container = New-AzStorageContainer -Name $containerName2 -Context $storageContext -DefaultEncryptionScope $scopeName2 -PreventEncryptionScopeOverride $true + $container = New-AzStorageContainer -Name $containerName2 -Context $storageContext -DefaultEncryptionScope $scopeName -PreventEncryptionScopeOverride $true Assert-AreEqual $scopename $container.BlobContainerProperties.DefaultEncryptionScope Assert-AreEqual $true $container.BlobContainerProperties.PreventEncryptionScopeOverride $blob = Set-AzStorageBlobContent -Context $storageContext -File $localSrcFile -Container $containerName -Blob encryscopetest -EncryptionScope $scopename diff --git a/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.cs b/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.cs index 4f013c898166..1506bda4e9e2 100644 --- a/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.cs +++ b/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.cs @@ -44,5 +44,12 @@ public void TestShareSoftDeletee() { TestController.NewInstance.RunPsTest(_logger, "Test-ShareSoftDelete"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestStorageFileShareGetUsage() + { + TestController.NewInstance.RunPsTest(_logger, "Test-StorageFileShareGetUsage"); + } } } diff --git a/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.ps1 b/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.ps1 index fc23d1d97aed..1b754aed4964 100644 --- a/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.ps1 +++ b/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.ps1 @@ -221,4 +221,46 @@ function Test-ShareSoftDelete } } +function Test-StorageFileShareGetUsage +{ + # Setup + $rgname = Get-StorageManagementTestResourceName; + + try + { + # Test + $stoname = 'sto' + $rgname; + $stotype = 'Standard_GRS'; + $loc = Get-ProviderLocation ResourceManagement; + $kind = 'StorageV2' + $shareName = "share"+ $rgname + + Write-Verbose "RGName: $rgname | Loc: $loc" + New-AzResourceGroup -Name $rgname -Location $loc; + + New-AzStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype -Kind $kind + $stos = Get-AzStorageAccount -ResourceGroupName $rgname; + + New-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname -Name $shareName + $share = Get-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname -Name $shareName + Assert-AreEqual $rgname $share.ResourceGroupName + Assert-AreEqual $stoname $share.StorageAccountName + Assert-AreEqual $shareName $share.Name + + # Get share usage + $share = Get-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname -Name $shareName -GetShareUsage + Assert-AreEqual $shareName $share.Name + Assert-AreEqual 0 $share.ShareUsageBytes + Assert-AreEqual $null $share.Deleted + + + Remove-AzStorageAccount -Force -ResourceGroupName $rgname -Name $stoname; + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + diff --git a/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageFileTests/TestStorageFileShareGetUsage.json b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageFileTests/TestStorageFileShareGetUsage.json new file mode 100644 index 000000000000..a9f5aface25c --- /dev/null +++ b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageFileTests/TestStorageFileShareGetUsage.json @@ -0,0 +1,1011 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4011ea76-cd2a-4456-9ded-4ddc364b9332" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.19" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "f0bcc8f6-42e1-4ab9-baf2-e5f49685a1a8" + ], + "x-ms-correlation-request-id": [ + "f0bcc8f6-42e1-4ab9-baf2-e5f49685a1a8" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200723T080737Z:f0bcc8f6-42e1-4ab9-baf2-e5f49685a1a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 23 Jul 2020 08:07:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12336" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg8016?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnODAxNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "662f3d81-4f03-4ca0-8691-d37b1fef35cb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "f499f21b-0658-4b41-9df0-b136446699cf" + ], + "x-ms-correlation-request-id": [ + "f499f21b-0658-4b41-9df0-b136446699cf" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200723T080740Z:f499f21b-0658-4b41-9df0-b136446699cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 23 Jul 2020 08:07:40 GMT" + ], + "Content-Length": [ + "177" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8016\",\r\n \"name\": \"pstestrg8016\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/checkNameAvailability?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"stopstestrg8016\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4241118b-4a79-4afa-8c69-d7baf8501deb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "81" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9628eea2-0501-4490-bbe1-f1d417d0b440" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "8943c1dd-edae-4a66-9e67-38da85608225" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200723T080742Z:8943c1dd-edae-4a66-9e67-38da85608225" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 23 Jul 2020 08:07:41 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8016/providers/Microsoft.Storage/storageAccounts/stopstestrg8016?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODAxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODAxNj9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86dcec41-431a-4f04-a5dc-584592c6c607" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "99" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/westus/asyncoperations/ddd48560-4e37-43eb-80f7-c5a919c65763?monitor=true&api-version=2019-06-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "ddd48560-4e37-43eb-80f7-c5a919c65763" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "c035a37a-33d4-4418-a8de-75f8c7347b0e" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200723T080748Z:c035a37a-33d4-4418-a8de-75f8c7347b0e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 23 Jul 2020 08:07:48 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/westus/asyncoperations/ddd48560-4e37-43eb-80f7-c5a919c65763?monitor=true&api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy9kZGQ0ODU2MC00ZTM3LTQzZWItODBmNy1jNWE5MTljNjU3NjM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d25ae463-4440-4d07-a3de-d1fd42778392" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "ae59fb13-8a85-4952-927e-33eac451cf83" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200723T080805Z:ae59fb13-8a85-4952-927e-33eac451cf83" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 23 Jul 2020 08:08:05 GMT" + ], + "Content-Length": [ + "1317" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8016/providers/Microsoft.Storage/storageAccounts/stopstestrg8016\",\r\n \"name\": \"stopstestrg8016\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-23T08:07:47.9801226Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-23T08:07:47.9801226Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-07-23T08:07:47.8550962Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg8016.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg8016.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg8016.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg8016.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg8016.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg8016.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8016/providers/Microsoft.Storage/storageAccounts/stopstestrg8016?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODAxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODAxNj9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "050fbd74-9cc9-49d2-bd75-db8609267d45" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d160a0ae-aa42-4e9c-941d-c0a36bcecd68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "88b2fad7-be34-4714-a252-4570023ba337" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200723T080806Z:88b2fad7-be34-4714-a252-4570023ba337" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 23 Jul 2020 08:08:05 GMT" + ], + "Content-Length": [ + "1317" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8016/providers/Microsoft.Storage/storageAccounts/stopstestrg8016\",\r\n \"name\": \"stopstestrg8016\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-23T08:07:47.9801226Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-23T08:07:47.9801226Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-07-23T08:07:47.8550962Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg8016.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg8016.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg8016.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg8016.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg8016.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg8016.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8016/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODAxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03efc3b1-e3df-493c-b241-b4cb9f44c82a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "449d164a-f28d-4c53-8f51-5e8476757f83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "8bb7c499-06dc-4b99-a8d3-bb90a61c5f49" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200723T080806Z:8bb7c499-06dc-4b99-a8d3-bb90a61c5f49" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 23 Jul 2020 08:08:05 GMT" + ], + "Content-Length": [ + "1329" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8016/providers/Microsoft.Storage/storageAccounts/stopstestrg8016\",\r\n \"name\": \"stopstestrg8016\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-23T08:07:47.9801226Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-23T08:07:47.9801226Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-07-23T08:07:47.8550962Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg8016.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg8016.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg8016.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg8016.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg8016.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg8016.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8016/providers/Microsoft.Storage/storageAccounts/stopstestrg8016/fileServices/default/shares/sharepstestrg8016?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODAxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODAxNi9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmVwc3Rlc3RyZzgwMTY/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73f9b0ec-b883-4ead-a2f5-abe0d953d892" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"0x8D82EDF884E5224\"" + ], + "x-ms-request-id": [ + "15d60182-c402-484c-841f-26f97b996be8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "40f43585-e7f9-4dd8-a685-a3eec1ee4700" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200723T080807Z:40f43585-e7f9-4dd8-a685-a3eec1ee4700" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 23 Jul 2020 08:08:06 GMT" + ], + "Content-Length": [ + "284" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8016/providers/Microsoft.Storage/storageAccounts/stopstestrg8016/fileServices/default/shares/sharepstestrg8016\",\r\n \"name\": \"sharepstestrg8016\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8016/providers/Microsoft.Storage/storageAccounts/stopstestrg8016/fileServices/default/shares/sharepstestrg8016?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODAxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODAxNi9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmVwc3Rlc3RyZzgwMTY/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c86a7834-b9e6-4adc-b07e-93fd4a3b379d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"0x8D82EDF884E5224\"" + ], + "x-ms-request-id": [ + "3c1ec5bf-a0ef-43b6-88a0-ef832423317f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "63b29f17-aa94-497f-b74b-13c443ffbb82" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200723T080807Z:63b29f17-aa94-497f-b74b-13c443ffbb82" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 23 Jul 2020 08:08:06 GMT" + ], + "Content-Length": [ + "398" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8016/providers/Microsoft.Storage/storageAccounts/stopstestrg8016/fileServices/default/shares/sharepstestrg8016\",\r\n \"name\": \"sharepstestrg8016\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D82EDF884E5224\\\"\",\r\n \"properties\": {\r\n \"lastModifiedTime\": \"2020-07-23T08:08:07Z\",\r\n \"shareQuota\": 5120\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8016/providers/Microsoft.Storage/storageAccounts/stopstestrg8016/fileServices/default/shares/sharepstestrg8016?api-version=2019-06-01&$expand=stats", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODAxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODAxNi9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmVwc3Rlc3RyZzgwMTY/YXBpLXZlcnNpb249MjAxOS0wNi0wMSYkZXhwYW5kPXN0YXRz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "acd63ffa-526d-4ed7-a7dc-d7606c0cc2cb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"0x8D82EDF884E5224\"" + ], + "x-ms-request-id": [ + "e6fff686-182a-4a0d-ad64-cd43e5c93de1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "9df1dd03-f265-4001-90bc-ae2eb5da65aa" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200723T080808Z:9df1dd03-f265-4001-90bc-ae2eb5da65aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 23 Jul 2020 08:08:07 GMT" + ], + "Content-Length": [ + "418" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8016/providers/Microsoft.Storage/storageAccounts/stopstestrg8016/fileServices/default/shares/sharepstestrg8016\",\r\n \"name\": \"sharepstestrg8016\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D82EDF884E5224\\\"\",\r\n \"properties\": {\r\n \"shareUsageBytes\": 0,\r\n \"lastModifiedTime\": \"2020-07-23T08:08:07Z\",\r\n \"shareQuota\": 5120\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8016/providers/Microsoft.Storage/storageAccounts/stopstestrg8016?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODAxNi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODAxNj9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ce7da5c-f51a-4f58-a6b2-186d4fc3013e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e843725b-fc5d-4f27-a39a-ef70b651305a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "ac5f1a75-88fa-4e09-9a7d-1752e01b7cd7" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200723T080814Z:ac5f1a75-88fa-4e09-9a7d-1752e01b7cd7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 23 Jul 2020 08:08:13 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg8016?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnODAxNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f359715a-046b-4079-b631-e9ec6cd73bf8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.19" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzgwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "18c0be97-5bbd-4bf5-a181-e436a67f1fc2" + ], + "x-ms-correlation-request-id": [ + "18c0be97-5bbd-4bf5-a181-e436a67f1fc2" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200723T080817Z:18c0be97-5bbd-4bf5-a181-e436a67f1fc2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 23 Jul 2020 08:08:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzgwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemd3TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.19" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzgwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "a64cdf66-0833-4de3-b792-3454aa0ade2b" + ], + "x-ms-correlation-request-id": [ + "a64cdf66-0833-4de3-b792-3454aa0ade2b" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200723T080832Z:a64cdf66-0833-4de3-b792-3454aa0ade2b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 23 Jul 2020 08:08:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzgwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemd3TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.19" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzgwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "ead281a7-53b1-443d-907a-555bee069d66" + ], + "x-ms-correlation-request-id": [ + "ead281a7-53b1-443d-907a-555bee069d66" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200723T080847Z:ead281a7-53b1-443d-907a-555bee069d66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 23 Jul 2020 08:08:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzgwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemd3TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.19" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "20ddc125-9e33-44c3-8d71-9a6ad06e0993" + ], + "x-ms-correlation-request-id": [ + "20ddc125-9e33-44c3-8d71-9a6ad06e0993" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200723T080903Z:20ddc125-9e33-44c3-8d71-9a6ad06e0993" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 23 Jul 2020 08:09:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzgwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemd3TVRZdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.27817.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.19" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "f150d49a-ee62-4367-a025-f194f9bb64e5" + ], + "x-ms-correlation-request-id": [ + "f150d49a-ee62-4367-a025-f194f9bb64e5" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200723T080903Z:f150d49a-ee62-4367-a025-f194f9bb64e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 23 Jul 2020 08:09:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-StorageFileShareGetUsage": [ + "pstestrg8016" + ] + }, + "Variables": { + "SubscriptionId": "45b60d85-fd72-427a-a708-f994d26e593e" + } +} \ No newline at end of file diff --git a/src/Storage/Storage.Management/ChangeLog.md b/src/Storage/Storage.Management/ChangeLog.md index a7c487481b41..7d43c259d840 100644 --- a/src/Storage/Storage.Management/ChangeLog.md +++ b/src/Storage/Storage.Management/ChangeLog.md @@ -23,6 +23,8 @@ - `New-AzStorageContainerSASToken` * support create account Sas token with new permission x,t,f - `New-AzStorageAccountSASToken` +* Support get single file share usage + - `Get-AzRmStorageShare` * support get/set blob tags on a specific blob - `Get-AzStorageBlobTag` - `Set-AzStorageBlobTag` @@ -43,7 +45,7 @@ - `Start-AzStorageBlobCopy` - `Stop-AzStorageBlobCopy` - + ## Version 2.3.0 * Fixed the issue that UserAgent is not added for some data plane cmdlets. * Supported create/update Storage account with MinimumTlsVersion and AllowBlobPublicAccess diff --git a/src/Storage/Storage.Management/File/GetAzureStorageShare.cs b/src/Storage/Storage.Management/File/GetAzureStorageShare.cs index cb1f5573a5d5..74e1101c31e0 100644 --- a/src/Storage/Storage.Management/File/GetAzureStorageShare.cs +++ b/src/Storage/Storage.Management/File/GetAzureStorageShare.cs @@ -17,8 +17,7 @@ using Microsoft.Azure.Management.Storage; using Microsoft.Azure.Management.Storage.Models; using Microsoft.Rest.Azure; -using System; -using System.Collections.Generic; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Management.Automation; namespace Microsoft.Azure.Commands.Management.Storage @@ -88,6 +87,7 @@ public class GetAzureStorageShareCommand : StorageFileBaseCmdlet [ValidateNotNullOrEmpty] public PSStorageAccount StorageAccount { get; set; } + [CmdletParameterBreakingChange("ResourceId", ChangeDescription = "Will not allow to input '-ResourceId', '-Name' together in a future release, since name info is already inclouded in ResourceId.")] [Parameter( Position = 0, Mandatory = true, @@ -104,6 +104,9 @@ public class GetAzureStorageShareCommand : StorageFileBaseCmdlet [Parameter(HelpMessage = "Share Name", Mandatory = false, ParameterSetName = AccountNameSingleParameterSet)] + [Parameter(HelpMessage = "Share Name", + Mandatory = false, + ParameterSetName = ShareResourceIdParameterSet)] public string Name { get; set; } [Parameter(Mandatory = false, @@ -137,13 +140,17 @@ public override void ExecuteCmdlet() this.StorageAccountName = StorageAccount.StorageAccountName; break; case ShareResourceIdParameterSet: + if (!string.IsNullOrEmpty(this.Name)) + { + WriteWarning("The -Name parameter will be omit, as -ResourceId already contains share name."); + } ResourceIdentifier shareResource = new ResourceIdentifier(ResourceId); this.ResourceGroupName = shareResource.ResourceGroupName; this.StorageAccountName = PSBlobServiceProperties.GetStorageAccountNameFromResourceId(ResourceId); this.Name = shareResource.ResourceName; break; default: - // For AccountNameSingleParameterSet, the ResourceGroupName and StorageAccountName can get from input directly + // For AccountNameParameterSet, AccountNameSingleParameterSet, the ResourceGroupName and StorageAccountName can get from input directly break; } diff --git a/src/Storage/Storage.Management/Storage.Management.format.ps1xml b/src/Storage/Storage.Management/Storage.Management.format.ps1xml index 1d556c0b6a51..60b21f59fec3 100644 --- a/src/Storage/Storage.Management/Storage.Management.format.ps1xml +++ b/src/Storage/Storage.Management/Storage.Management.format.ps1xml @@ -400,7 +400,7 @@ Left - + Left diff --git a/src/Storage/Storage.Management/help/Get-AzRmStorageShare.md b/src/Storage/Storage.Management/help/Get-AzRmStorageShare.md index 0047b67ed403..b41e82f2a3d6 100644 --- a/src/Storage/Storage.Management/help/Get-AzRmStorageShare.md +++ b/src/Storage/Storage.Management/help/Get-AzRmStorageShare.md @@ -38,8 +38,8 @@ Get-AzRmStorageShare -StorageAccount [-IncludeDeleted] ### ShareResourceId ``` -Get-AzRmStorageShare [-ResourceId] [-GetShareUsage] [-DefaultProfile ] - [] +Get-AzRmStorageShare [-ResourceId] [-Name ] [-GetShareUsage] + [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -166,7 +166,7 @@ Share Name ```yaml Type: System.String -Parameter Sets: AccountNameSingle +Parameter Sets: AccountNameSingle, ShareResourceId Aliases: N, ShareName Required: False diff --git a/src/Storage/Storage/Blob/Cmdlet/SetAzureStorageBlobContent.cs b/src/Storage/Storage/Blob/Cmdlet/SetAzureStorageBlobContent.cs index 86d2e7954dae..1c0ffc70c4b3 100644 --- a/src/Storage/Storage/Blob/Cmdlet/SetAzureStorageBlobContent.cs +++ b/src/Storage/Storage/Blob/Cmdlet/SetAzureStorageBlobContent.cs @@ -615,6 +615,7 @@ internal virtual async Task UploadBlobwithSdk(long taskId, IStorageBlobManagemen } } AzureStorageBlob outputBlob = new AzureStorageBlob(outputBlobClient, localChannel.StorageContext, null, ClientOptions); + OutputStream.WriteObject(taskId, outputBlob); } } diff --git a/tools/Common.Netcore.Dependencies.targets b/tools/Common.Netcore.Dependencies.targets index 9d8c34bdf514..7a56a8ae0525 100644 --- a/tools/Common.Netcore.Dependencies.targets +++ b/tools/Common.Netcore.Dependencies.targets @@ -3,21 +3,21 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -32,7 +32,7 @@ - $(NugetPackageRoot)\microsoft.azure.powershell.storage\1.3.17-preview\tools\ + $(NugetPackageRoot)\microsoft.azure.powershell.storage\1.3.19-preview\tools\ diff --git a/tools/SecurityTools/CredScanSuppressions.json b/tools/SecurityTools/CredScanSuppressions.json index c969e33d0545..6736a16e5ce1 100644 --- a/tools/SecurityTools/CredScanSuppressions.json +++ b/tools/SecurityTools/CredScanSuppressions.json @@ -501,6 +501,14 @@ "file": "src\\HDInsight\\HDInsight.Test\\SessionRecords\\Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests\\TestClusterRelatedCommands.json", "_justification": "Test resource is deleted" }, + { + "file": "src\\HDInsight\\HDInsight.Test\\SessionRecords\\Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests\\TestCreateClusterWithEncryptionInTransit.json", + "_justification": "Test resource is deleted" + }, + { + "file": "src\\HDInsight\\HDInsight.Test\\SessionRecords\\Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests\\TestCreateClusterWithPrivateLink.json", + "_justification": "Test resource is deleted" + }, { "file": "src\\HDInsight\\HDInsight.Test\\SessionRecords\\Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests\\TestCmkClusterRelatedCommands.json", "_justification": "Test resource is deleted" diff --git a/tools/StaticAnalysis/BreakingChangeAnalyzer/BreakingChangeAnalyzer.cs b/tools/StaticAnalysis/BreakingChangeAnalyzer/BreakingChangeAnalyzer.cs index 61b684a0fb74..597c0119a1e0 100644 --- a/tools/StaticAnalysis/BreakingChangeAnalyzer/BreakingChangeAnalyzer.cs +++ b/tools/StaticAnalysis/BreakingChangeAnalyzer/BreakingChangeAnalyzer.cs @@ -176,7 +176,7 @@ public void Analyze( var executingPath = Path.GetDirectoryName(new Uri(Assembly.GetExecutingAssembly().CodeBase).AbsolutePath); - var filePath = executingPath + "\\SerializedCmdlets\\" + fileName; + var filePath = Path.Combine(executingPath, "SerializedCmdlets", fileName); #if SERIALIZE SerializeCmdlets(filePath, newModuleMetadata); diff --git a/tools/StaticAnalysis/Exceptions/Az.ApiManagement/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.ApiManagement/SignatureIssues.csv index aad998be8ce0..832d86d8942a 100644 --- a/tools/StaticAnalysis/Exceptions/Az.ApiManagement/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.ApiManagement/SignatureIssues.csv @@ -74,4 +74,11 @@ "Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll","Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.SetAzureApiManagementDiagnostic","Set-AzApiManagementDiagnostic","1","8100","Set-AzApiManagementDiagnostic 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" "Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll","Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.SetAzureApiManagementAuthorizationServer","Set-AzApiManagementAuthorizationServer","1","8100","Set-AzApiManagementAuthorizationServer 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" "Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll","Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.SetAzureApiManagementCertificate","Set-AzApiManagementCertificate","1","8100","Set-AzApiManagementCertificate 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" -"Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll","Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.SetAzureApiManagementProduct","Set-AzApiManagementProduct","1","8410","Parameter LegalTerms of cmdlet Set-AzApiManagementProduct does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." \ No newline at end of file +"Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll","Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.SetAzureApiManagementProduct","Set-AzApiManagementProduct","1","8410","Parameter LegalTerms of cmdlet Set-AzApiManagementProduct does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll","Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementGroup","Get-AzApiManagementGroup","1","8700","Parameter set '__AllParameterSets', 'GetByGroupId', 'GetByUserId', 'GetByProductId' of cmdlet 'Get-AzApiManagementGroup' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll","Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementNamedValue","Get-AzApiManagementNamedValue","1","8700","Parameter set '__AllParameterSets', 'GetByNamedValueId', 'GetByName', 'GetByTag' of cmdlet 'Get-AzApiManagementNamedValue' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll","Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementOpenIdConnectProvider","Get-AzApiManagementOpenIdConnectProvider","1","8700","Parameter set '__AllParameterSets', 'GetByOpenIdConnectProviderId', 'GetByName' of cmdlet 'Get-AzApiManagementOpenIdConnectProvider' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll","Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementProduct","Get-AzApiManagementProduct","1","8700","Parameter set '__AllParameterSets', 'GetByTitle' of cmdlet 'Get-AzApiManagementProduct' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll","Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementSubscription","Get-AzApiManagementSubscription","1","8700","Parameter set '__AllParameterSets', 'GetBySubscriptionId', 'GetByUserId', 'GetByProductId' of cmdlet 'Get-AzApiManagementSubscription' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll","Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.GetAzureApiManagementUser","Get-AzApiManagementUser","1","8700","Parameter set '__AllParameterSets', 'GetByUserId', 'GetByUser' of cmdlet 'Get-AzApiManagementUser' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll","Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands.NewAzureApiManagementResourceLocationObject","New-AzApiManagementResourceLocationObject","1","8100","New-AzApiManagementResourceLocationObject 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" diff --git a/tools/StaticAnalysis/Exceptions/Az.ApplicationInsights/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.ApplicationInsights/SignatureIssues.csv index e4d070d56bbd..cf6207fa47b4 100644 --- a/tools/StaticAnalysis/Exceptions/Az.ApplicationInsights/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.ApplicationInsights/SignatureIssues.csv @@ -1 +1,2 @@ "AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation" +"Microsoft.Azure.PowerShell.Cmdlets.ApplicationInsights.dll","Microsoft.Azure.Commands.ApplicationInsights.NewAzureApplicationInsights","New-AzApplicationInsights","1","8420","Parameter set '__AllParameterSets' of cmdlet 'New-AzApplicationInsights' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." diff --git a/tools/StaticAnalysis/Exceptions/Az.Automation/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Automation/SignatureIssues.csv index 83b78b5ca2f5..3b1434e15977 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Automation/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Automation/SignatureIssues.csv @@ -60,4 +60,6 @@ "Microsoft.Azure.PowerShell.Cmdlets.Automation.dll","Microsoft.Azure.Commands.Automation.Cmdlet.NewAzureAutomationAccount","New-AzAutomationAccount","1","8410","Parameter Tags of cmdlet New-AzAutomationAccount does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Automation.dll","Microsoft.Azure.Commands.Automation.Cmdlet.UnregisterAzureAutomationScheduledRunbook","Unregister-AzAutomationScheduledRunbook","1","8600","Cmdlet 'Unregister-AzAutomationScheduledRunbook' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.Automation.dll","Microsoft.Azure.Commands.Automation.Cmdlet.UpdateManagement.NewAzureAutomationSoftwareUpdateConfiguration","New-AzAutomationSoftwareUpdateConfiguration","1","8410","Parameter Windows of cmdlet New-AzAutomationSoftwareUpdateConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Automation.dll","Microsoft.Azure.Commands.Automation.Cmdlet.UpdateManagement.NewAutomationUpdateManagementAzureQuery","New-AzAutomationUpdateManagementAzureQuery","1","8100","New-AzAutomationUpdateManagementAzureQuery 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 +"Microsoft.Azure.PowerShell.Cmdlets.Automation.dll","Microsoft.Azure.Commands.Automation.Cmdlet.UpdateManagement.NewAutomationUpdateManagementAzureQuery","New-AzAutomationUpdateManagementAzureQuery","1","8100","New-AzAutomationUpdateManagementAzureQuery 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" +"Microsoft.Azure.PowerShell.Cmdlets.Automation.dll","Microsoft.Azure.Commands.Automation.Cmdlet.GetAzureAutomationHybridWorkerGroup","Get-AzAutomationHybridWorkerGroup","1","8700","Parameter set 'ByName', '__AllParameterSets' of cmdlet 'Get-AzAutomationHybridWorkerGroup' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Automation.dll","Microsoft.Azure.Commands.Automation.Cmdlet.NewAzureAutomationSchedule","New-AzAutomationSchedule","1","8700","Parameter set 'ByMonthlyDaysOfMonth', 'ByMonthlyDayOfWeek' of cmdlet 'New-AzAutomationSchedule' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." diff --git a/tools/StaticAnalysis/Exceptions/Az.Batch/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Batch/SignatureIssues.csv index 018ebb1a95cf..8cc5d67a2cb8 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Batch/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Batch/SignatureIssues.csv @@ -112,3 +112,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.NewBatchJobScheduleCommand","New-AzBatchJobSchedule","1","8600","Cmdlet 'New-AzBatchJobSchedule' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.RemoveBatchJobScheduleCommand","Remove-AzBatchJobSchedule","1","8600","Cmdlet 'Remove-AzBatchJobSchedule' has no defined output type.","Add an OutputType attribute that declares the type of the object(s) returned by this cmdlet. If this cmdlet returns no output, please set the output type to 'bool' and make sure to implement the 'PassThru' parameter." "Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.NewBatchResourceFileCommand","New-AzBatchResourceFile","1","8100","New-AzBatchResourceFile 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" +"Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.GetBatchNodeFileCommand","Get-AzBatchNodeFile","1","8700","Parameter set 'Task_Id', 'Task_ODataFilter' of cmdlet 'Get-AzBatchNodeFile' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.GetBatchNodeFileCommand","Get-AzBatchNodeFile","1","8700","Parameter set 'ParentTask', 'ParentComputeNode' of cmdlet 'Get-AzBatchNodeFile' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.GetBatchPoolNodeCountCommand","Get-AzBatchPoolNodeCount","1","8700","Parameter set 'PoolId', 'ParentObject', 'ODataFilter', '__AllParameterSets' of cmdlet 'Get-AzBatchPoolNodeCount' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Batch.dll","Microsoft.Azure.Commands.Batch.NewBatchPoolCommand","New-AzBatchPool","1","8700","Parameter set 'VirtualMachineAndTargetDedicated', 'VirtualMachineAndAutoScale', 'CloudServiceAndAutoScale' of cmdlet 'New-AzBatchPool' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." diff --git a/tools/StaticAnalysis/Exceptions/Az.Compute/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Compute/SignatureIssues.csv index 5e4c16bfffa3..d8e717cee58b 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Compute/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Compute/SignatureIssues.csv @@ -135,4 +135,8 @@ "Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.Automation.NewAzureRmVmss","New-AzVmss","1","8410","Parameter SkipExtensionsOnOverprovisionedVMs of cmdlet New-AzVmss does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.Automation.UpdateAzureRmVmss","Update-AzVmss","1","8410","Parameter SkipExtensionsOnOverprovisionedVMs of cmdlet Update-AzVmss does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.SetAzureRmVMAEMExtension","Set-AzVMAEMExtension","1","8410","Parameter SetAccessToIndividualResources of cmdlet Set-AzVMAEMExtension does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.SetAzureRmVMAEMExtension","Set-AzVMAEMExtension","1","8420","Parameter set 'NewExtension' of cmdlet 'Set-AzVMAEMExtension' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." \ No newline at end of file +"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.SetAzureRmVMAEMExtension","Set-AzVMAEMExtension","1","8420","Parameter set 'NewExtension' of cmdlet 'Set-AzVMAEMExtension' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." +"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.NewAzureVMSqlServerAutoBackupConfigCommand","New-AzVMSqlServerAutoBackupConfig","1","8700","Parameter set '__AllParameterSets', 'StorageContextSqlServerAutoBackup' of cmdlet 'New-AzVMSqlServerAutoBackupConfig' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.SetAzureVMOperatingSystemCommand","Set-AzVMOperatingSystem","1","8700","Parameter set 'WindowsWinRmHttps', 'WindowsDisableVMAgentWinRmHttps' of cmdlet 'Set-AzVMOperatingSystem' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.SetAzureVMOSDiskCommand","Set-AzVMOSDisk","1","8700","Parameter set '__AllParameterSets', 'WindowsParamSet', 'LinuxParamSet' of cmdlet 'Set-AzVMOSDisk' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Compute.dll","Microsoft.Azure.Commands.Compute.SetAzureVMOSDiskCommand","Set-AzVMOSDisk","1","8700","Parameter set 'WindowsDiskEncryptionParameterSet', 'LinuxDiskEncryptionParameterSet' of cmdlet 'Set-AzVMOSDisk' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." diff --git a/tools/StaticAnalysis/Exceptions/Az.Consumption/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Consumption/SignatureIssues.csv index 90a1dd4a94e3..43c66eee5459 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Consumption/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Consumption/SignatureIssues.csv @@ -1,3 +1,4 @@ "AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation" "Microsoft.Azure.PowerShell.Cmdlets.Consumption.dll","Microsoft.Azure.Commands.Consumption.Cmdlets.UsageDetails.GetAzureRmConsumptionUsageDetail","Get-AzConsumptionUsageDetail","1","8410","Parameter IncludeMeterDetails of cmdlet Get-AzConsumptionUsageDetail does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Consumption.dll","Microsoft.Azure.Commands.Consumption.Cmdlets.UsageDetails.GetAzureRmConsumptionUsageDetail","Get-AzConsumptionUsageDetail","1","8410","Parameter IncludeAdditionalProperties of cmdlet Get-AzConsumptionUsageDetail does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Consumption.dll","Microsoft.Azure.Commands.Consumption.Cmdlets.Budget.SetAzureRmConsumptionBudget","Set-AzConsumptionBudget","1","8500","Parameter set 'Piping and Notification' of cmdlet 'Set-AzConsumptionBudget' contains a space, which is discouraged for PowerShell parameter sets.","Remove the space(s) in the parameter set name." diff --git a/tools/StaticAnalysis/Exceptions/Az.DataBox/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.DataBox/SignatureIssues.csv new file mode 100644 index 000000000000..ab8c8eb76104 --- /dev/null +++ b/tools/StaticAnalysis/Exceptions/Az.DataBox/SignatureIssues.csv @@ -0,0 +1,2 @@ +"AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation" +"Microsoft.Azure.PowerShell.Cmdlets.DataBox.dll","Microsoft.Azure.Commands.DataBox.Common.NewDataBoxJob","New-AzDataBoxJob","1","8410","Parameter ExpectedDataSizeInTeraBytes of cmdlet New-AzDataBoxJob does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." diff --git a/tools/StaticAnalysis/Exceptions/Az.DataBoxEdge/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.DataBoxEdge/SignatureIssues.csv new file mode 100644 index 000000000000..2cc8444c5a6d --- /dev/null +++ b/tools/StaticAnalysis/Exceptions/Az.DataBoxEdge/SignatureIssues.csv @@ -0,0 +1,2 @@ +"AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation" +"Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.dll","Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Common.Cmdlets.Share.DataBoxEdgeShareNewCmdletBase","New-AzDataBoxEdgeShare","1","8700","Parameter set 'CloudShareNfsParameterSet', 'CloudShareSmbParameterSet' of cmdlet 'New-AzDataBoxEdgeShare' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." diff --git a/tools/StaticAnalysis/Exceptions/Az.DataFactoryV2/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.DataFactoryV2/SignatureIssues.csv index e282d3639ed3..a63a4de544c4 100644 --- a/tools/StaticAnalysis/Exceptions/Az.DataFactoryV2/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.DataFactoryV2/SignatureIssues.csv @@ -21,4 +21,5 @@ "Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll","Microsoft.Azure.Commands.DataFactoryV2.InvokeAzureDataFactoryPipelineCommand","Invoke-AzDataFactoryV2Pipeline","1","8420","Parameter set 'ByPipelineObjectByParameterFile' of cmdlet 'Invoke-AzDataFactoryV2Pipeline' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." "Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll","Microsoft.Azure.Commands.DataFactoryV2.InvokeAzureDataFactoryPipelineCommand","Invoke-AzDataFactoryV2Pipeline","1","8420","Parameter set 'ByPipelineObjectByParameterObject' of cmdlet 'Invoke-AzDataFactoryV2Pipeline' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." "Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll","Microsoft.Azure.Commands.DataFactoryV2.InvokeAzureDataFactoryPipelineCommand","Invoke-AzDataFactoryV2Pipeline","1","8420","Parameter set 'ByFactoryNameByParameterFile' of cmdlet 'Invoke-AzDataFactoryV2Pipeline' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." -"Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll","Microsoft.Azure.Commands.DataFactoryV2.InvokeAzureDataFactoryPipelineCommand","Invoke-AzDataFactoryV2Pipeline","1","8420","Parameter set 'ByFactoryNameByParameterObject' of cmdlet 'Invoke-AzDataFactoryV2Pipeline' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." \ No newline at end of file +"Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll","Microsoft.Azure.Commands.DataFactoryV2.InvokeAzureDataFactoryPipelineCommand","Invoke-AzDataFactoryV2Pipeline","1","8420","Parameter set 'ByFactoryNameByParameterObject' of cmdlet 'Invoke-AzDataFactoryV2Pipeline' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." +"Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll","Microsoft.Azure.Commands.DataFactoryV2.InvokeAzureDataFactoryPipelineCommand","Invoke-AzDataFactoryV2Pipeline","1","8700","Parameter set 'ByPipelineObjectByParameterFile', 'ByPipelineObjectByParameterObject' of cmdlet 'Invoke-AzDataFactoryV2Pipeline' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." diff --git a/tools/StaticAnalysis/Exceptions/Az.EventHub/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.EventHub/SignatureIssues.csv index 5e3c832da07b..19040f2777ce 100644 --- a/tools/StaticAnalysis/Exceptions/Az.EventHub/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.EventHub/SignatureIssues.csv @@ -23,4 +23,5 @@ "Microsoft.Azure.PowerShell.Cmdlets.EventHub.dll","Microsoft.Azure.Commands.EventHub.Commands.NetworkruleSet.SetAzureEventHubNetworkrule","Set-AzEventHubNetworkRuleSet","1","8410","Parameter IPRules of cmdlet Set-AzEventHubNetworkRuleSet does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.EventHub.dll","Microsoft.Azure.Commands.EventHub.Commands.NetworkruleSet.SetAzureEventHubNetworkrule","Set-AzEventHubNetworkRuleSet","1","8410","Parameter VirtualNtewrokRules of cmdlet Set-AzEventHubNetworkRuleSet does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.EventHub.dll","Microsoft.Azure.Commands.EventHub.Commands.NetworkruleSet.SetAzureEventHubNetworkrule","Set-AzEventHubNetworkRuleSet","1","8420","Parameter set 'NetworkRuleSetPropertiesSet' of cmdlet 'Set-AzEventHubNetworkRuleSet' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." -"Microsoft.Azure.PowerShell.Cmdlets.EventHub.dll","Microsoft.Azure.Commands.EventHub.Commands.Namespace.SetAzureEventHubNamespace","Set-AzEventHubNamespace","1","8420","Parameter set 'IdentityUpdateParameterSet' of cmdlet 'Set-AzEventHubNamespace' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." \ No newline at end of file +"Microsoft.Azure.PowerShell.Cmdlets.EventHub.dll","Microsoft.Azure.Commands.EventHub.Commands.Namespace.SetAzureEventHubNamespace","Set-AzEventHubNamespace","1","8420","Parameter set 'IdentityUpdateParameterSet' of cmdlet 'Set-AzEventHubNamespace' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." +"Microsoft.Azure.PowerShell.Cmdlets.EventHub.dll","Microsoft.Azure.Commands.EventHub.Commands.Namespace.SetAzureEventHubNamespace","Set-AzEventHubNamespace","1","8700","Parameter set 'AutoInflateParameterSet', 'IdentityUpdateParameterSet' of cmdlet 'Set-AzEventHubNamespace' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." diff --git a/tools/StaticAnalysis/Exceptions/Az.HDInsight/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.HDInsight/SignatureIssues.csv index 74e10648da1e..e0ba9c3c5bfd 100644 --- a/tools/StaticAnalysis/Exceptions/Az.HDInsight/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.HDInsight/SignatureIssues.csv @@ -67,3 +67,4 @@ "Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll","Microsoft.Azure.Commands.HDInsight.ManagementCommands.AddAzureHDInsightClusterIdentity","Add-AzHDInsightClusterIdentity","1","8420","Parameter set '__AllParameterSets' of cmdlet 'Add-AzHDInsightClusterIdentity' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." "Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll","Microsoft.Azure.Commands.HDInsight.ManagementCommands.AddAzureHDInsightClusterIdentity","Add-AzHDInsightClusterIdentity","1","8420","Parameter set 'CertificateFilePath' of cmdlet 'Add-AzHDInsightClusterIdentity' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." "Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll","Microsoft.Azure.Commands.HDInsight.ManagementCommands.AddAzureHDInsightClusterIdentity","Add-AzHDInsightClusterIdentity","1","8420","Parameter set 'CertificateFileContents' of cmdlet 'Add-AzHDInsightClusterIdentity' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." +"Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll","Microsoft.Azure.Commands.HDInsight.NewAzureHDInsightClusterCommand","New-AzHDInsightCluster","1","8700","Parameter set '__AllParameterSets', 'CertificateFilePath', 'CertificateFileContents' of cmdlet 'New-AzHDInsightCluster' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." diff --git a/tools/StaticAnalysis/Exceptions/Az.IotHub/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.IotHub/SignatureIssues.csv index cc934ecb0bc9..98184099e8be 100644 --- a/tools/StaticAnalysis/Exceptions/Az.IotHub/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.IotHub/SignatureIssues.csv @@ -10,3 +10,5 @@ "Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll","Microsoft.Azure.Commands.Management.IotHub.SetAzureRmIotHub","Set-AzIotHub","1","8410","Parameter RoutingProperties of cmdlet Set-AzIotHub does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll","Microsoft.Azure.Commands.Management.IotHub.SetAzureRmIotHub","Set-AzIotHub","1","8410","Parameter Routes of cmdlet Set-AzIotHub does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll","Microsoft.Azure.Commands.Management.IotHub.SetAzureRmIotHubVerifiedCertificate","Set-AzIotHubVerifiedCertificate","1","8420","Parameter set 'ResourceSet' of cmdlet 'Set-AzIotHubVerifiedCertificate' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." +"Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll","Microsoft.Azure.Commands.Management.IotHub.SetAzIotHubDevice","Set-AzIotHubDevice","1","8700","Parameter set 'InputObjectSetForAuth', 'InputObjectSetForStatus', 'InputObjectSetForEdgeEnabled' of cmdlet 'Set-AzIotHubDevice' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll","Microsoft.Azure.Commands.Management.IotHub.SetAzIotHubDevice","Set-AzIotHubDevice","1","8700","Parameter set 'ResourceIdSetForAuth', 'ResourceIdSetForStatus', 'ResourceIdSetForEdgeEnabled' of cmdlet 'Set-AzIotHubDevice' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." diff --git a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv index 31668d27c088..943073093a2d 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv @@ -358,3 +358,15 @@ "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand","New-AzFirewallPolicyNetworkRule","1","8510","Cmdlet 'New-AzFirewallPolicyNetworkRule' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewOffice365PolicyPropertyCommand","New-AzOffice365PolicyProperty","1","8100","New-AzOffice365PolicyProperty 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" "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewVirtualApplianceSkuPropertyCommand","New-AzVirtualApplianceSkuProperty","1","8100","New-AzVirtualApplianceSkuProperty 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" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmExpressRouteGatewayCommand","Get-AzExpressRouteGateway","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzExpressRouteGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayCommand","Get-AzP2sVpnGateway","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand","Update-AzP2sVpnGateway","1","8700","Parameter set 'ByP2SVpnGatewayObjectNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayObjectByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmP2SVpnGatewayCommand","Update-AzP2sVpnGateway","1","8700","Parameter set 'ByP2SVpnGatewayResourceIdNoVpnServerConfigurationUpdate', 'ByP2SVpnGatewayResourceIdByVpnServerConfigurationObject' of cmdlet 'Update-AzP2sVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVirtualHubCommand","Get-AzVirtualHub","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualHub' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVirtualWanCommand","Get-AzVirtualWan","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVirtualWan' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVpnGatewayCommand","Get-AzVpnGateway","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnGateway' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVpnServerConfigurationCommand","Get-AzVpnServerConfiguration","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmVpnServerConfigurationCommand","Update-AzVpnServerConfiguration","1","8700","Parameter set 'ByVpnServerConfigurationObjectByCertificateAuthentication', 'ByVpnServerConfigurationObjectByRadiusAuthentication', 'ByVpnServerConfigurationObjectByAadAuthentication' of cmdlet 'Update-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.UpdateAzureRmVpnServerConfigurationCommand","Update-AzVpnServerConfiguration","1","8700","Parameter set 'ByVpnServerConfigurationResourceIdByCertificateAuthentication', 'ByVpnServerConfigurationResourceIdByRadiusAuthentication', 'ByVpnServerConfigurationResourceIdByAadAuthentication' of cmdlet 'Update-AzVpnServerConfiguration' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.GetAzureRmVpnSiteCommand","Get-AzVpnSite","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzVpnSite' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.Bastion.GetAzBastionCommand","Get-AzBastion","1","8700","Parameter set 'ListByResourceGroupName', '__AllParameterSets' of cmdlet 'Get-AzBastion' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." diff --git a/tools/StaticAnalysis/Exceptions/Az.Peering/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Peering/SignatureIssues.csv index 665dcd99b02a..a335afa467af 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Peering/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Peering/SignatureIssues.csv @@ -3,4 +3,5 @@ "Microsoft.Azure.PowerShell.Cmdlets.Peering.dll","Microsoft.Azure.PowerShell.Cmdlets.Peering.Exchange.SetAzureExchangePeeringConnectionCommand","Set-AzPeeringExchangeConnectionObject","1","8100","Set-AzPeeringExchangeConnectionObject 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" "Microsoft.Azure.PowerShell.Cmdlets.Peering.dll","Microsoft.Azure.PowerShell.Cmdlets.Peering.Direct.NewAzureDirectPeeringConnectionCommand","New-AzPeeringDirectConnectionObject","1","8100","New-AzPeeringDirectConnectionObject 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" "Microsoft.Azure.PowerShell.Cmdlets.Peering.dll","Microsoft.Azure.PowerShell.Cmdlets.Peering.Direct.SetAzureDirectPeeringConnectionCommand","Set-AzPeeringDirectConnectionObject","1","8100","Set-AzPeeringDirectConnectionObject 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" -"Microsoft.Azure.PowerShell.Cmdlets.Peering.dll","Microsoft.Azure.PowerShell.Cmdlets.Peering.PeerAsn.NewPeerAsnContactDetailCommand","New-AzPeerAsnContactDetail","1","8100","New-AzPeerAsnContactDetail 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 +"Microsoft.Azure.PowerShell.Cmdlets.Peering.dll","Microsoft.Azure.PowerShell.Cmdlets.Peering.PeerAsn.NewPeerAsnContactDetailCommand","New-AzPeerAsnContactDetail","1","8100","New-AzPeerAsnContactDetail 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" +"Microsoft.Azure.PowerShell.Cmdlets.Peering.dll","Microsoft.Azure.PowerShell.Cmdlets.Peering.Peering.GetAzurePeeringLocationCommand","Get-AzPeeringLocation","1","8700","Parameter set 'LocationByFacilityId', 'LocationByDirectType' of cmdlet 'Get-AzPeeringLocation' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." diff --git a/tools/StaticAnalysis/Exceptions/Az.ResourceManager/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.ResourceManager/SignatureIssues.csv new file mode 100644 index 000000000000..110683e0b253 --- /dev/null +++ b/tools/StaticAnalysis/Exceptions/Az.ResourceManager/SignatureIssues.csv @@ -0,0 +1,2 @@ +"AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation" +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzurePolicyAssignmentCmdlet","Get-AzPolicyAssignment","1","8700","Parameter set 'NameParameterSet', '__AllParameterSets' of cmdlet 'Get-AzPolicyAssignment' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." diff --git a/tools/StaticAnalysis/Exceptions/Az.StackEdge/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.StackEdge/SignatureIssues.csv new file mode 100644 index 000000000000..568a1609a158 --- /dev/null +++ b/tools/StaticAnalysis/Exceptions/Az.StackEdge/SignatureIssues.csv @@ -0,0 +1,2 @@ +"AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation" +"Microsoft.Azure.PowerShell.Cmdlets.StackEdge.dll","Microsoft.Azure.PowerShell.Cmdlets.StackEdge.Common.Cmdlets.Shares.StackEdgeShareNewCmdletBase","New-AzStackEdgeShare","1","8700","Parameter set 'CloudShareNfsParameterSet', 'CloudShareSmbParameterSet' of cmdlet 'New-AzStackEdgeShare' have the same mandatory parameters, and both of them are not default parameter set which may cause confusion.","Merge these parameter sets into one parameter set." diff --git a/tools/StaticAnalysis/Exceptions/Az.Websites/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Websites/SignatureIssues.csv index ce8346898d62..fbbaad0cb3e2 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Websites/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Websites/SignatureIssues.csv @@ -158,4 +158,9 @@ "Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.StopAzureWebAppCmdlet","Stop-AzWebApp","1","8510","Cmdlet 'Stop-AzWebApp' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute." "Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.GetAzureWebAppSlotPublishingProfileCmdlet","Get-AzWebAppSlotPublishingProfile","1","8410","Parameter IncludeDisasterRecoveryEndpoints of cmdlet Get-AzWebAppSlotPublishingProfile does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.GetAzureWebAppPublishingProfileCmdlet","Get-AzWebAppPublishingProfile","1","8410","Parameter IncludeDisasterRecoveryEndpoints of cmdlet Get-AzWebAppPublishingProfile does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." -"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.SetAzureWebAppSlotCmdlet","Set-AzWebAppSlot","1","8410","Parameter HostNames of cmdlet Set-AzWebAppSlot does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." \ No newline at end of file +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots.SetAzureWebAppSlotCmdlet","Set-AzWebAppSlot","1","8410","Parameter HostNames of cmdlet Set-AzWebAppSlot does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.RestoreAzureWebAppBackup","Restore-AzWebAppBackup","1","8420","Parameter set '__AllParameterSets' of cmdlet 'Restore-AzWebAppBackup' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.RestoreAzureWebAppBackup","Restore-AzWebAppBackup","1","8420","Parameter set 'FromResourceName' of cmdlet 'Restore-AzWebAppBackup' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.RestoreAzureWebAppBackup","Restore-AzWebAppBackup","1","8420","Parameter set 'FromWebApp' of cmdlet 'Restore-AzWebAppBackup' contains at least one parameter with a position larger than four, which is discouraged.","Limit the number of positional parameters in a single parameter set to four or fewer." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.EditAzureWebAppBackupConfiguration","Edit-AzWebAppBackupConfiguration","1","8410","Parameter Databases of cmdlet Edit-AzWebAppBackupConfiguration does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.Websites.dll","Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.NewAzureWebAppBackup","New-AzWebAppBackup","1","8410","Parameter Databases of cmdlet New-AzWebAppBackup does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." diff --git a/tools/StaticAnalysis/ProblemIDs.cs b/tools/StaticAnalysis/ProblemIDs.cs index 77f74f552624..007741e62f51 100644 --- a/tools/StaticAnalysis/ProblemIDs.cs +++ b/tools/StaticAnalysis/ProblemIDs.cs @@ -13,6 +13,9 @@ public static class SignatureProblemId public const int ParameterSetWithSpace = 8500; public const int MultipleParameterSetsWithNoDefault = 8510; public const int CmdletWithNoOutputType = 8600; + public const int ParameterSetWithStrictMandatoryEqual = 8700; + public const int ParameterSetWithLenientMandatoryEqual = 8710; + //public const int EmptyDefaultParameterSet = 8800; public const int CmdletWithDestructiveVerb = 98300; public const int CmdletWithForceParameter = 98310; } diff --git a/tools/StaticAnalysis/SignatureVerifier/SignatureVerifier.cs b/tools/StaticAnalysis/SignatureVerifier/SignatureVerifier.cs index 991e8bd8aba9..fd0ea65b1784 100644 --- a/tools/StaticAnalysis/SignatureVerifier/SignatureVerifier.cs +++ b/tools/StaticAnalysis/SignatureVerifier/SignatureVerifier.cs @@ -24,6 +24,7 @@ using Tools.Common.Loggers; using Tools.Common.Models; using Tools.Common.Utilities; +using ParameterSetMetadata = Tools.Common.Models.ParameterSetMetadata; namespace StaticAnalysis.SignatureVerifier { @@ -305,6 +306,22 @@ public void Analyze(IEnumerable cmdletProbingDirs, cmdlet.Name), remediation: "Define a default parameter set in the cmdlet attribute."); } + + //if (cmdlet.DefaultParameterSet.Parameters.Count == 0) + //{ + // issueLogger.LogSignatureIssue( + // cmdlet: cmdlet, + // severity: 1, + // problemId: SignatureProblemId.EmptyDefaultParameterSet, + // description: + // string.Format( + // "Default parameter set '{0}' of cmdlet '{1}' is empty.", + // cmdlet.DefaultParameterSetName, cmdlet.Name), + // remediation: "Set a non empty parameter set as the default parameter set."); + //} + + ValidateParameterSetWithMandatoryEqual(cmdlet, issueLogger); + ValidateParameterSetWithLenientMandatoryEqual(cmdlet, issueLogger); } // TODO: Remove IfDef code #if !NETSTANDARD @@ -317,6 +334,148 @@ public void Analyze(IEnumerable cmdletProbingDirs, } } + /// + /// Check whether there exist mandatory equal in the cmdlet. + /// Mandatory equal means two parameter set has exactly the same mandatory parameters. + /// If all these two parameter set are not defualt, it may cause confusion. + /// An example: https://github.com/Azure/azure-powershell/issues/10954 + /// + public void ValidateParameterSetWithMandatoryEqual(CmdletMetadata cmdlet, ReportLogger issueLogger) + { + var defaultParameterSet = cmdlet.DefaultParameterSet; + List> mandatoryEqualSetList = new List>(); + foreach (var parameterSet1 in cmdlet.ParameterSets) + { + foreach (var parameterSet2 in cmdlet.ParameterSets) + { + if (!parameterSet1.Equals(parameterSet2) && + cmdlet.DefaultParameterSetName != parameterSet1.Name && + cmdlet.DefaultParameterSetName != parameterSet2.Name) + { + if (parameterSet1.AllMandatoryParemeterEquals(parameterSet2) && + !IsParameterSetIntersectionCoveredByDefault(parameterSet1, parameterSet2, defaultParameterSet)) + { + var isExistInSet = false; + foreach (var mandatoryEqualSet in mandatoryEqualSetList) + { + if (mandatoryEqualSet.Contains(parameterSet1.Name) || mandatoryEqualSet.Contains(parameterSet2.Name)) + { + mandatoryEqualSet.Add(parameterSet1.Name); + mandatoryEqualSet.Add(parameterSet2.Name); + isExistInSet = true; + break; + } + } + if (!isExistInSet) + { + HashSet newSet = new HashSet(); + newSet.Add(parameterSet1.Name); + newSet.Add(parameterSet2.Name); + mandatoryEqualSetList.Add(newSet); + } + } + } + } + } + + if (mandatoryEqualSetList.Count > 0) + { + foreach (var mandatoryEqualSet in mandatoryEqualSetList) + { + string mandatoryEqualSetNames = ""; + foreach (var mandatoryEqualSetName in mandatoryEqualSet) + { + if (mandatoryEqualSetNames != "") + { + mandatoryEqualSetNames += ", "; + } + mandatoryEqualSetNames += "'" + mandatoryEqualSetName + "'"; + } + issueLogger.LogSignatureIssue( + cmdlet: cmdlet, + severity: 1, + problemId: SignatureProblemId.ParameterSetWithStrictMandatoryEqual, + description: + string.Format( + "Parameter set {0} of cmdlet '{1}' have the same mandatory parameters, " + + "and both of them are not default parameter set which may cause confusion.", + mandatoryEqualSetNames, cmdlet.Name), + remediation: "Merge these parameter sets into one parameter set."); + } + } + } + + /// + /// Check whether there exist lenient mandatory equal in the cmdlet + /// Lenient mandatory equal means for two parameter set, one parameter set's mandatory parameters can + /// be found in another parameter set whether as mandatory or optional. + /// If all these two parameter set are not defualt, it may cause confusion. + /// + public void ValidateParameterSetWithLenientMandatoryEqual(CmdletMetadata cmdlet, ReportLogger issueLogger) + { + var defaultParameterSet = cmdlet.DefaultParameterSet; + foreach (var parameterSet1 in cmdlet.ParameterSets) + { + foreach (var parameterSet2 in cmdlet.ParameterSets) + { + if (!parameterSet1.Equals(parameterSet2) && + cmdlet.DefaultParameterSetName != parameterSet1.Name && + cmdlet.DefaultParameterSetName != parameterSet2.Name && + parameterSet1.Name.CompareTo(parameterSet2.Name) > 0) + { + if (parameterSet1.AllMandatoryParemeterLenientEquals(parameterSet2) && + !IsParameterSetIntersectionCoveredByDefault(parameterSet1, parameterSet2, defaultParameterSet)) + { + issueLogger.LogSignatureIssue( + cmdlet: cmdlet, + severity: 1, + problemId: SignatureProblemId.ParameterSetWithLenientMandatoryEqual, + description: + string.Format( + "Parameter set '{0}' and '{1}' of cmdlet '{2}', for all mandatory parameters in {0} " + + "we can find mandatory and optional parameter in {1}, and all mandatory parameter in " + + "{1} can find the corresponding mandatory parameter in {0}, " + + "and both of them are not default parameter set which may cause confusion.", + parameterSet1.Name, parameterSet2.Name, cmdlet.Name), + remediation: "Merge these parameter sets into one parameter set."); + } + } + } + } + } + + /// + /// Judge whether the two conflict parameter sets can be covered by default parameter set. + /// Find all parameters these two sets both contains and if anyone can't be found in default set return false. + /// + /// True if can be covered, false otherwise. + public bool IsParameterSetIntersectionCoveredByDefault(ParameterSetMetadata parameterSet1, ParameterSetMetadata parameterSet2, ParameterSetMetadata defaultParameterSet) + { + foreach (var parameter1 in parameterSet1.Parameters) + { + foreach (var parameter2 in parameterSet2.Parameters) + { + if (parameter1.ParameterMetadata.Name == parameter2.ParameterMetadata.Name) + { + var IsIntersectionCovered = false; + foreach (var defaultParameter in defaultParameterSet.Parameters) + { + if (defaultParameter.ParameterMetadata.Name == parameter1.ParameterMetadata.Name) + { + IsIntersectionCovered = true; + break; + } + } + if (!IsIntersectionCovered) + { + return false; + } + } + } + } + return true; + } + /// /// Creates analysis report /// diff --git a/tools/Tools.Common/Extensions/ReflectionExtensions.cs b/tools/Tools.Common/Extensions/ReflectionExtensions.cs index a1ccd3cecfbf..6a60209db287 100644 --- a/tools/Tools.Common/Extensions/ReflectionExtensions.cs +++ b/tools/Tools.Common/Extensions/ReflectionExtensions.cs @@ -28,9 +28,9 @@ public static T GetAttribute(this Type decoratedType) where T : Attribute return decoratedType.GetTypeInfo().GetCustomAttribute(typeof(T), true) as T; } - public static T GetAttribute(this PropertyInfo decoratedProperty) where T : Attribute + public static T GetAttribute(this ParameterInfo decoratedParameter) where T : Attribute { - return decoratedProperty.GetCustomAttribute(typeof(T), true) as T; + return decoratedParameter.MemberInfo.GetCustomAttribute(typeof(T), true) as T; } public static IEnumerable GetAttributes(this Type decoratedType) where T : Attribute @@ -38,26 +38,39 @@ public static IEnumerable GetAttributes(this Type decoratedType) where T : return decoratedType.GetTypeInfo().GetCustomAttributes(typeof(T), false).Select(a => a as T); } - public static IEnumerable GetAttributes(this PropertyInfo decoratedProeprty) where T : Attribute + public static IEnumerable GetAttributes(this ParameterInfo decoratedParameter) where T : Attribute { - return decoratedProeprty.GetCustomAttributes(typeof(T), false).Select(a => a as T); + return decoratedParameter.MemberInfo.GetCustomAttributes(typeof(T), false).Select(a => a as T); } public static bool HasAttribute(this Type decoratedType) where T : Attribute { - return decoratedType.GetTypeInfo().CustomAttributes.Any(d => d.AttributeType == typeof (T)); + return decoratedType.GetTypeInfo().CustomAttributes.Any(d => d.AttributeType == typeof(T)); } - public static bool HasAttribute(this PropertyInfo decoratedProperty) where T : Attribute + public static bool HasAttribute(this ParameterInfo decoratedParameter) where T : Attribute { - return decoratedProperty.CustomAttributes.Any(d => d.AttributeType == typeof(T)); + return decoratedParameter.MemberInfo.CustomAttributes.Any(d => d.AttributeType == typeof(T)); } - public static IEnumerable GetParameters(this Type cmdletType) + public class ParameterInfo { - return cmdletType.GetProperties().Where(p => p.HasAttribute()); + public ParameterInfo(MemberInfo memberInfo, Type parameterType) + { + MemberInfo = memberInfo; + ParameterType = parameterType; + } + public MemberInfo MemberInfo; + public Type ParameterType; + } + + public static IEnumerable GetParameters(this Type cmdletType) + { + var properties = cmdletType.GetProperties().Select(p => new ParameterInfo((MemberInfo)p, p.PropertyType)).Where(p => p.HasAttribute()); + var fields = cmdletType.GetFields().Select(f => new ParameterInfo((MemberInfo)f, f.FieldType)).Where(f => f.HasAttribute()); + return properties.Concat(fields); } public static IEnumerable GetCmdletTypes(this Assembly assembly) diff --git a/tools/Tools.Common/Loaders/CmdletLoader.cs b/tools/Tools.Common/Loaders/CmdletLoader.cs index 74e9410ba92f..e731c27bff44 100644 --- a/tools/Tools.Common/Loaders/CmdletLoader.cs +++ b/tools/Tools.Common/Loaders/CmdletLoader.cs @@ -108,15 +108,15 @@ public ModuleMetadata GetModuleMetadata(string assemblyPath) foreach (var parameter in parameters) { - if (string.Equals(parameter.Name, "Force", StringComparison.OrdinalIgnoreCase) && parameter.PropertyType == typeof(SwitchParameter)) + if (string.Equals(parameter.MemberInfo.Name, "Force", StringComparison.OrdinalIgnoreCase) && parameter.ParameterType == typeof(SwitchParameter)) { cmdletMetadata.HasForceSwitch = true; } var parameterData = new Models.ParameterMetadata { - Type = parameter.PropertyType, - Name = parameter.Name + Type = parameter.ParameterType, + Name = parameter.MemberInfo.Name }; if (parameter.HasAttribute()) diff --git a/tools/Tools.Common/Models/CmdletMetadata.cs b/tools/Tools.Common/Models/CmdletMetadata.cs index cd5e2d4ee3ab..d3580292f844 100644 --- a/tools/Tools.Common/Models/CmdletMetadata.cs +++ b/tools/Tools.Common/Models/CmdletMetadata.cs @@ -274,6 +274,12 @@ public bool HasSingularNoun /// public string DefaultParameterSetName { get; set; } + /// + /// The default parameter set + /// + [JsonIgnore] + public ParameterSetMetadata DefaultParameterSet { get { return _parameterSets.Find(p => string.Equals(p.Name, this.DefaultParameterSetName, StringComparison.OrdinalIgnoreCase)); } } + /// /// The set of output types for the cmdlet /// diff --git a/tools/Tools.Common/Models/ParameterSetMetadata.cs b/tools/Tools.Common/Models/ParameterSetMetadata.cs index 4c3d0157f257..b8662fec2faa 100644 --- a/tools/Tools.Common/Models/ParameterSetMetadata.cs +++ b/tools/Tools.Common/Models/ParameterSetMetadata.cs @@ -72,6 +72,119 @@ public override int GetHashCode() { return base.GetHashCode(); } + + /// + /// For all mandatory parameters in this parameter set, check if you can find corresponding + /// mandatory parameter in another parameter set and their mandatory parameters are exactly the same. + /// + /// The ParameterSetMetadata object being compared to this object. + /// True if the two objects are mandatory equal, false otherwise. + public bool AllMandatoryParemeterEquals(object obj) + { + var other = obj as ParameterSetMetadata; + if (other == null) + { + return false; + } + var mandatoryCount = 0; + var mandatoryOtherCount = 0; + foreach (var parameter in Parameters) + { + if (parameter.Mandatory) + { + mandatoryCount++; + } + } + foreach (var parameterOther in other.Parameters) + { + if (parameterOther.Mandatory) + { + mandatoryOtherCount++; + } + } + if (mandatoryCount != mandatoryOtherCount) + { + return false; + } + + foreach (var parameter in Parameters) + { + if (parameter.Mandatory) + { + var containParameter = false; + foreach (var parameterOther in other.Parameters) + { + if (parameterOther.Mandatory && parameterOther.EqualsIncludeName(parameter)) + { + containParameter = true; + break; + } + } + if (!containParameter) + { + return false; + } + } + } + return true; + } + + /// + /// For all mandatory parameters in this parameter set, check if you can find corresponding + /// mandatory or optional parameter in another parameter set and the count of mandatory parameters + /// in this parameter set must lager than another parameter set + /// + /// The ParameterSetMetadata object being compared to this object. + /// True if the two objects are lenient mandatory equal, false otherwise. + public bool AllMandatoryParemeterLenientEquals(object obj) + { + var other = obj as ParameterSetMetadata; + if (other == null) + { + return false; + } + var mandatoryCount = 0; + var mandatoryOtherCount = 0; + foreach (var parameter in Parameters) + { + if (parameter.Mandatory) + { + mandatoryCount++; + } + } + foreach (var parameterOther in other.Parameters) + { + if (parameterOther.Mandatory) + { + mandatoryOtherCount++; + } + } + if (mandatoryCount <= mandatoryOtherCount) + { + return false; + } + + foreach (var parameter in Parameters) + { + if (parameter.Mandatory) + { + var containParameter = false; + foreach (var parameterOther in other.Parameters) + { + if (parameterOther.EqualsIncludeName(parameter)) + { + containParameter = true; + break; + } + } + if (!containParameter) + { + return false; + } + } + } + return true; + } } [Serializable] @@ -129,6 +242,27 @@ public override bool Equals(Object obj) return paramsEqual; } + /// + /// Checks if two Parameter objects are equal by comparing + /// each of the properties and also their names. + /// + /// The Parameter object being compared to this object. + /// True if the two objects are equal include name, false otherwise. + public bool EqualsIncludeName(Object obj) + { + var other = obj as Parameter; + if (other == null) + { + return false; + } + + var paramsEqual = true; + paramsEqual &= this.Equals(other) && + this.ParameterMetadata.Name == other.ParameterMetadata.Name; + + return paramsEqual; + } + public override int GetHashCode() { return base.GetHashCode(); diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.dll.json index f3de9a290c73..a126fdb42e02 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.dll.json @@ -173,6 +173,68 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "DeviceObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "dataBoxEdgeDevice", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -479,6 +541,74 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "DeviceObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "dataBoxEdgeDevice", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -734,7 +864,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -778,6 +908,24 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "Type", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true } ], "ParameterSets": [ @@ -911,7 +1059,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -966,6 +1114,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Type", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -1183,7 +1355,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1227,6 +1399,24 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -1264,7 +1454,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1319,6 +1509,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -1398,7 +1612,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1453,6 +1667,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -1538,7 +1776,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1593,6 +1831,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -1606,7 +1868,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1661,10 +1923,34 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ], + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], "AliasList": [] }, { @@ -1910,7 +2196,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2039,7 +2325,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2221,7 +2507,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2409,7 +2695,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2525,7 +2811,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2773,6 +3059,68 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "DeviceObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "dataBoxEdgeDevice", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -3079,6 +3427,74 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "DeviceObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "dataBoxEdgeDevice", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -3328,7 +3744,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3382,7 +3798,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3400,7 +3816,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3444,6 +3860,60 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "Schedule", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "StartTime", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Topic", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -3553,7 +4023,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3572,12 +4042,12 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Schedule", "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3587,40 +4057,25 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "StartTime", + "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, + "Namespace": "System", + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -3628,19 +4083,14 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "FileEventTriggerParameterSet", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Topic", "AliasList": [], "Type": { "Namespace": "System", @@ -3655,10 +4105,102 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, - "Position": 0, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "FileEventTriggerParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, @@ -3741,7 +4283,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3789,7 +4331,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3857,7 +4399,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3905,7 +4447,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3973,7 +4515,31 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Schedule", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3990,6 +4556,54 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "StartTime", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Topic", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AsJob", @@ -3997,7 +4611,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4065,7 +4679,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4305,7 +4919,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4349,6 +4963,24 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -4386,7 +5018,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4441,6 +5073,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -4534,7 +5190,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4589,6 +5245,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -4674,7 +5354,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4729,6 +5409,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -4742,7 +5446,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4797,20 +5501,44 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - }, - { - "VerbName": "Get", - "NounName": "AzDataBoxEdgeStorageAccountCredential", - "Name": "Get-AzDataBoxEdgeStorageAccountCredential", - "ClassName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Common.Cmdlets.StorageAccountCredential.DataBoxEdgeStorageAccountCredentialGetCmdletBase", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzDataBoxEdgeStorageAccountCredential", + "Name": "Get-AzDataBoxEdgeStorageAccountCredential", + "ClassName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Common.Cmdlets.StorageAccountCredential.DataBoxEdgeStorageAccountCredentialGetCmdletBase", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, "DefaultParameterSetName": "ListParameterSet", "OutputTypes": [ { @@ -4976,6 +5704,68 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "DeviceObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "dataBoxEdgeDevice", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -5282,6 +6072,74 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "DeviceObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "dataBoxEdgeDevice", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -5553,7 +6411,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5754,7 +6612,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5984,7 +6842,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6028,6 +6886,24 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -6065,7 +6941,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6120,6 +6996,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -6199,7 +7099,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6254,6 +7154,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -6339,7 +7263,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6394,6 +7318,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -6407,7 +7355,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6462,14 +7410,38 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - }, - { - "VerbName": "Set", + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Set", "NounName": "AzDataBoxEdgeStorageAccountCredential", "Name": "Set-AzDataBoxEdgeStorageAccountCredential", "ClassName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Common.Cmdlets.StorageAccountCredential.DataBoxEdgeStorageAccountCredentialSetCmdlet", @@ -6653,7 +7625,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6697,6 +7669,68 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "AliasList": [ + "StorageAccountCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeStorageAccountCredential", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeStorageAccountCredential, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "storageAccountCredential", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -6782,7 +7816,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6972,7 +8006,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7088,7 +8122,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7145,68 +8179,252 @@ "ValueFromPipelineByPropertyName": false } ] - } - ], - "AliasList": [] - }, - { - "VerbName": "Get", - "NounName": "AzDataBoxEdgeShare", - "Name": "Get-AzDataBoxEdgeShare", - "ClassName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Common.Cmdlets.Share.DataBoxEdgeShareGetCmdletBase", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "ListParameterSet", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeShare", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeShare, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } + "Name": "SetByParentObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [ + "StorageAccountCredential" ], - "ReturnType": "System.Boolean" + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeStorageAccountCredential", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeStorageAccountCredential, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "storageAccountCredential", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StorageAccountAccessKey", + "AliasList": [], + "Type": { + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [] + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EncryptionKey", + "AliasList": [], + "Type": { + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true }, - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "share", - "Type": "System.Reflection.RuntimeParameterInfo" + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzDataBoxEdgeShare", + "Name": "Get-AzDataBoxEdgeShare", + "ClassName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Common.Cmdlets.Share.DataBoxEdgeShareGetCmdletBase", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ListParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeShare", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeShare, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "share", + "Type": "System.Reflection.RuntimeParameterInfo" } ] } @@ -7322,6 +8540,68 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "DeviceObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "dataBoxEdgeDevice", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -7630,41 +8910,109 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "DeviceObject", + "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "ResourceGroupName": "System.String" }, "ElementType": null, "GenericTypeArguments": [], "Methods": [ { - "Name": "Clear", + "Name": "ToString", "Parameters": [], - "ReturnType": "System.Void" + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" } ], - "Constructors": [] + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "dataBoxEdgeDevice", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] }, "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false } ] @@ -7823,7 +9171,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7867,6 +9215,104 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "AliasList": [ + "EdgeShare" + ], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeShare", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeShare, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "share", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RefreshData", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -7904,7 +9350,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7959,6 +9405,54 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RefreshData", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -8046,7 +9540,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8101,6 +9595,54 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RefreshData", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -8114,7 +9656,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8169,38 +9711,270 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - }, - { - "VerbName": "New", - "NounName": "AzDataBoxEdgeShare", - "Name": "New-AzDataBoxEdgeShare", - "ClassName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Common.Cmdlets.Share.DataBoxEdgeShareNewCmdletBase", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "SmbParameterSet", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeShare", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeShare, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", + }, + { + "ParameterMetadata": { + "Name": "RefreshData", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "InvokeByInputObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [ + "EdgeShare" + ], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeShare", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeShare, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "share", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RefreshData", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzDataBoxEdgeShare", + "Name": "New-AzDataBoxEdgeShare", + "ClassName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Common.Cmdlets.Share.DataBoxEdgeShareNewCmdletBase", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "SmbParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeShare", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeShare, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", "Parameters": [ { "Name": "obj", @@ -8322,7 +10096,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8376,7 +10150,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8412,7 +10186,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8448,7 +10222,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8577,7 +10351,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8669,7 +10443,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8741,7 +10515,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8861,7 +10635,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8953,7 +10727,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9025,7 +10799,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9145,7 +10919,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9213,7 +10987,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9333,7 +11107,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9401,7 +11175,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9521,7 +11295,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9747,7 +11521,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9791,7 +11565,25 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false - } + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } ], "ParameterSets": [ { @@ -9828,7 +11620,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9883,6 +11675,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -9962,7 +11778,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10017,6 +11833,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -10102,7 +11942,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10157,6 +11997,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -10170,7 +12034,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10225,6 +12089,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] } @@ -10474,7 +12362,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10579,7 +12467,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10695,7 +12583,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10853,7 +12741,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11011,7 +12899,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11175,7 +13063,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11339,7 +13227,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11407,7 +13295,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11643,6 +13531,68 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "DeviceObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "dataBoxEdgeDevice", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -11949,6 +13899,74 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "DeviceObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "dataBoxEdgeDevice", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -12168,7 +14186,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12222,7 +14240,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12384,7 +14402,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12585,7 +14603,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12653,7 +14671,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12869,7 +14887,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12937,7 +14955,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13225,7 +15243,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13497,7 +15515,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13541,6 +15559,24 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -13578,7 +15614,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13633,11 +15669,35 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "DeleteByInputObjectParameterSet", + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DeleteByInputObjectParameterSet", "Parameters": [ { "ParameterMetadata": { @@ -13714,7 +15774,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13769,6 +15829,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -13854,7 +15938,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13909,6 +15993,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -13922,7 +16030,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13977,6 +16085,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] } @@ -14176,6 +16308,70 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "AliasList": [ + "Role" + ], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeRole", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeRole, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "DeviceName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "role", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -14526,101 +16722,263 @@ "ValueFromPipelineByPropertyName": false } ] - } - ], - "AliasList": [] - }, - { - "VerbName": "Get", - "NounName": "AzDataBoxEdgeOrder", - "Name": "Get-AzDataBoxEdgeOrder", - "ClassName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Common.Cmdlets.Orders.DataBoxEdgeOrderGetCmdlet", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "GetByNameParameterSet", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeOrder", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeOrder, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": { - "ResourceGroupName": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Reflection.RuntimeParameterInfo" - } + "Name": "SetByInputObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [ + "Role" ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], - "Constructors": [ - { - "Name": "", - "ReturnType": null, - "Parameters": [] - }, - { - "Name": "", - "ReturnType": null, - "Parameters": [ - { - "Name": "dataBoxEdgeOrder", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "DeviceObject", - "AliasList": [], - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", - "Properties": { - "ResourceGroupName": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeRole", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeRole, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "DeviceName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "role", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ShareName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzDataBoxEdgeOrder", + "Name": "Get-AzDataBoxEdgeOrder", + "ClassName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Common.Cmdlets.Orders.DataBoxEdgeOrderGetCmdlet", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "GetByNameParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeOrder", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeOrder, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "dataBoxEdgeOrder", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "DeviceObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", "Parameters": [ { "Name": "obj", @@ -15382,7 +17740,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15751,7 +18109,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16011,7 +18369,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16055,15 +18413,33 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ + }, { - "Name": "DeleteByResourceIdParameterSet", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceId", + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "DeleteByResourceIdParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", "AliasList": [], "Type": { "Namespace": "System", @@ -16092,7 +18468,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16147,6 +18523,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -16230,7 +18630,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16285,6 +18685,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -16346,7 +18770,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16401,6 +18825,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -16414,7 +18862,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16469,6 +18917,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] } @@ -16648,6 +19120,68 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "DeviceObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "dataBoxEdgeDevice", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -16862,6 +19396,74 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "DeviceObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "dataBoxEdgeDevice", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -17143,21 +19745,81 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ + }, { - "Name": "GetByResourceIdParameterSet", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, + "Name": "EdgeStorageAccountObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeStorageAccount", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "edgeStorageAccount", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "GetByResourceIdParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], "Methods": [], @@ -17501,6 +20163,72 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "EdgeStorageAccountObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeStorageAccount", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "edgeStorageAccount", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -17756,7 +20484,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17774,7 +20502,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17818,6 +20546,86 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "AliasList": [ + "EdgeContainer" + ], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeStorageContainer", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeStorageContainer, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "container", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -17826,8 +20634,222 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", - "AliasList": [], + "Name": "ResourceId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "RefreshData", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "InvokeByNameParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DeviceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "EdgeStorageAccountName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "EdgeContainerName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -17844,7 +20866,7 @@ "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": 0, + "Position": 3, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, @@ -17855,7 +20877,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17879,7 +20901,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17934,20 +20956,15 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "InvokeByNameParameterSet", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "PassThru", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17957,21 +20974,26 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": 0, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "DeviceName", + "Name": "RefreshData", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17981,21 +21003,21 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": 1, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EdgeStorageAccountName", + "Name": "AsJob", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18005,51 +21027,40 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": 2, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "DefaultProfile", "AliasList": [ - "EdgeContainerName" + "AzContext", + "AzureRmContext", + "AzureCredential" ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": 3, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "RefreshData", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, "ElementType": null, "GenericTypeArguments": [], - "Methods": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], "Constructors": [] }, "ValidateSet": [], @@ -18064,12 +21075,12 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "PassThru", "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18085,51 +21096,80 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "InvokeByInputObjectParameterSet", + "Parameters": [ { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "InputObject", "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" + "EdgeContainer" ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeStorageContainer", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeStorageContainer, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], "Methods": [ { - "Name": "Clear", + "Name": "ToString", "Parameters": [], - "ReturnType": "System.Void" + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" } ], - "Constructors": [] + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "container", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] }, "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { "Name": "RefreshData", @@ -18137,7 +21177,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18161,7 +21201,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18216,6 +21256,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] } @@ -18369,7 +21433,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18413,6 +21477,24 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "DataFormat", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true } ], "ParameterSets": [ @@ -18522,7 +21604,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18571,12 +21653,36 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DataFormat", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true } ] }, @@ -18770,7 +21876,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18814,6 +21920,24 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -18851,7 +21975,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18906,6 +22030,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -18985,7 +22133,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19040,6 +22188,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -19149,7 +22321,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19204,6 +22376,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -19217,7 +22413,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19272,6 +22468,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] } @@ -19453,6 +22673,68 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "DeviceObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "dataBoxEdgeDevice", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -19763,6 +23045,74 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "DeviceObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "dataBoxEdgeDevice", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -19998,7 +23348,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20029,13 +23379,31 @@ }, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Cloud", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -20127,7 +23495,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20182,6 +23550,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Cloud", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true } ] }, @@ -20291,7 +23683,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20346,6 +23738,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Cloud", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true } ] } @@ -20517,7 +23933,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20561,6 +23977,24 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -20598,7 +24032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20653,6 +24087,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -20732,7 +24190,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20787,6 +24245,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -20872,7 +24354,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20927,6 +24409,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -20940,7 +24446,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20995,6 +24501,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] } @@ -21372,7 +24902,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21390,7 +24920,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21408,7 +24938,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21426,7 +24956,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21575,7 +25105,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21667,7 +25197,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21759,7 +25289,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21851,7 +25381,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22127,7 +25657,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22243,7 +25773,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22359,7 +25889,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22475,7 +26005,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22729,7 +26259,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22747,7 +26277,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22765,7 +26295,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22783,7 +26313,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22827,6 +26357,24 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -22864,7 +26412,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22888,7 +26436,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22943,6 +26491,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -22980,7 +26552,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23004,7 +26576,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23059,6 +26631,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -23096,7 +26692,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23120,7 +26716,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23146,24 +26742,48 @@ "AzureCredential" ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -23236,7 +26856,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23260,7 +26880,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23315,6 +26935,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -23376,7 +27020,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23400,7 +27044,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23455,6 +27099,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -23516,7 +27184,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23540,7 +27208,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23595,6 +27263,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -23676,7 +27368,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23700,7 +27392,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23755,6 +27447,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -23836,7 +27552,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23860,7 +27576,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23915,6 +27631,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -23996,7 +27736,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24020,7 +27760,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24075,6 +27815,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -24088,7 +27852,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24143,6 +27907,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] } @@ -24298,7 +28086,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24451,7 +28239,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24665,7 +28453,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24709,6 +28497,24 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -24746,7 +28552,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24801,6 +28607,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -24882,7 +28712,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24937,6 +28767,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -24998,7 +28852,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25053,6 +28907,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -25066,7 +28944,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25121,6 +28999,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] } @@ -25306,6 +29208,68 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "DeviceObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "dataBoxEdgeDevice", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -25612,6 +29576,74 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "DeviceObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.Models.PSDataBoxEdgeDevice, Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ResourceGroupName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + }, + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "dataBoxEdgeDevice", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -25925,7 +29957,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26126,7 +30158,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26362,7 +30394,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26598,7 +30630,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26830,7 +30862,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26874,6 +30906,24 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -26911,7 +30961,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26966,6 +31016,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -27051,7 +31125,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27106,6 +31180,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -27191,7 +31289,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27246,6 +31344,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] }, @@ -27259,7 +31381,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27314,6 +31436,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] } @@ -27629,7 +31775,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27782,7 +31928,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27970,7 +32116,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28158,7 +32304,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28370,7 +32516,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28606,7 +32752,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28842,7 +32988,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29054,7 +33200,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29290,7 +33436,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29526,7 +33672,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29666,7 +33812,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30146,4 +34292,4 @@ "Constructors": [] } } -} +} \ No newline at end of file diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Media.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Media.dll.json index 1318ad3173e7..9273bba44a1e 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Media.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Media.dll.json @@ -1379,6 +1379,27 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "AccountName", + "AliasList": [ + "Name", + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true } ], "ParameterSets": [ @@ -1423,6 +1444,33 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AccountName", + "AliasList": [ + "Name", + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] } @@ -2148,6 +2196,42 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "StorageAccountId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IsPrimary", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -2192,6 +2276,54 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StorageAccountId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "IsPrimary", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 1, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] } @@ -2270,7 +2402,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2378,7 +2510,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3254,4 +3386,4 @@ "Constructors": [] } } -} +} \ No newline at end of file diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Network.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Network.dll.json index a5e6f6f489d2..d67d2ed76d2a 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Network.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Network.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -121,7 +121,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -302,7 +302,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -513,7 +513,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Data": "System.String", "ProvisioningState": "System.String", @@ -589,7 +589,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -758,7 +758,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -921,7 +921,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Data": "System.String", "ProvisioningState": "System.String", @@ -1153,7 +1153,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -1278,7 +1278,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -1447,7 +1447,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -1610,7 +1610,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -1717,7 +1717,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -1898,7 +1898,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -2109,7 +2109,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MinCapacity": "System.Int32", "MaxCapacity": "System.Nullable`1[System.Int32]" @@ -2163,7 +2163,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -2308,7 +2308,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -2471,7 +2471,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MinCapacity": "System.Int32", "MaxCapacity": "System.Nullable`1[System.Int32]" @@ -2703,7 +2703,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -2810,7 +2810,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -2916,7 +2916,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2973,7 +2973,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -3085,7 +3085,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3160,7 +3160,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -3267,7 +3267,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -3450,7 +3450,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -3663,7 +3663,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -3770,7 +3770,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -3969,7 +3969,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -4204,7 +4204,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -4293,7 +4293,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -4462,7 +4462,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -4625,7 +4625,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -4912,7 +4912,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -5001,7 +5001,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -5170,7 +5170,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -5333,7 +5333,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -5440,7 +5440,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -5639,7 +5639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -5874,7 +5874,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -5981,7 +5981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -6183,7 +6183,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -6254,7 +6254,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -6321,7 +6321,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -6339,7 +6339,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -6357,7 +6357,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6468,7 +6468,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -6706,7 +6706,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -6789,7 +6789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -6862,7 +6862,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -6886,7 +6886,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -6910,7 +6910,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7059,7 +7059,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -7164,7 +7164,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -7333,7 +7333,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -7498,7 +7498,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -7681,7 +7681,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -7752,7 +7752,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -7819,7 +7819,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -7837,7 +7837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -7855,7 +7855,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8092,7 +8092,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -8175,7 +8175,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -8248,7 +8248,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -8272,7 +8272,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -8296,7 +8296,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8445,7 +8445,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -8570,7 +8570,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -8739,7 +8739,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -8904,7 +8904,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -9011,7 +9011,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -9213,7 +9213,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -9284,7 +9284,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -9351,7 +9351,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -9369,7 +9369,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -9387,7 +9387,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9498,7 +9498,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -9736,7 +9736,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -9819,7 +9819,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -9892,7 +9892,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -9916,7 +9916,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -9940,7 +9940,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10089,7 +10089,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -10143,7 +10143,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -10268,7 +10268,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -10411,7 +10411,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -10639,7 +10639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -10726,7 +10726,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -10851,7 +10851,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -10994,7 +10994,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -11081,7 +11081,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -11242,7 +11242,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -11433,7 +11433,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -11487,7 +11487,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -11668,7 +11668,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -11879,7 +11879,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -11933,7 +11933,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -12077,7 +12077,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -12251,7 +12251,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -12323,7 +12323,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -12492,7 +12492,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -12655,7 +12655,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -12727,7 +12727,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -12859,7 +12859,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -12985,7 +12985,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -13213,7 +13213,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -13285,7 +13285,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -13454,7 +13454,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -13617,7 +13617,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -13689,7 +13689,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -13821,7 +13821,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -13947,7 +13947,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -14001,7 +14001,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -14182,7 +14182,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -14393,7 +14393,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -14447,7 +14447,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -14591,7 +14591,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -14765,7 +14765,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", @@ -14828,7 +14828,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -14973,7 +14973,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -15136,7 +15136,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", @@ -15278,7 +15278,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup", "GenericTypeArguments": [], @@ -15350,7 +15350,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion", "GenericTypeArguments": [], @@ -15510,7 +15510,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup", "GenericTypeArguments": [], @@ -15606,7 +15606,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion", "GenericTypeArguments": [], @@ -15681,7 +15681,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -15788,7 +15788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -15973,7 +15973,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup", "GenericTypeArguments": [], @@ -16045,7 +16045,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion", "GenericTypeArguments": [], @@ -16102,7 +16102,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -16317,7 +16317,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup", "GenericTypeArguments": [], @@ -16413,7 +16413,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion", "GenericTypeArguments": [], @@ -16488,7 +16488,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "System.Collections.Generic.List`1[System.Int32]", "RuleGroupName": "System.String", @@ -16717,7 +16717,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MatchVariable": "System.String", "SelectorMatchOperator": "System.String", @@ -16988,7 +16988,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -17095,7 +17095,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -17255,7 +17255,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -17388,7 +17388,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -17464,7 +17464,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]", "ProvisioningState": "System.String", @@ -17579,7 +17579,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -17879,7 +17879,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -18083,7 +18083,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -18204,7 +18204,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -18286,7 +18286,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]", "ProvisioningState": "System.String", @@ -18350,7 +18350,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -18537,7 +18537,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -18620,7 +18620,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -18789,7 +18789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -18952,7 +18952,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -19071,7 +19071,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -19204,7 +19204,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -19280,7 +19280,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]", "ProvisioningState": "System.String", @@ -19675,7 +19675,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -19796,7 +19796,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -19878,7 +19878,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]", "ProvisioningState": "System.String", @@ -20017,7 +20017,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -20142,7 +20142,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -20311,7 +20311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -20474,7 +20474,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -20581,7 +20581,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -20741,7 +20741,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -20874,7 +20874,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -20950,7 +20950,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]", "ProvisioningState": "System.String", @@ -21065,7 +21065,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -21365,7 +21365,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -21569,7 +21569,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -21690,7 +21690,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -21772,7 +21772,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]", "ProvisioningState": "System.String", @@ -21836,7 +21836,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -22023,7 +22023,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -22130,7 +22130,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -22311,7 +22311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -22522,7 +22522,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -22598,7 +22598,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -22767,7 +22767,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -22930,7 +22930,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -23162,7 +23162,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -23287,7 +23287,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -23456,7 +23456,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -23619,7 +23619,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -23726,7 +23726,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -23907,7 +23907,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -24118,7 +24118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -24225,7 +24225,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -24367,7 +24367,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -24521,7 +24521,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -24725,7 +24725,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -24905,7 +24905,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -25026,7 +25026,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -25213,7 +25213,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "ProvisioningState": "System.String", @@ -25290,7 +25290,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -25459,7 +25459,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -25622,7 +25622,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "ProvisioningState": "System.String", @@ -25717,7 +25717,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -26031,7 +26031,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -26227,7 +26227,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -26352,7 +26352,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -26521,7 +26521,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -26684,7 +26684,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -26791,7 +26791,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -26933,7 +26933,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -27087,7 +27087,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -27291,7 +27291,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -27471,7 +27471,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -27592,7 +27592,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -27779,7 +27779,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableServerVariableAndRequestHeaderResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableServerVariableAndRequestHeaderResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableServerVariableAndRequestHeaderResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableServerVariable": "System.Collections.Generic.IList`1[System.String]", "AvailableRequestHeader": "System.Collections.Generic.IList`1[System.String]", @@ -27860,6 +27860,60 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "ServerVariable", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RequestHeader", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResponseHeader", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -27904,6 +27958,78 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServerVariable", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RequestHeader", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResponseHeader", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] } @@ -27926,7 +28052,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableSslOptions", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableSslOptions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableSslOptions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PredefinedPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "AvailableCipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -28087,7 +28213,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableWafRuleSetsResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableWafRuleSetsResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableWafRuleSetsResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Value": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet]", "ValueText": "System.String" @@ -28234,7 +28360,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealth", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool]", "BackendAddressPoolsText": "System.String" @@ -28344,7 +28470,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28451,7 +28577,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28593,7 +28719,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28668,7 +28794,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -28953,7 +29079,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPredefinedPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPredefinedPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPredefinedPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CipherSuites": "System.Collections.Generic.List`1[System.String]", "MinProtocolVersion": "System.String", @@ -29145,7 +29271,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -29252,7 +29378,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -29394,7 +29520,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -29476,7 +29602,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -29569,7 +29695,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -29632,7 +29758,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -29770,7 +29896,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -29827,7 +29953,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -30065,7 +30191,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -30229,7 +30355,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -30467,7 +30593,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -30535,7 +30661,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -30605,7 +30731,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -30668,7 +30794,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -30737,7 +30863,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -30803,7 +30929,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -31041,7 +31167,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -31116,7 +31242,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -31204,7 +31330,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -31373,7 +31499,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -31536,7 +31662,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -31642,7 +31768,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -31724,7 +31850,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -31817,7 +31943,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -31880,7 +32006,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -32018,7 +32144,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -32201,7 +32327,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -32491,7 +32617,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -32559,7 +32685,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -32629,7 +32755,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -32692,7 +32818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -32761,7 +32887,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -32953,7 +33079,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -33028,7 +33154,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -33116,7 +33242,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -33285,7 +33411,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -33448,7 +33574,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -33555,7 +33681,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -33697,7 +33823,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -33779,7 +33905,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -33872,7 +33998,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -33935,7 +34061,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -34073,7 +34199,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -34130,7 +34256,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -34368,7 +34494,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -34532,7 +34658,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -34770,7 +34896,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -34838,7 +34964,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -34908,7 +35034,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -34971,7 +35097,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -35040,7 +35166,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -35106,7 +35232,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -35344,7 +35470,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -35419,7 +35545,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -35475,7 +35601,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -35620,7 +35746,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -35783,7 +35909,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -35975,7 +36101,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -36082,7 +36208,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -36227,7 +36353,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -36390,7 +36516,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -36497,7 +36623,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -36662,7 +36788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -36851,7 +36977,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -37014,7 +37140,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capacity": "System.Nullable`1[System.Int32]", "Tier": "System.String", @@ -37068,7 +37194,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", "CipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -37126,7 +37252,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration", "GenericTypeArguments": [], @@ -37144,7 +37270,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", "GenericTypeArguments": [], @@ -37162,7 +37288,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -37180,7 +37306,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -37198,7 +37324,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", "GenericTypeArguments": [], @@ -37216,7 +37342,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", "GenericTypeArguments": [], @@ -37234,7 +37360,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", "GenericTypeArguments": [], @@ -37252,7 +37378,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -37270,7 +37396,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", "GenericTypeArguments": [], @@ -37288,7 +37414,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", "GenericTypeArguments": [], @@ -37306,7 +37432,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", "GenericTypeArguments": [], @@ -37324,7 +37450,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", "GenericTypeArguments": [], @@ -37342,7 +37468,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", "GenericTypeArguments": [], @@ -37360,7 +37486,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", "GenericTypeArguments": [], @@ -37378,7 +37504,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", @@ -37458,7 +37584,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -37521,7 +37647,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MinCapacity": "System.Int32", "MaxCapacity": "System.Nullable`1[System.Int32]" @@ -37574,7 +37700,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -37592,7 +37718,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -37610,7 +37736,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -37684,7 +37810,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -37739,7 +37865,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -37757,7 +37883,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -37775,7 +37901,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -37793,7 +37919,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", "GenericTypeArguments": [], @@ -37924,7 +38050,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capacity": "System.Nullable`1[System.Int32]", "Tier": "System.String", @@ -37984,7 +38110,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", "CipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -38048,7 +38174,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration", "GenericTypeArguments": [], @@ -38072,7 +38198,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", "GenericTypeArguments": [], @@ -38096,7 +38222,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -38120,7 +38246,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -38144,7 +38270,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", "GenericTypeArguments": [], @@ -38168,7 +38294,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", "GenericTypeArguments": [], @@ -38192,7 +38318,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", "GenericTypeArguments": [], @@ -38216,7 +38342,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -38240,7 +38366,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", "GenericTypeArguments": [], @@ -38264,7 +38390,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", "GenericTypeArguments": [], @@ -38288,7 +38414,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", "GenericTypeArguments": [], @@ -38312,7 +38438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", "GenericTypeArguments": [], @@ -38336,7 +38462,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", "GenericTypeArguments": [], @@ -38360,7 +38486,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", "GenericTypeArguments": [], @@ -38384,7 +38510,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", @@ -38452,7 +38578,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MinCapacity": "System.Int32", "MaxCapacity": "System.Nullable`1[System.Int32]" @@ -38511,7 +38637,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -38535,7 +38661,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -38559,7 +38685,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -38631,7 +38757,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -38655,7 +38781,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -38679,7 +38805,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -38703,7 +38829,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", "GenericTypeArguments": [], @@ -38869,7 +38995,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capacity": "System.Nullable`1[System.Int32]", "Tier": "System.String", @@ -38929,7 +39055,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", "CipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -38993,7 +39119,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration", "GenericTypeArguments": [], @@ -39017,7 +39143,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", "GenericTypeArguments": [], @@ -39041,7 +39167,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -39065,7 +39191,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -39089,7 +39215,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", "GenericTypeArguments": [], @@ -39113,7 +39239,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", "GenericTypeArguments": [], @@ -39137,7 +39263,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", "GenericTypeArguments": [], @@ -39161,7 +39287,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -39185,7 +39311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", "GenericTypeArguments": [], @@ -39209,7 +39335,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", "GenericTypeArguments": [], @@ -39233,7 +39359,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", "GenericTypeArguments": [], @@ -39257,7 +39383,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", "GenericTypeArguments": [], @@ -39281,7 +39407,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", "GenericTypeArguments": [], @@ -39305,7 +39431,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", "GenericTypeArguments": [], @@ -39329,7 +39455,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", @@ -39397,7 +39523,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MinCapacity": "System.Int32", "MaxCapacity": "System.Nullable`1[System.Int32]" @@ -39456,7 +39582,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -39480,7 +39606,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -39504,7 +39630,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -39576,7 +39702,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -39600,7 +39726,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -39624,7 +39750,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -39648,7 +39774,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", "GenericTypeArguments": [], @@ -39716,7 +39842,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -39859,7 +39985,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capacity": "System.Nullable`1[System.Int32]", "Tier": "System.String", @@ -39919,7 +40045,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", "CipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -39983,7 +40109,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration", "GenericTypeArguments": [], @@ -40007,7 +40133,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", "GenericTypeArguments": [], @@ -40031,7 +40157,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -40055,7 +40181,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -40079,7 +40205,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", "GenericTypeArguments": [], @@ -40103,7 +40229,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", "GenericTypeArguments": [], @@ -40127,7 +40253,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", "GenericTypeArguments": [], @@ -40151,7 +40277,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -40175,7 +40301,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", "GenericTypeArguments": [], @@ -40199,7 +40325,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", "GenericTypeArguments": [], @@ -40223,7 +40349,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", "GenericTypeArguments": [], @@ -40247,7 +40373,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", "GenericTypeArguments": [], @@ -40271,7 +40397,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", "GenericTypeArguments": [], @@ -40295,7 +40421,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", "GenericTypeArguments": [], @@ -40319,7 +40445,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", @@ -40387,7 +40513,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MinCapacity": "System.Int32", "MaxCapacity": "System.Nullable`1[System.Int32]" @@ -40446,7 +40572,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -40470,7 +40596,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -40494,7 +40620,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -40566,7 +40692,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -40590,7 +40716,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -40614,7 +40740,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -40638,7 +40764,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", "GenericTypeArguments": [], @@ -40806,7 +40932,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capacity": "System.Nullable`1[System.Int32]", "Tier": "System.String", @@ -40866,7 +40992,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", "CipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -40930,7 +41056,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration", "GenericTypeArguments": [], @@ -40954,7 +41080,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", "GenericTypeArguments": [], @@ -40978,7 +41104,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -41002,7 +41128,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -41026,7 +41152,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", "GenericTypeArguments": [], @@ -41050,7 +41176,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", "GenericTypeArguments": [], @@ -41074,7 +41200,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", "GenericTypeArguments": [], @@ -41098,7 +41224,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -41122,7 +41248,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", "GenericTypeArguments": [], @@ -41146,7 +41272,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", "GenericTypeArguments": [], @@ -41170,7 +41296,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", "GenericTypeArguments": [], @@ -41194,7 +41320,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", "GenericTypeArguments": [], @@ -41218,7 +41344,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", "GenericTypeArguments": [], @@ -41242,7 +41368,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", "GenericTypeArguments": [], @@ -41266,7 +41392,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", @@ -41334,7 +41460,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MinCapacity": "System.Int32", "MaxCapacity": "System.Nullable`1[System.Int32]" @@ -41393,7 +41519,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -41417,7 +41543,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -41441,7 +41567,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -41513,7 +41639,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -41537,7 +41663,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -41561,7 +41687,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -41585,7 +41711,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", "GenericTypeArguments": [], @@ -41653,7 +41779,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -41788,7 +41914,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capacity": "System.Nullable`1[System.Int32]", "Tier": "System.String", @@ -41848,7 +41974,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", "CipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -41912,7 +42038,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration", "GenericTypeArguments": [], @@ -41936,7 +42062,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", "GenericTypeArguments": [], @@ -41960,7 +42086,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", "GenericTypeArguments": [], @@ -41984,7 +42110,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", "GenericTypeArguments": [], @@ -42008,7 +42134,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", "GenericTypeArguments": [], @@ -42032,7 +42158,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", "GenericTypeArguments": [], @@ -42056,7 +42182,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", "GenericTypeArguments": [], @@ -42080,7 +42206,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -42104,7 +42230,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", "GenericTypeArguments": [], @@ -42128,7 +42254,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", "GenericTypeArguments": [], @@ -42152,7 +42278,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", "GenericTypeArguments": [], @@ -42176,7 +42302,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", "GenericTypeArguments": [], @@ -42200,7 +42326,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", "GenericTypeArguments": [], @@ -42224,7 +42350,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", "GenericTypeArguments": [], @@ -42248,7 +42374,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", @@ -42316,7 +42442,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MinCapacity": "System.Int32", "MaxCapacity": "System.Nullable`1[System.Int32]" @@ -42375,7 +42501,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -42399,7 +42525,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -42423,7 +42549,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -42495,7 +42621,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -42519,7 +42645,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -42543,7 +42669,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", "GenericTypeArguments": [], @@ -42567,7 +42693,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", "GenericTypeArguments": [], @@ -42642,7 +42768,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -42764,7 +42890,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -42852,7 +42978,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -42956,7 +43082,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -43037,7 +43163,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -43122,7 +43248,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -43528,7 +43654,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -43604,7 +43730,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -43696,7 +43822,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -43765,7 +43891,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -43838,7 +43964,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -44006,7 +44132,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -44113,7 +44239,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -44237,7 +44363,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration", "GenericTypeArguments": [], @@ -44294,7 +44420,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -44430,7 +44556,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration", "GenericTypeArguments": [], @@ -44505,7 +44631,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]", "ProvisioningState": "System.String", @@ -44564,7 +44690,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -44727,7 +44853,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -44914,7 +45040,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]", "ProvisioningState": "System.String", @@ -44991,7 +45117,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration", "GenericTypeArguments": [], @@ -45072,7 +45198,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration", "GenericTypeArguments": [], @@ -45147,7 +45273,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "Primary": "System.Nullable`1[System.Boolean]", @@ -45227,7 +45353,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -45380,7 +45506,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -45461,7 +45587,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -45632,7 +45758,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -45707,7 +45833,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -45832,7 +45958,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -46001,7 +46127,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -46164,7 +46290,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -46271,7 +46397,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -46395,7 +46521,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration", "GenericTypeArguments": [], @@ -46452,7 +46578,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -46588,7 +46714,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration", "GenericTypeArguments": [], @@ -46663,7 +46789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCodes": "System.Collections.Generic.List`1[System.String]", "Body": "System.String", @@ -46892,7 +47018,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -46999,7 +47125,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -47234,7 +47360,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -47288,7 +47414,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCodes": "System.Collections.Generic.List`1[System.String]", "Body": "System.String", @@ -47381,7 +47507,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -47664,7 +47790,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -47736,7 +47862,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCodes": "System.Collections.Generic.List`1[System.String]", "Body": "System.String", @@ -47847,7 +47973,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -47933,7 +48059,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -48102,7 +48228,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -48265,7 +48391,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -48462,7 +48588,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -48516,7 +48642,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCodes": "System.Collections.Generic.List`1[System.String]", "Body": "System.String", @@ -48780,7 +48906,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -48852,7 +48978,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCodes": "System.Collections.Generic.List`1[System.String]", "Body": "System.String", @@ -48963,7 +49089,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -49088,7 +49214,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -49257,7 +49383,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -49420,7 +49546,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -49527,7 +49653,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -49762,7 +49888,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -49816,7 +49942,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCodes": "System.Collections.Generic.List`1[System.String]", "Body": "System.String", @@ -49909,7 +50035,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -50192,7 +50318,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -50264,7 +50390,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCodes": "System.Collections.Generic.List`1[System.String]", "Body": "System.String", @@ -50375,7 +50501,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -50482,7 +50608,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -50647,7 +50773,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -50813,7 +50939,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -51098,7 +51224,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -51359,7 +51485,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -51434,7 +51560,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -51719,7 +51845,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -51987,7 +52113,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -52073,7 +52199,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -52242,7 +52368,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -52405,7 +52531,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -52532,7 +52658,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -53020,7 +53146,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -53424,7 +53550,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -53549,7 +53675,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -53718,7 +53844,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -53881,7 +54007,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -53988,7 +54114,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -54153,7 +54279,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -54319,7 +54445,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -54604,7 +54730,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -54865,7 +54991,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -54940,7 +55066,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -55225,7 +55351,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -55550,7 +55676,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -55568,7 +55694,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -55675,7 +55801,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -55699,7 +55825,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -55774,7 +55900,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -55881,7 +56007,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -56044,7 +56170,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -56148,7 +56274,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -56235,7 +56361,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -56323,7 +56449,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -56406,7 +56532,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -56487,7 +56613,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -56593,7 +56719,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -56944,7 +57070,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -57151,7 +57277,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -57243,7 +57369,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -57318,7 +57444,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -57394,7 +57520,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -57465,7 +57591,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -57534,7 +57660,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -57607,7 +57733,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -57821,7 +57947,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -57909,7 +58035,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -58078,7 +58204,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -58241,7 +58367,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -58368,7 +58494,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -58472,7 +58598,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -58559,7 +58685,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -58647,7 +58773,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -58730,7 +58856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -58811,7 +58937,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -59251,7 +59377,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -59343,7 +59469,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -59418,7 +59544,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -59494,7 +59620,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -59565,7 +59691,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -59634,7 +59760,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -59809,7 +59935,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -59897,7 +60023,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -60066,7 +60192,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -60229,7 +60355,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -60336,7 +60462,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -60499,7 +60625,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -60603,7 +60729,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -60690,7 +60816,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -60778,7 +60904,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -60861,7 +60987,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -60942,7 +61068,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -61048,7 +61174,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -61399,7 +61525,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -61606,7 +61732,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -61698,7 +61824,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -61773,7 +61899,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -61849,7 +61975,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -61920,7 +62046,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -61989,7 +62115,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -62062,7 +62188,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -62276,7 +62402,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UrlConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", "RequestHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", @@ -62334,7 +62460,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -62354,7 +62480,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -62374,7 +62500,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Reroute": "System.Boolean", "ModifiedQueryString": "System.String", @@ -62467,7 +62593,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -62493,7 +62619,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -62519,7 +62645,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Reroute": "System.Boolean", "ModifiedQueryString": "System.String", @@ -62630,7 +62756,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IgnoreCase": "System.Nullable`1[System.Boolean]", "Negate": "System.Nullable`1[System.Boolean]", @@ -62722,7 +62848,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -62740,7 +62866,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -62845,7 +62971,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -62869,7 +62995,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -62944,7 +63070,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HeaderName": "System.String", "HeaderValue": "System.String" @@ -63172,7 +63298,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -63279,7 +63405,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -63403,7 +63529,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -63462,7 +63588,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -63598,7 +63724,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -63675,7 +63801,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -63757,7 +63883,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -63926,7 +64052,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -64089,7 +64215,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -64171,7 +64297,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -64254,7 +64380,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -64331,7 +64457,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -64456,7 +64582,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -64625,7 +64751,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -64788,7 +64914,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -64895,7 +65021,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -65019,7 +65145,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -65078,7 +65204,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -65214,7 +65340,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -65291,7 +65417,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Reroute": "System.Boolean", "ModifiedQueryString": "System.String", @@ -65382,7 +65508,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -65487,7 +65613,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -65562,7 +65688,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ActionSet": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet", "Conditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition]", @@ -65639,7 +65765,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UrlConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", "RequestHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", @@ -65714,7 +65840,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition", "GenericTypeArguments": [], @@ -65795,7 +65921,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UrlConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", "RequestHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", @@ -65882,7 +66008,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition", "GenericTypeArguments": [], @@ -65957,7 +66083,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -66064,7 +66190,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -66170,7 +66296,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -66227,7 +66353,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -66339,7 +66465,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -66414,7 +66540,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capacity": "System.Nullable`1[System.Int32]", "Tier": "System.String", @@ -66469,7 +66595,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -66614,7 +66740,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -66777,7 +66903,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capacity": "System.Nullable`1[System.Int32]", "Tier": "System.String", @@ -67078,7 +67204,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -67185,7 +67311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -67399,7 +67525,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -67649,7 +67775,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -67756,7 +67882,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -67973,7 +68099,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -68232,7 +68358,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -68311,7 +68437,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -68480,7 +68606,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -68643,7 +68769,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -68962,7 +69088,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -69087,7 +69213,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -69256,7 +69382,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -69419,7 +69545,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -69526,7 +69652,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -69743,7 +69869,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -70002,7 +70128,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", "CipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -70061,7 +70187,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -70206,7 +70332,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -70369,7 +70495,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", "CipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -70750,7 +70876,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -70857,7 +70983,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -70963,7 +71089,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -71020,7 +71146,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -71132,7 +71258,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -71207,7 +71333,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -71314,7 +71440,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -71560,7 +71686,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -71854,7 +71980,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -71961,7 +72087,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -72106,7 +72232,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -72269,7 +72395,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -72376,7 +72502,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -72482,7 +72608,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -72539,7 +72665,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -72651,7 +72777,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -72726,7 +72852,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -72833,7 +72959,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -73014,7 +73140,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -73225,7 +73351,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Data": "System.String", "ProvisioningState": "System.String", @@ -73301,7 +73427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -73470,7 +73596,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -73633,7 +73759,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Data": "System.String", "ProvisioningState": "System.String", @@ -73865,7 +73991,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -73990,7 +74116,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -74159,7 +74285,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -74322,7 +74448,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -74429,7 +74555,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -74610,7 +74736,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -74821,7 +74947,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -74928,7 +75054,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -75052,7 +75178,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -75088,7 +75214,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -75176,7 +75302,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -75262,7 +75388,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -75361,7 +75487,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -75467,7 +75593,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -75603,7 +75729,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -75743,7 +75869,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -75879,7 +76005,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -75947,7 +76073,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -76023,7 +76149,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -76115,7 +76241,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -76184,7 +76310,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -76320,7 +76446,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -76388,7 +76514,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -76457,7 +76583,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -76530,7 +76656,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -76666,7 +76792,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -76782,7 +76908,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -76918,7 +77044,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -76993,7 +77119,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -77077,7 +77203,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -77246,7 +77372,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -77409,7 +77535,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -77493,7 +77619,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -77529,7 +77655,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -77617,7 +77743,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -77703,7 +77829,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -77802,7 +77928,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -77932,7 +78058,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -78096,7 +78222,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -78164,7 +78290,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -78240,7 +78366,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -78332,7 +78458,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -78425,7 +78551,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -78493,7 +78619,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -78562,7 +78688,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -78659,7 +78785,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -78799,7 +78925,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -78874,7 +79000,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -78999,7 +79125,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -79168,7 +79294,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -79331,7 +79457,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -79438,7 +79564,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -79562,7 +79688,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -79598,7 +79724,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -79686,7 +79812,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -79772,7 +79898,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -79871,7 +79997,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -79977,7 +80103,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -80113,7 +80239,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -80253,7 +80379,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -80389,7 +80515,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -80457,7 +80583,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -80533,7 +80659,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -80625,7 +80751,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -80694,7 +80820,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -80830,7 +80956,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -80898,7 +81024,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -80967,7 +81093,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -81040,7 +81166,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -81176,7 +81302,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -81292,7 +81418,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", @@ -81428,7 +81554,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", "GenericTypeArguments": [], @@ -81503,7 +81629,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAvailablePrivateEndpointType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailablePrivateEndpointType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailablePrivateEndpointType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Id": "System.String", @@ -81734,7 +81860,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "FqdnTagName": "System.String", @@ -81792,7 +81918,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -81903,7 +82029,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocols": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -82853,7 +82979,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Servers": "System.Collections.Generic.IList`1[System.String]", "EnableProxy": "System.Nullable`1[System.Boolean]", @@ -82908,7 +83034,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -82926,7 +83052,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -83001,7 +83127,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -83025,7 +83151,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -83124,7 +83250,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]", "Name": "System.String", @@ -83227,7 +83353,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule", "GenericTypeArguments": [], @@ -83353,7 +83479,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule", "GenericTypeArguments": [], @@ -83455,7 +83581,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", @@ -83830,7 +83956,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]", @@ -83956,7 +84082,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule", "GenericTypeArguments": [], @@ -84082,7 +84208,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule", "GenericTypeArguments": [], @@ -84184,7 +84310,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocols": "System.Collections.Generic.List`1[System.String]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -85153,7 +85279,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocols": "System.Collections.Generic.List`1[System.String]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -86143,7 +86269,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", @@ -86288,7 +86414,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -86359,7 +86485,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Servers": "System.Collections.Generic.IList`1[System.String]", "EnableProxy": "System.Nullable`1[System.Boolean]", @@ -86431,7 +86557,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -86449,7 +86575,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -86608,7 +86734,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -86691,7 +86817,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Servers": "System.Collections.Generic.IList`1[System.String]", "EnableProxy": "System.Nullable`1[System.Boolean]", @@ -86775,7 +86901,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -86799,7 +86925,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -86931,7 +87057,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -86949,7 +87075,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -86967,7 +87093,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -87003,7 +87129,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", @@ -87158,7 +87284,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -87182,7 +87308,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -87206,7 +87332,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -87274,7 +87400,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -87298,7 +87424,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -87322,7 +87448,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -87414,7 +87540,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -87438,7 +87564,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -87462,7 +87588,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -87530,7 +87656,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", @@ -87602,7 +87728,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -87626,7 +87752,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -87650,7 +87776,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -87725,7 +87851,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", "Name": "System.String" @@ -87835,7 +87961,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", @@ -88102,7 +88228,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", @@ -88337,7 +88463,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]", "Name": "System.String", @@ -88440,7 +88566,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection", "GenericTypeArguments": [], @@ -88476,7 +88602,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", @@ -88647,7 +88773,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection", "GenericTypeArguments": [], @@ -88811,7 +88937,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection", "GenericTypeArguments": [], @@ -88879,7 +89005,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", @@ -88999,7 +89125,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection", "GenericTypeArguments": [], @@ -89131,7 +89257,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", @@ -89215,7 +89341,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", "Name": "System.String" @@ -89286,7 +89412,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -89304,7 +89430,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -89322,7 +89448,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -89453,7 +89579,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -89477,7 +89603,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -89501,7 +89627,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -89595,7 +89721,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", @@ -89667,7 +89793,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -89691,7 +89817,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -89715,7 +89841,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -89783,7 +89909,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", "Name": "System.String" @@ -89842,7 +89968,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -89866,7 +89992,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -89890,7 +90016,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -89982,7 +90108,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -90006,7 +90132,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -90030,7 +90156,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -90098,7 +90224,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -90122,7 +90248,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -90146,7 +90272,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -90221,7 +90347,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]", "Name": "System.String", @@ -90308,7 +90434,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", "Name": "System.String" @@ -90361,7 +90487,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", @@ -90499,7 +90625,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection", "GenericTypeArguments": [], @@ -90654,7 +90780,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection", "GenericTypeArguments": [], @@ -90748,7 +90874,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", @@ -90844,7 +90970,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection", "GenericTypeArguments": [], @@ -90912,7 +91038,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", "Name": "System.String" @@ -90995,7 +91121,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection", "GenericTypeArguments": [], @@ -91111,7 +91237,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection", "GenericTypeArguments": [], @@ -91203,7 +91329,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection", "GenericTypeArguments": [], @@ -91278,7 +91404,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", @@ -91383,7 +91509,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", @@ -91449,7 +91575,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -91507,7 +91633,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -91578,7 +91704,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Servers": "System.Collections.Generic.IList`1[System.String]", "EnableProxy": "System.Nullable`1[System.Boolean]", @@ -91781,7 +91907,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -91833,7 +91959,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -91916,7 +92042,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Servers": "System.Collections.Generic.IList`1[System.String]", "EnableProxy": "System.Nullable`1[System.Boolean]", @@ -92070,7 +92196,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", @@ -92166,7 +92292,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -92218,7 +92344,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -92301,7 +92427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Servers": "System.Collections.Generic.IList`1[System.String]", "EnableProxy": "System.Nullable`1[System.Boolean]", @@ -92429,7 +92555,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -92481,7 +92607,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -92564,7 +92690,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Servers": "System.Collections.Generic.IList`1[System.String]", "EnableProxy": "System.Nullable`1[System.Boolean]", @@ -92740,7 +92866,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -92792,7 +92918,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -92875,7 +93001,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Servers": "System.Collections.Generic.IList`1[System.String]", "EnableProxy": "System.Nullable`1[System.Boolean]", @@ -93010,7 +93136,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -93240,7 +93366,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule]", @@ -93366,7 +93492,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule", "GenericTypeArguments": [], @@ -93492,7 +93618,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule", "GenericTypeArguments": [], @@ -93594,7 +93720,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocols": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -94312,7 +94438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", @@ -94592,7 +94718,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewall]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -94791,7 +94917,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule]", @@ -94917,7 +95043,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule", "GenericTypeArguments": [], @@ -95022,7 +95148,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule", "GenericTypeArguments": [], @@ -95097,7 +95223,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocols": "System.Collections.Generic.List`1[System.String]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -95692,7 +95818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]", @@ -95818,7 +95944,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule", "GenericTypeArguments": [], @@ -95944,7 +96070,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule", "GenericTypeArguments": [], @@ -96046,7 +96172,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocols": "System.Collections.Generic.List`1[System.String]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -96602,7 +96728,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", @@ -96978,7 +97104,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -97055,7 +97181,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "GenericTypeArguments": [], @@ -97073,7 +97199,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -97149,7 +97275,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection", "GenericTypeArguments": [], @@ -97167,7 +97293,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection", "GenericTypeArguments": [], @@ -97185,7 +97311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection", "GenericTypeArguments": [], @@ -97225,7 +97351,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -97296,7 +97422,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -97314,7 +97440,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -97368,7 +97494,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -97386,7 +97512,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -97461,7 +97587,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIPs": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", "publicIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]" @@ -97645,7 +97771,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection", "GenericTypeArguments": [], @@ -97669,7 +97795,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection", "GenericTypeArguments": [], @@ -97693,7 +97819,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection", "GenericTypeArguments": [], @@ -97745,7 +97871,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -97828,7 +97954,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -97852,7 +97978,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -97924,7 +98050,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -97948,7 +98074,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -98047,7 +98173,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIPs": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", "publicIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]" @@ -98296,7 +98422,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection", "GenericTypeArguments": [], @@ -98320,7 +98446,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection", "GenericTypeArguments": [], @@ -98344,7 +98470,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection", "GenericTypeArguments": [], @@ -98396,7 +98522,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -98479,7 +98605,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -98503,7 +98629,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -98575,7 +98701,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -98599,7 +98725,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -98698,7 +98824,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIPs": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", "publicIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]" @@ -98825,7 +98951,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -98908,7 +99034,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "GenericTypeArguments": [], @@ -98932,7 +99058,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -99088,7 +99214,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection", "GenericTypeArguments": [], @@ -99112,7 +99238,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection", "GenericTypeArguments": [], @@ -99136,7 +99262,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection", "GenericTypeArguments": [], @@ -99188,7 +99314,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -99271,7 +99397,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -99295,7 +99421,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -99367,7 +99493,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -99391,7 +99517,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -99490,7 +99616,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIPs": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", "publicIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]" @@ -99628,7 +99754,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Address": "System.String" }, @@ -99870,7 +99996,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -99888,7 +100014,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -99906,7 +100032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -100013,7 +100139,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -100037,7 +100163,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -100061,7 +100187,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -100136,7 +100262,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", @@ -100420,7 +100546,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", @@ -100703,7 +100829,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -100760,7 +100886,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", @@ -101049,7 +101175,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -101124,7 +101250,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -101354,7 +101480,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIPs": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", "publicIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]" @@ -101426,7 +101552,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Addresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]", "Count": "System.Int32" @@ -101542,7 +101668,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Addresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]", "Count": "System.Int32" @@ -101652,7 +101778,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Addresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]", "Count": "System.Int32" @@ -101724,7 +101850,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress", "GenericTypeArguments": [], @@ -101805,7 +101931,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress", "GenericTypeArguments": [], @@ -101880,7 +102006,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -101981,7 +102107,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -102143,7 +102269,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -102161,7 +102287,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -102217,7 +102343,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -102421,7 +102547,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -102445,7 +102571,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -102507,7 +102633,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -102577,7 +102703,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -102749,7 +102875,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -102773,7 +102899,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -102835,7 +102961,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -103028,7 +103154,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -103052,7 +103178,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -103114,7 +103240,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -103281,7 +103407,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -103305,7 +103431,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -103367,7 +103493,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -103540,7 +103666,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -103602,7 +103728,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -103620,7 +103746,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -103752,7 +103878,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -103776,7 +103902,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -103870,7 +103996,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -103894,7 +104020,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -103964,7 +104090,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -104032,7 +104158,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -104056,7 +104182,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -104124,7 +104250,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -104148,7 +104274,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -104223,7 +104349,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -104609,7 +104735,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -104752,7 +104878,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -104879,7 +105005,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -105059,7 +105185,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -105127,7 +105253,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -105329,7 +105455,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -105544,7 +105670,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -105759,7 +105885,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -105894,7 +106020,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -105981,7 +106107,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -105999,7 +106125,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -106107,7 +106233,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -106131,7 +106257,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -106201,7 +106327,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -106274,7 +106400,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -106298,7 +106424,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -106392,7 +106518,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -106416,7 +106542,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -106484,7 +106610,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -106508,7 +106634,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -106583,7 +106709,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -106693,7 +106819,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -106832,7 +106958,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -107013,7 +107139,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -107083,7 +107209,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -107228,7 +107354,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -107392,7 +107518,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -107532,7 +107658,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -107607,7 +107733,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -107709,7 +107835,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -107988,7 +108114,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -108314,7 +108440,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -108416,7 +108542,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -108531,7 +108657,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -108626,7 +108752,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -108664,7 +108790,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -108720,7 +108846,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -108879,7 +109005,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -108929,7 +109055,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -108991,7 +109117,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -109110,7 +109236,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -109220,7 +109346,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -109270,7 +109396,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -109332,7 +109458,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -109403,7 +109529,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -109482,7 +109608,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -109592,7 +109718,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -109642,7 +109768,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -109704,7 +109830,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -109775,7 +109901,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -109905,7 +110031,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -109955,7 +110081,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -110017,7 +110143,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -110112,7 +110238,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -110222,7 +110348,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -110272,7 +110398,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -110334,7 +110460,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -110480,7 +110606,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -110530,7 +110656,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -110592,7 +110718,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -110687,7 +110813,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -110737,7 +110863,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -110799,7 +110925,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -110955,7 +111081,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -111034,7 +111160,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -111052,7 +111178,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -111070,7 +111196,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -111205,7 +111331,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -111229,7 +111355,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -111253,7 +111379,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -111323,7 +111449,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -111388,7 +111514,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -111412,7 +111538,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -111436,7 +111562,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -111530,7 +111656,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -111554,7 +111680,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -111578,7 +111704,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -111646,7 +111772,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -111670,7 +111796,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -111694,7 +111820,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -111769,7 +111895,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -111891,7 +112017,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -111990,7 +112116,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -112046,7 +112172,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -112207,7 +112333,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -112269,7 +112395,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -112339,7 +112465,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -112430,7 +112556,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -112492,7 +112618,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -112612,7 +112738,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -112674,7 +112800,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -112768,7 +112894,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -112830,7 +112956,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -112905,7 +113031,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -113036,7 +113162,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -113125,7 +113251,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -113143,7 +113269,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -113275,7 +113401,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -113299,7 +113425,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -113415,7 +113541,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -113439,7 +113565,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -113509,7 +113635,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -113610,7 +113736,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -113634,7 +113760,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -113726,7 +113852,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -113750,7 +113876,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -113825,7 +113951,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -114125,7 +114251,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -114237,7 +114363,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -114461,7 +114587,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -114701,7 +114827,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnConnectionHealth", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SasUrl": "System.String" }, @@ -114794,7 +114920,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -115102,7 +115228,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -115486,7 +115612,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProfileUrl": "System.String" }, @@ -115579,7 +115705,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -115851,7 +115977,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -116172,7 +116298,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -116319,7 +116445,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -116410,7 +116536,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -116545,7 +116671,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -116619,7 +116745,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -116799,7 +116925,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -116885,7 +117011,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -116977,7 +117103,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -117187,7 +117313,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -117273,7 +117399,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -117512,7 +117638,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -117598,7 +117724,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -117666,7 +117792,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -117745,7 +117871,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -117955,7 +118081,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -118041,7 +118167,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -118109,7 +118235,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -118335,7 +118461,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -118421,7 +118547,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -118513,7 +118639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -118723,7 +118849,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -118809,7 +118935,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -119048,7 +119174,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -119134,7 +119260,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -119269,7 +119395,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -119360,7 +119486,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -119378,7 +119504,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -119486,7 +119612,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -119510,7 +119636,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -119580,7 +119706,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -119657,7 +119783,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -119681,7 +119807,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -119775,7 +119901,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -119799,7 +119925,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -119867,7 +119993,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -119891,7 +120017,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -119966,7 +120092,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -120080,7 +120206,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -120187,7 +120313,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -120322,7 +120448,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -120396,7 +120522,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -120577,7 +120703,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -120663,7 +120789,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -120783,7 +120909,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -120942,7 +121068,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -121028,7 +121154,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -121244,7 +121370,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -121330,7 +121456,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -121400,7 +121526,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -121549,7 +121675,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -121635,7 +121761,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -121705,7 +121831,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -121782,7 +121908,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -121941,7 +122067,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -122027,7 +122153,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -122097,7 +122223,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -122270,7 +122396,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -122356,7 +122482,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -122520,7 +122646,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -122606,7 +122732,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -122698,7 +122824,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -122857,7 +122983,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -122943,7 +123069,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -123131,7 +123257,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -123217,7 +123343,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -123357,7 +123483,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -123443,7 +123569,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -123518,7 +123644,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]", "Labels": "System.Collections.Generic.List`1[System.String]", @@ -123624,7 +123750,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -123904,7 +124030,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -124230,7 +124356,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -124341,7 +124467,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute", "GenericTypeArguments": [], @@ -124470,7 +124596,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute", "GenericTypeArguments": [], @@ -124545,7 +124671,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressPrefixes": "System.Collections.Generic.List`1[System.String]", "Name": "System.String", @@ -124816,7 +124942,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Destinations": "System.Collections.Generic.List`1[System.String]", "Name": "System.String", @@ -125173,7 +125299,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]", "Labels": "System.Collections.Generic.List`1[System.String]", @@ -125278,7 +125404,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -125394,7 +125520,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute", "GenericTypeArguments": [], @@ -125430,7 +125556,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -125566,7 +125692,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute", "GenericTypeArguments": [], @@ -125614,7 +125740,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -125685,7 +125811,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -125792,7 +125918,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute", "GenericTypeArguments": [], @@ -125840,7 +125966,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -125963,7 +126089,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute", "GenericTypeArguments": [], @@ -126011,7 +126137,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -126107,7 +126233,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute", "GenericTypeArguments": [], @@ -126155,7 +126281,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -126313,7 +126439,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -126389,7 +126515,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]", "Labels": "System.Collections.Generic.List`1[System.String]", @@ -126472,7 +126598,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -126490,7 +126616,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -126508,7 +126634,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -126644,7 +126770,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -126668,7 +126794,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -126692,7 +126818,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -126791,7 +126917,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -126870,7 +126996,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -126894,7 +127020,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -126918,7 +127044,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -126989,7 +127115,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]", "Labels": "System.Collections.Generic.List`1[System.String]", @@ -127057,7 +127183,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -127081,7 +127207,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -127105,7 +127231,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -127200,7 +127326,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -127224,7 +127350,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -127248,7 +127374,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -127316,7 +127442,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -127340,7 +127466,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -127364,7 +127490,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -127439,7 +127565,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]", "Labels": "System.Collections.Generic.List`1[System.String]", @@ -127566,7 +127692,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -127642,7 +127768,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]", "Labels": "System.Collections.Generic.List`1[System.String]", @@ -127725,7 +127851,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute", "GenericTypeArguments": [], @@ -127761,7 +127887,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -127897,7 +128023,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute", "GenericTypeArguments": [], @@ -127945,7 +128071,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -128044,7 +128170,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -128123,7 +128249,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute", "GenericTypeArguments": [], @@ -128171,7 +128297,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -128242,7 +128368,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]", "Labels": "System.Collections.Generic.List`1[System.String]", @@ -128310,7 +128436,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute", "GenericTypeArguments": [], @@ -128358,7 +128484,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -128453,7 +128579,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute", "GenericTypeArguments": [], @@ -128501,7 +128627,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -128569,7 +128695,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute", "GenericTypeArguments": [], @@ -128617,7 +128743,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -128692,7 +128818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressPrefixes": "System.Collections.Generic.List`1[System.String]", "Destinations": "System.Collections.Generic.List`1[System.String]", @@ -129008,7 +129134,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -129084,7 +129210,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute", "GenericTypeArguments": [], @@ -129183,7 +129309,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute", "GenericTypeArguments": [], @@ -129282,7 +129408,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -129383,7 +129509,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -129663,7 +129789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -130072,7 +130198,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -130147,7 +130273,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -130224,7 +130350,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -130242,7 +130368,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -130260,7 +130386,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -130396,7 +130522,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -130420,7 +130546,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -130444,7 +130570,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -130542,7 +130668,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -130621,7 +130747,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -130645,7 +130771,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -130669,7 +130795,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -130739,7 +130865,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -130802,7 +130928,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -130826,7 +130952,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -130850,7 +130976,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -130944,7 +131070,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -130968,7 +131094,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -130992,7 +131118,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -131060,7 +131186,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -131084,7 +131210,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -131108,7 +131234,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -131183,7 +131309,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -131485,7 +131611,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -131598,7 +131724,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -131716,7 +131842,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", "GenericTypeArguments": [], @@ -131734,7 +131860,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -131827,7 +131953,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -131983,7 +132109,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", "GenericTypeArguments": [], @@ -132007,7 +132133,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -132118,7 +132244,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -132186,7 +132312,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -132355,7 +132481,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", "GenericTypeArguments": [], @@ -132379,7 +132505,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -132490,7 +132616,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -132681,7 +132807,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", "GenericTypeArguments": [], @@ -132705,7 +132831,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -132816,7 +132942,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -132891,7 +133017,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressPrefixes": "System.Collections.Generic.List`1[System.String]", "Destinations": "System.Collections.Generic.List`1[System.String]", @@ -133123,7 +133249,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -133181,7 +133307,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute", "GenericTypeArguments": [], @@ -133238,7 +133364,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute", "GenericTypeArguments": [], @@ -133393,7 +133519,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -133466,7 +133592,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -133484,7 +133610,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -133502,7 +133628,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -133610,7 +133736,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -133634,7 +133760,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -133658,7 +133784,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -133752,7 +133878,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -133776,7 +133902,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -133800,7 +133926,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -133870,7 +133996,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -133949,7 +134075,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -133973,7 +134099,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -133997,7 +134123,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -134065,7 +134191,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -134089,7 +134215,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -134113,7 +134239,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -134188,7 +134314,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -134324,7 +134450,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -134397,7 +134523,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -134506,7 +134632,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -134600,7 +134726,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -134670,7 +134796,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -134749,7 +134875,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -134817,7 +134943,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -134892,7 +135018,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -135028,7 +135154,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -135101,7 +135227,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", "GenericTypeArguments": [], @@ -135137,7 +135263,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -135246,7 +135372,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", "GenericTypeArguments": [], @@ -135294,7 +135420,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -135388,7 +135514,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", "GenericTypeArguments": [], @@ -135436,7 +135562,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -135506,7 +135632,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -135585,7 +135711,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", "GenericTypeArguments": [], @@ -135633,7 +135759,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -135701,7 +135827,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", "GenericTypeArguments": [], @@ -135749,7 +135875,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -135824,7 +135950,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -135959,7 +136085,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -136050,7 +136176,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", "GenericTypeArguments": [], @@ -136068,7 +136194,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -136161,7 +136287,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -136293,7 +136419,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", "GenericTypeArguments": [], @@ -136317,7 +136443,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -136428,7 +136554,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -136546,7 +136672,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", "GenericTypeArguments": [], @@ -136570,7 +136696,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -136681,7 +136807,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -136751,7 +136877,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -136854,7 +136980,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", "GenericTypeArguments": [], @@ -136878,7 +137004,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -136989,7 +137115,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -137081,7 +137207,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", "GenericTypeArguments": [], @@ -137105,7 +137231,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -137216,7 +137342,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -137291,7 +137417,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -137582,7 +137708,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationsResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationsResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationsResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VpnServerConfigurationResourceIds": "System.Collections.Generic.List`1[System.String]", "VpnServerConfigurationResourceIdsText": "System.String" @@ -137676,7 +137802,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -137895,7 +138021,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -138130,7 +138256,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProfileUrl": "System.String" }, @@ -138223,7 +138349,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -138307,7 +138433,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -138516,7 +138642,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -138821,7 +138947,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -138891,7 +139017,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -139051,7 +139177,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -139242,7 +139368,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -139599,7 +139725,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWanVpnSitesConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWanVpnSitesConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWanVpnSitesConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SasUrl": "System.String" }, @@ -139693,7 +139819,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -139813,7 +139939,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", "GenericTypeArguments": [], @@ -139921,7 +140047,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", "GenericTypeArguments": [], @@ -140158,7 +140284,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -140228,7 +140354,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", "GenericTypeArguments": [], @@ -140322,7 +140448,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -140510,7 +140636,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", "GenericTypeArguments": [], @@ -140795,7 +140921,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -140917,7 +141043,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -140935,7 +141061,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -140989,7 +141115,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -141121,7 +141247,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -141145,7 +141271,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -141217,7 +141343,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -141352,7 +141478,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -141436,7 +141562,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -141454,7 +141580,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -141562,7 +141688,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -141586,7 +141712,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -141656,7 +141782,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -141726,7 +141852,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -141750,7 +141876,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -141844,7 +141970,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -141868,7 +141994,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -141936,7 +142062,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -141960,7 +142086,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -142035,7 +142161,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -142141,7 +142267,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -142301,7 +142427,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -142319,7 +142445,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -142527,7 +142653,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -142551,7 +142677,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -142621,7 +142747,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -142791,7 +142917,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -142815,7 +142941,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -143009,7 +143135,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -143033,7 +143159,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -143201,7 +143327,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -143225,7 +143351,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -143300,7 +143426,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -143413,7 +143539,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -143520,7 +143646,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -143641,7 +143767,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -143721,7 +143847,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -143739,7 +143865,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -143757,7 +143883,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -143775,7 +143901,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -143793,7 +143919,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -143811,7 +143937,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -143867,7 +143993,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -143975,7 +144101,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -144123,7 +144249,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -144215,7 +144341,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -144239,7 +144365,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -144263,7 +144389,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -144287,7 +144413,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -144311,7 +144437,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -144335,7 +144461,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -144397,7 +144523,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -144615,7 +144741,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -144707,7 +144833,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -144731,7 +144857,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -144755,7 +144881,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -144779,7 +144905,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -144803,7 +144929,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -144827,7 +144953,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -144889,7 +145015,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -144960,7 +145086,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -145031,7 +145157,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -145179,7 +145305,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -145271,7 +145397,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -145295,7 +145421,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -145319,7 +145445,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -145343,7 +145469,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -145367,7 +145493,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -145391,7 +145517,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -145453,7 +145579,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -145524,7 +145650,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -145694,7 +145820,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -145786,7 +145912,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -145810,7 +145936,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -145834,7 +145960,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -145858,7 +145984,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -145882,7 +146008,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -145906,7 +146032,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -145968,7 +146094,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -146063,7 +146189,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -146211,7 +146337,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -146303,7 +146429,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -146327,7 +146453,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -146351,7 +146477,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -146375,7 +146501,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -146399,7 +146525,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -146423,7 +146549,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -146485,7 +146611,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -146679,7 +146805,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -146771,7 +146897,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -146795,7 +146921,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -146819,7 +146945,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -146843,7 +146969,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -146867,7 +146993,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -146891,7 +147017,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -146953,7 +147079,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -147096,7 +147222,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -147188,7 +147314,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -147212,7 +147338,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -147236,7 +147362,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -147260,7 +147386,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -147284,7 +147410,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -147308,7 +147434,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -147370,7 +147496,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -147445,7 +147571,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VpnSiteLink": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "EnableBgp": "System.Boolean", @@ -147533,7 +147659,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings", "LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties", @@ -147647,7 +147773,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -147727,7 +147853,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -147745,7 +147871,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -147763,7 +147889,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -147846,7 +147972,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings", "LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties", @@ -147984,7 +148110,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -148076,7 +148202,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -148100,7 +148226,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -148124,7 +148250,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -148300,7 +148426,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -148370,7 +148496,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -148388,7 +148514,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -148523,7 +148649,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -148547,7 +148673,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -148641,7 +148767,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -148665,7 +148791,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -148735,7 +148861,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -148811,7 +148937,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -148835,7 +148961,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -148903,7 +149029,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -148927,7 +149053,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -149002,7 +149128,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -149296,7 +149422,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -149419,7 +149545,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -149528,7 +149654,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", "GenericTypeArguments": [], @@ -149564,7 +149690,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -149696,7 +149822,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", "GenericTypeArguments": [], @@ -149744,7 +149870,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -149812,7 +149938,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -149966,7 +150092,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", "GenericTypeArguments": [], @@ -150014,7 +150140,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -150181,7 +150307,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", "GenericTypeArguments": [], @@ -150229,7 +150355,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -150396,7 +150522,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", "GenericTypeArguments": [], @@ -150444,7 +150570,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -150579,7 +150705,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -150664,7 +150790,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -150682,7 +150808,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -150790,7 +150916,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -150814,7 +150940,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -150884,7 +151010,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -150955,7 +151081,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -150979,7 +151105,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -151073,7 +151199,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -151097,7 +151223,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -151165,7 +151291,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -151189,7 +151315,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -151264,7 +151390,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -151372,7 +151498,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -151455,7 +151581,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", "GenericTypeArguments": [], @@ -151491,7 +151617,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress", "GenericTypeArguments": [], @@ -151527,7 +151653,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -151636,7 +151762,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", "GenericTypeArguments": [], @@ -151684,7 +151810,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress", "GenericTypeArguments": [], @@ -151732,7 +151858,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -151802,7 +151928,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -151873,7 +151999,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", "GenericTypeArguments": [], @@ -151921,7 +152047,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress", "GenericTypeArguments": [], @@ -151969,7 +152095,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -152061,7 +152187,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", "GenericTypeArguments": [], @@ -152109,7 +152235,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress", "GenericTypeArguments": [], @@ -152157,7 +152283,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -152225,7 +152351,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", "GenericTypeArguments": [], @@ -152273,7 +152399,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress", "GenericTypeArguments": [], @@ -152321,7 +152447,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -152396,7 +152522,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -152706,7 +152832,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -152960,7 +153086,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer", "GenericTypeArguments": [], @@ -153068,7 +153194,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -153104,7 +153230,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -153291,7 +153417,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -153339,7 +153465,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -153585,7 +153711,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -153633,7 +153759,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -153749,7 +153875,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer", "GenericTypeArguments": [], @@ -153951,7 +154077,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -153999,7 +154125,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -154269,7 +154395,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -154317,7 +154443,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -154452,7 +154578,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -154553,7 +154679,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -154571,7 +154697,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -154679,7 +154805,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -154703,7 +154829,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -154773,7 +154899,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -154860,7 +154986,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -154884,7 +155010,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -154978,7 +155104,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -155002,7 +155128,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -155070,7 +155196,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -155094,7 +155220,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -155169,7 +155295,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -155292,7 +155418,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -155508,7 +155634,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer", "GenericTypeArguments": [], @@ -155616,7 +155742,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -155652,7 +155778,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -155863,7 +155989,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -155911,7 +156037,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -156078,7 +156204,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer", "GenericTypeArguments": [], @@ -156205,7 +156331,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -156253,7 +156379,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -156499,7 +156625,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -156547,7 +156673,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -156617,7 +156743,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -156807,7 +156933,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -156855,7 +156981,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -156925,7 +157051,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -157060,7 +157186,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer", "GenericTypeArguments": [], @@ -157187,7 +157313,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -157235,7 +157361,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -157305,7 +157431,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -157519,7 +157645,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -157567,7 +157693,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -157764,7 +157890,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -157812,7 +157938,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -157954,7 +158080,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer", "GenericTypeArguments": [], @@ -158081,7 +158207,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -158129,7 +158255,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -158350,7 +158476,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -158398,7 +158524,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -158521,7 +158647,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -158569,7 +158695,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -158644,7 +158770,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -158940,7 +159066,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -159101,7 +159227,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -159327,7 +159453,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -159363,7 +159489,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -159591,7 +159717,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -159998,7 +160124,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -160114,7 +160240,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -160309,7 +160435,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -160377,7 +160503,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -160738,7 +160864,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -160806,7 +160932,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -160876,7 +161002,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -161071,7 +161197,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -161454,7 +161580,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -161546,7 +161672,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -161741,7 +161867,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -161816,7 +161942,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings", "LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties", @@ -162649,7 +162775,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -162736,7 +162862,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -162754,7 +162880,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -162862,7 +162988,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -162886,7 +163012,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -162956,7 +163082,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -163029,7 +163155,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -163053,7 +163179,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -163147,7 +163273,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -163171,7 +163297,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -163239,7 +163365,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -163263,7 +163389,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -163338,7 +163464,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -163447,7 +163573,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -163570,7 +163696,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -163796,7 +163922,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -163832,7 +163958,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -164180,7 +164306,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -164228,7 +164354,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -164563,7 +164689,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -164611,7 +164737,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -164730,7 +164856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -164992,7 +165118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -165040,7 +165166,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -165351,7 +165477,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -165399,7 +165525,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -165469,7 +165595,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -165782,7 +165908,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -165830,7 +165956,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -165900,7 +166026,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -166189,7 +166315,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -166237,7 +166363,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -166307,7 +166433,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -166380,7 +166506,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -166642,7 +166768,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -166690,7 +166816,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -166760,7 +166886,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -167025,7 +167151,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -167073,7 +167199,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -167407,7 +167533,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -167455,7 +167581,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -167765,7 +167891,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -167813,7 +167939,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -167907,7 +168033,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -168169,7 +168295,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -168217,7 +168343,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -168503,7 +168629,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -168551,7 +168677,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -168811,7 +168937,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", "GenericTypeArguments": [], @@ -168859,7 +168985,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -168934,7 +169060,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualNetworks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Tag": "System.Collections.Hashtable", @@ -169072,7 +169198,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -169227,7 +169353,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -169359,7 +169485,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -169466,7 +169592,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -169541,7 +169667,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -169641,7 +169767,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -169785,7 +169911,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -169923,7 +170049,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuthorizationKey": "System.String", "AuthorizationUseStatus": "System.String", @@ -169999,7 +170125,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -170143,7 +170269,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -170281,7 +170407,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuthorizationKey": "System.String", "AuthorizationUseStatus": "System.String", @@ -170471,7 +170597,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -170571,7 +170697,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -170715,7 +170841,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -170853,7 +170979,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -171113,7 +171239,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -171287,7 +171413,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -171305,7 +171431,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -171484,7 +171610,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -171508,7 +171634,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -171583,7 +171709,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -171819,7 +171945,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -171911,7 +172037,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering", "GenericTypeArguments": [], @@ -171929,7 +172055,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization", "GenericTypeArguments": [], @@ -171985,7 +172111,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -172003,7 +172129,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -172190,7 +172316,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering", "GenericTypeArguments": [], @@ -172214,7 +172340,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization", "GenericTypeArguments": [], @@ -172288,7 +172414,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -172312,7 +172438,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -172582,7 +172708,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering", "GenericTypeArguments": [], @@ -172606,7 +172732,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization", "GenericTypeArguments": [], @@ -172680,7 +172806,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -172704,7 +172830,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -172772,7 +172898,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -173006,7 +173132,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering", "GenericTypeArguments": [], @@ -173030,7 +173156,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization", "GenericTypeArguments": [], @@ -173104,7 +173230,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -173128,7 +173254,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -173203,7 +173329,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -173303,7 +173429,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -173568,7 +173694,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -173745,7 +173871,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -174195,7 +174321,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -174597,7 +174723,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -174702,7 +174828,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -175115,7 +175241,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -175215,7 +175341,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -175434,7 +175560,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -175688,7 +175814,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -175905,7 +176031,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IPv6CircuitConnectionConfig": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnectionIPv6ConnectionConfig", "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -175988,7 +176114,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -176132,7 +176258,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -176270,7 +176396,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -176370,7 +176496,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -176535,7 +176661,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -176700,7 +176826,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -176800,7 +176926,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -177019,7 +177145,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -177273,7 +177399,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -177490,7 +177616,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", @@ -177586,7 +177712,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -177730,7 +177856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -177868,7 +177994,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", @@ -178148,7 +178274,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -179003,7 +179129,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -179434,7 +179560,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -179534,7 +179660,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -179700,7 +179826,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -179866,7 +179992,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -179966,7 +180092,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -180231,7 +180357,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -180408,7 +180534,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -180858,7 +180984,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -181260,7 +181386,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -181365,7 +181491,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -181835,7 +181961,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -181853,7 +181979,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -181871,7 +181997,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -181978,7 +182104,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -182002,7 +182128,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -182026,7 +182152,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -182101,7 +182227,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -182183,7 +182309,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -182264,7 +182390,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -182321,7 +182447,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -182408,7 +182534,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -182483,7 +182609,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Age": "System.Nullable`1[System.Int32]", "InterfaceProperty": "System.String", @@ -182600,7 +182726,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -182821,7 +182947,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -182981,7 +183107,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Weight": "System.Nullable`1[System.Int32]", "Network": "System.String", @@ -183099,7 +183225,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -183320,7 +183446,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -183480,7 +183606,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTableSummary", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTableSummary, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTableSummary, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "V": "System.Nullable`1[System.Int32]", "AsProperty": "System.Nullable`1[System.Int32]", @@ -183598,7 +183724,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -183819,7 +183945,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -183979,7 +184105,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitStats", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitStats, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitStats, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrimaryBytesIn": "System.Nullable`1[System.Int64]", "PrimaryBytesOut": "System.Nullable`1[System.Int64]", @@ -184267,7 +184393,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Age": "System.Nullable`1[System.Int32]", "InterfaceProperty": "System.String", @@ -184362,7 +184488,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -184456,7 +184582,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -184680,7 +184806,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -184836,7 +184962,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -184942,7 +185068,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -185126,7 +185252,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -185289,7 +185415,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Weight": "System.Nullable`1[System.Int32]", "Network": "System.String", @@ -185385,7 +185511,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -185479,7 +185605,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -185703,7 +185829,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -185859,7 +185985,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -185965,7 +186091,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -186149,7 +186275,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -186312,7 +186438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -186424,7 +186550,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -186518,7 +186644,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -186742,7 +186868,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -186898,7 +187024,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -187004,7 +187130,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -187188,7 +187314,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -187351,7 +187477,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -187442,7 +187568,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -187514,7 +187640,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -187782,7 +187908,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -187860,7 +187986,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -188186,7 +188312,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", @@ -188276,7 +188402,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -188411,7 +188537,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -188540,7 +188666,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -188613,7 +188739,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -188725,7 +188851,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -188782,7 +188908,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -188912,7 +189038,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -188987,7 +189113,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -189234,7 +189360,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -189307,7 +189433,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -189451,7 +189577,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering", "GenericTypeArguments": [], @@ -189469,7 +189595,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -189487,7 +189613,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -189544,7 +189670,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -189622,7 +189748,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -189646,7 +189772,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -189810,7 +189936,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering", "GenericTypeArguments": [], @@ -189834,7 +189960,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -189858,7 +189984,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -189926,7 +190052,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -189950,7 +190076,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -190025,7 +190151,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableBandwidths": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths]", "Tag": "System.Collections.Hashtable", @@ -190223,7 +190349,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -190606,7 +190732,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -190662,7 +190788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -190775,7 +190901,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -190906,7 +191032,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -191098,7 +191224,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -191173,7 +191299,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -191286,7 +191412,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -191417,7 +191543,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -191492,7 +191618,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -191625,7 +191751,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -191782,7 +191908,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MacSecConfig": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig", "RouterName": "System.String", @@ -191864,7 +191990,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -192019,7 +192145,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -192143,7 +192269,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -192291,7 +192417,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -192422,7 +192548,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -192643,7 +192769,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink", "GenericTypeArguments": [], @@ -192661,7 +192787,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -192679,7 +192805,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -192697,7 +192823,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -192935,7 +193061,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink", "GenericTypeArguments": [], @@ -192959,7 +193085,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -192983,7 +193109,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -193007,7 +193133,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -193282,7 +193408,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink", "GenericTypeArguments": [], @@ -193306,7 +193432,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -193330,7 +193456,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -193354,7 +193480,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -193579,7 +193705,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink", "GenericTypeArguments": [], @@ -193603,7 +193729,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -193627,7 +193753,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -193651,7 +193777,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -193782,7 +193908,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -193912,7 +194038,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -193930,7 +194056,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -193948,7 +194074,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -194005,7 +194131,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -194085,7 +194211,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -194109,7 +194235,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -194133,7 +194259,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -194225,7 +194351,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -194249,7 +194375,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -194273,7 +194399,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -194391,7 +194517,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -194415,7 +194541,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -194439,7 +194565,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -194507,7 +194633,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -194531,7 +194657,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -194555,7 +194681,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -194630,7 +194756,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -194707,7 +194833,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -194781,7 +194907,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -194840,7 +194966,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -194920,7 +195046,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -194995,7 +195121,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MatchVariables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable]", "MatchValues": "System.Collections.Generic.List`1[System.String]", @@ -195055,7 +195181,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable", "GenericTypeArguments": [], @@ -195203,7 +195329,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable", "GenericTypeArguments": [], @@ -195393,7 +195519,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MatchConditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition]", "Priority": "System.Int32", @@ -195507,7 +195633,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition", "GenericTypeArguments": [], @@ -195660,7 +195786,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition", "GenericTypeArguments": [], @@ -195763,7 +195889,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VariableName": "System.String", "Selector": "System.String" @@ -196009,7 +196135,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -196251,7 +196377,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MatchVariable": "System.String", "SelectorMatchOperator": "System.String", @@ -196542,7 +196668,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleId": "System.String", "State": "System.String" @@ -196774,7 +196900,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride]", "RuleGroupName": "System.String" @@ -196846,7 +196972,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride", "GenericTypeArguments": [], @@ -196927,7 +197053,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride", "GenericTypeArguments": [], @@ -197002,7 +197128,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleGroupOverrides": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride]", "RuleSetVersion": "System.String", @@ -197093,7 +197219,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride", "GenericTypeArguments": [], @@ -197198,7 +197324,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride", "GenericTypeArguments": [], @@ -197273,7 +197399,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -197327,7 +197453,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet", "GenericTypeArguments": [], @@ -197345,7 +197471,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion", "GenericTypeArguments": [], @@ -197402,7 +197528,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet", "GenericTypeArguments": [], @@ -197426,7 +197552,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion", "GenericTypeArguments": [], @@ -197501,7 +197627,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -197621,7 +197747,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule", "GenericTypeArguments": [], @@ -197639,7 +197765,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequestBodyCheck": "System.Boolean", "MaxRequestBodySizeInKb": "System.Int32", @@ -197695,7 +197821,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -197766,7 +197892,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -197784,7 +197910,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -197915,7 +198041,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule", "GenericTypeArguments": [], @@ -197939,7 +198065,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequestBodyCheck": "System.Boolean", "MaxRequestBodySizeInKb": "System.Int32", @@ -198001,7 +198127,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -198084,7 +198210,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -198108,7 +198234,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -198183,7 +198309,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequestBodyCheck": "System.Boolean", "MaxRequestBodySizeInKb": "System.Int32", @@ -198282,7 +198408,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -198429,7 +198555,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -198609,7 +198735,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -198690,7 +198816,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -198708,7 +198834,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -198726,7 +198852,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -198833,7 +198959,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -198857,7 +198983,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -198881,7 +199007,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -198949,7 +199075,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -199018,7 +199144,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -199042,7 +199168,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -199066,7 +199192,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -199158,7 +199284,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -199182,7 +199308,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -199206,7 +199332,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -199274,7 +199400,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -199298,7 +199424,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -199322,7 +199448,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -199397,7 +199523,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -199497,7 +199623,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -199578,7 +199704,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule", "GenericTypeArguments": [], @@ -199596,7 +199722,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequestBodyCheck": "System.Boolean", "MaxRequestBodySizeInKb": "System.Int32", @@ -199652,7 +199778,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -199705,7 +199831,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -199810,7 +199936,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule", "GenericTypeArguments": [], @@ -199834,7 +199960,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequestBodyCheck": "System.Boolean", "MaxRequestBodySizeInKb": "System.Int32", @@ -199896,7 +200022,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -199955,7 +200081,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -200023,7 +200149,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -200092,7 +200218,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule", "GenericTypeArguments": [], @@ -200116,7 +200242,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequestBodyCheck": "System.Boolean", "MaxRequestBodySizeInKb": "System.Int32", @@ -200178,7 +200304,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -200237,7 +200363,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -200329,7 +200455,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule", "GenericTypeArguments": [], @@ -200353,7 +200479,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequestBodyCheck": "System.Boolean", "MaxRequestBodySizeInKb": "System.Int32", @@ -200415,7 +200541,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -200474,7 +200600,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -200542,7 +200668,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule", "GenericTypeArguments": [], @@ -200566,7 +200692,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequestBodyCheck": "System.Boolean", "MaxRequestBodySizeInKb": "System.Int32", @@ -200628,7 +200754,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -200687,7 +200813,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -200762,7 +200888,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -201002,7 +201128,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -201138,7 +201264,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -201156,7 +201282,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -201311,7 +201437,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -201335,7 +201461,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -201467,7 +201593,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -201485,7 +201611,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -201503,7 +201629,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -201610,7 +201736,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -201634,7 +201760,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -201658,7 +201784,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -201733,7 +201859,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -201811,7 +201937,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -201945,7 +202071,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -202103,7 +202229,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", @@ -202177,7 +202303,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -202311,7 +202437,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -202469,7 +202595,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", @@ -202675,7 +202801,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -202753,7 +202879,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -202887,7 +203013,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -203045,7 +203171,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -203123,7 +203249,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -203293,7 +203419,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -203426,7 +203552,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -203541,7 +203667,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -203767,7 +203893,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -203888,7 +204014,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -204138,7 +204264,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -204337,7 +204463,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -204512,7 +204638,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -204594,7 +204720,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -204776,7 +204902,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -204876,7 +205002,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -205010,7 +205136,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -205168,7 +205294,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -205361,7 +205487,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -205494,7 +205620,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -205752,7 +205878,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -206248,7 +206374,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -206429,7 +206555,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -206507,7 +206633,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -206641,7 +206767,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -206799,7 +206925,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -206877,7 +207003,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -207047,7 +207173,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -207180,7 +207306,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -207295,7 +207421,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -207521,7 +207647,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -207642,7 +207768,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -207892,7 +208018,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -208091,7 +208217,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -208266,7 +208392,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -208348,7 +208474,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -208530,7 +208656,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -208966,7 +209092,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -209044,7 +209170,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -209229,7 +209355,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -209247,7 +209373,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -209283,7 +209409,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -209421,7 +209547,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -209648,7 +209774,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -209672,7 +209798,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -209764,7 +209890,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -209991,7 +210117,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -210015,7 +210141,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -210083,7 +210209,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -210188,7 +210314,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -210415,7 +210541,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -210439,7 +210565,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -210514,7 +210640,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPortRangeStart": "System.Int32", @@ -210594,7 +210720,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -210728,7 +210854,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -210886,7 +211012,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPortRangeStart": "System.Int32", @@ -211074,7 +211200,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -211092,7 +211218,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -211128,7 +211254,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -211410,7 +211536,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -211434,7 +211560,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -211670,7 +211796,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -211694,7 +211820,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -211762,7 +211888,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -212011,7 +212137,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -212035,7 +212161,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -212110,7 +212236,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -212188,7 +212314,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -212322,7 +212448,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -212480,7 +212606,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -212558,7 +212684,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -212743,7 +212869,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -212761,7 +212887,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -212797,7 +212923,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -212935,7 +213061,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -213162,7 +213288,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -213186,7 +213312,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -213278,7 +213404,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -213505,7 +213631,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -213529,7 +213655,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -213597,7 +213723,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -213702,7 +213828,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -213929,7 +214055,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -213953,7 +214079,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -214028,7 +214154,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -214106,7 +214232,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -214273,7 +214399,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -214291,7 +214417,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -214327,7 +214453,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -214465,7 +214591,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -214668,7 +214794,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -214692,7 +214818,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -214784,7 +214910,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -214987,7 +215113,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -215011,7 +215137,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -215079,7 +215205,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -215184,7 +215310,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -215387,7 +215513,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -215411,7 +215537,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -215486,7 +215612,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -215562,7 +215688,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -215696,7 +215822,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -215854,7 +215980,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -216020,7 +216146,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -216038,7 +216164,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -216074,7 +216200,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -216332,7 +216458,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -216356,7 +216482,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -216568,7 +216694,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -216592,7 +216718,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -216660,7 +216786,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -216885,7 +217011,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -216909,7 +217035,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -216984,7 +217110,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -217062,7 +217188,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -217196,7 +217322,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -217354,7 +217480,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -217432,7 +217558,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -217599,7 +217725,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -217617,7 +217743,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -217653,7 +217779,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -217791,7 +217917,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -217994,7 +218120,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -218018,7 +218144,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -218110,7 +218236,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -218313,7 +218439,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -218337,7 +218463,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -218405,7 +218531,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -218510,7 +218636,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -218713,7 +218839,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -218737,7 +218863,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -218812,7 +218938,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -218890,7 +219016,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -219075,7 +219201,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -219093,7 +219219,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -219111,7 +219237,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -219147,7 +219273,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -219264,7 +219390,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", @@ -219355,7 +219481,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", @@ -219476,7 +219602,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -219703,7 +219829,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -219727,7 +219853,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -219751,7 +219877,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -219891,7 +220017,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -220118,7 +220244,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -220142,7 +220268,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -220166,7 +220292,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -220234,7 +220360,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -220339,7 +220465,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", @@ -220418,7 +220544,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", @@ -220506,7 +220632,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -220733,7 +220859,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -220757,7 +220883,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -220781,7 +220907,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -220856,7 +220982,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -220936,7 +221062,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -221070,7 +221196,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -221228,7 +221354,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -221416,7 +221542,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -221434,7 +221560,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -221452,7 +221578,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -221488,7 +221614,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -221605,7 +221731,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", @@ -221696,7 +221822,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", @@ -221961,7 +222087,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -221985,7 +222111,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -222009,7 +222135,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -222293,7 +222419,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -222317,7 +222443,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -222341,7 +222467,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -222409,7 +222535,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -222514,7 +222640,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", @@ -222593,7 +222719,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", @@ -222825,7 +222951,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -222849,7 +222975,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -222873,7 +222999,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -222948,7 +223074,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -223026,7 +223152,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -223160,7 +223286,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -223318,7 +223444,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -223396,7 +223522,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -223581,7 +223707,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -223599,7 +223725,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -223617,7 +223743,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -223653,7 +223779,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -223770,7 +223896,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", @@ -223861,7 +223987,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", @@ -223982,7 +224108,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -224209,7 +224335,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -224233,7 +224359,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -224257,7 +224383,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -224397,7 +224523,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -224624,7 +224750,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -224648,7 +224774,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -224672,7 +224798,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -224740,7 +224866,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -224845,7 +224971,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", @@ -224924,7 +225050,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", @@ -225012,7 +225138,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -225239,7 +225365,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -225263,7 +225389,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -225287,7 +225413,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -225362,7 +225488,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -225532,7 +225658,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "GenericTypeArguments": [], @@ -225550,7 +225676,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", "GenericTypeArguments": [], @@ -225568,7 +225694,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule", "GenericTypeArguments": [], @@ -225586,7 +225712,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSProbe", "GenericTypeArguments": [], @@ -225604,7 +225730,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", "GenericTypeArguments": [], @@ -225622,7 +225748,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool", "GenericTypeArguments": [], @@ -225640,7 +225766,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule", "GenericTypeArguments": [], @@ -225658,7 +225784,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -225676,7 +225802,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -225855,7 +225981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "GenericTypeArguments": [], @@ -225879,7 +226005,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", "GenericTypeArguments": [], @@ -225903,7 +226029,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule", "GenericTypeArguments": [], @@ -225927,7 +226053,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSProbe", "GenericTypeArguments": [], @@ -225951,7 +226077,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", "GenericTypeArguments": [], @@ -225975,7 +226101,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool", "GenericTypeArguments": [], @@ -225999,7 +226125,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule", "GenericTypeArguments": [], @@ -226023,7 +226149,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -226047,7 +226173,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -226122,7 +226248,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -226200,7 +226326,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -226331,7 +226457,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -226367,7 +226493,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -226403,7 +226529,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", @@ -226515,7 +226641,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -226670,7 +226796,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -226718,7 +226844,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -226810,7 +226936,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -226965,7 +227091,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -227013,7 +227139,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -227081,7 +227207,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", @@ -227160,7 +227286,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -227315,7 +227441,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -227363,7 +227489,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -227438,7 +227564,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -227507,7 +227633,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -227641,7 +227767,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -227799,7 +227925,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -227922,7 +228048,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -227958,7 +228084,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -227994,7 +228120,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", @@ -228178,7 +228304,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -228226,7 +228352,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -228390,7 +228516,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -228438,7 +228564,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -228506,7 +228632,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", @@ -228657,7 +228783,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -228705,7 +228831,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -228780,7 +228906,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -228858,7 +228984,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -228992,7 +229118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -229150,7 +229276,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -229228,7 +229354,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -229359,7 +229485,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -229395,7 +229521,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -229431,7 +229557,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", @@ -229543,7 +229669,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -229698,7 +229824,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -229746,7 +229872,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -229838,7 +229964,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -229993,7 +230119,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -230041,7 +230167,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -230109,7 +230235,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", @@ -230188,7 +230314,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -230343,7 +230469,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -230391,7 +230517,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -230466,7 +230592,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -230544,7 +230670,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -230768,7 +230894,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -231046,7 +231172,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", @@ -231129,7 +231255,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -231263,7 +231389,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -231421,7 +231547,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", @@ -231846,7 +231972,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -231924,7 +232050,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -232058,7 +232184,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -232216,7 +232342,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -232294,7 +232420,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -232518,7 +232644,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -232853,7 +232979,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -232871,7 +232997,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -232889,7 +233015,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -232996,7 +233122,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -233020,7 +233146,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -233044,7 +233170,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -233119,7 +233245,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -233197,7 +233323,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -233274,7 +233400,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -233331,7 +233457,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -233414,7 +233540,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -233489,7 +233615,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -233924,7 +234050,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -234039,7 +234165,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -234093,7 +234219,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoute", "GenericTypeArguments": [], @@ -234111,7 +234237,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -234129,7 +234255,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -234236,7 +234362,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -234308,7 +234434,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoute", "GenericTypeArguments": [], @@ -234332,7 +234458,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -234356,7 +234482,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -234488,7 +234614,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -234506,7 +234632,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -234524,7 +234650,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -234631,7 +234757,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -234655,7 +234781,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -234679,7 +234805,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -234754,7 +234880,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -234831,7 +234957,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -235018,7 +235144,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -235247,7 +235373,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressPrefix": "System.String", "NextHopType": "System.String", @@ -235306,7 +235432,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -235439,7 +235565,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -235596,7 +235722,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressPrefix": "System.String", "NextHopType": "System.String", @@ -235913,7 +236039,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -235990,7 +236116,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -236123,7 +236249,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -236280,7 +236406,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -236357,7 +236483,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -236544,7 +236670,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -236773,7 +236899,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -236850,7 +236976,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -236926,7 +237052,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -236983,7 +237109,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -237065,7 +237191,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -237140,7 +237266,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSUsage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ResourceType": "System.String" }, @@ -237325,7 +237451,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", @@ -237772,7 +237898,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", @@ -238033,7 +238159,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -238051,7 +238177,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -238358,7 +238484,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -238382,7 +238508,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -238514,7 +238640,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTopLevelResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopLevelResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopLevelResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ResourceGroupName": "System.String", @@ -238592,7 +238718,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -238610,7 +238736,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -238628,7 +238754,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -238735,7 +238861,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -238759,7 +238885,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -238783,7 +238909,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -238851,7 +238977,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTopLevelResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopLevelResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopLevelResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ResourceGroupName": "System.String", @@ -238917,7 +239043,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -238941,7 +239067,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -238965,7 +239091,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -239057,7 +239183,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -239081,7 +239207,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -239105,7 +239231,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -239173,7 +239299,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -239197,7 +239323,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -239221,7 +239347,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -239296,7 +239422,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", @@ -239425,7 +239551,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", @@ -239531,7 +239657,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -239684,7 +239810,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -239826,7 +239952,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -239896,7 +240022,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", @@ -240020,7 +240146,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -240136,7 +240262,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -240211,7 +240337,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "IpAddresses": "System.Collections.Generic.List`1[System.String]", @@ -240271,7 +240397,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Network.Models.PSIpGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -240600,7 +240726,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "IpAddresses": "System.Collections.Generic.List`1[System.String]", @@ -240756,7 +240882,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -240774,7 +240900,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -240953,7 +241079,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -240977,7 +241103,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241113,7 +241239,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "IpAddresses": "System.Collections.Generic.List`1[System.String]", @@ -241194,7 +241320,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241212,7 +241338,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241230,7 +241356,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241337,7 +241463,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241361,7 +241487,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241385,7 +241511,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241453,7 +241579,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "IpAddresses": "System.Collections.Generic.List`1[System.String]", @@ -241522,7 +241648,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241546,7 +241672,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241570,7 +241696,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241662,7 +241788,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241686,7 +241812,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241710,7 +241836,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241778,7 +241904,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241802,7 +241928,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241826,7 +241952,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241901,7 +242027,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "IpAddresses": "System.Collections.Generic.List`1[System.String]", @@ -241965,7 +242091,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "IpAddresses": "System.Collections.Generic.List`1[System.String]", @@ -242028,7 +242154,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -242085,7 +242211,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "IpAddresses": "System.Collections.Generic.List`1[System.String]", @@ -242154,7 +242280,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -242229,7 +242355,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", @@ -242357,7 +242483,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -242631,7 +242757,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -242877,7 +243003,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaceIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -243153,7 +243279,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", @@ -243263,7 +243389,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -243358,7 +243484,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress", "GenericTypeArguments": [], @@ -243487,7 +243613,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress", "GenericTypeArguments": [], @@ -243555,7 +243681,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -243662,7 +243788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress", "GenericTypeArguments": [], @@ -243754,7 +243880,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress", "GenericTypeArguments": [], @@ -243829,7 +243955,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", @@ -243957,7 +244083,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -244034,7 +244160,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", @@ -244125,7 +244251,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -244254,7 +244380,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -244346,7 +244472,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -244453,7 +244579,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -244545,7 +244671,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -244613,7 +244739,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", @@ -244716,7 +244842,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -244832,7 +244958,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -244907,7 +245033,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", @@ -245035,7 +245161,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -245112,7 +245238,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", @@ -245185,7 +245311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress", "GenericTypeArguments": [], @@ -245221,7 +245347,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -245239,7 +245365,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -245368,7 +245494,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress", "GenericTypeArguments": [], @@ -245392,7 +245518,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -245416,7 +245542,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -245508,7 +245634,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", @@ -245591,7 +245717,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress", "GenericTypeArguments": [], @@ -245615,7 +245741,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -245639,7 +245765,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -245707,7 +245833,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", @@ -245786,7 +245912,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -245810,7 +245936,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -245878,7 +246004,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress", "GenericTypeArguments": [], @@ -245926,7 +246052,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -245950,7 +246076,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -246018,7 +246144,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -246042,7 +246168,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -246117,7 +246243,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -246363,7 +246489,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -246613,7 +246739,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -246631,7 +246757,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -246882,7 +247008,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -246906,7 +247032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -247192,7 +247318,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -247216,7 +247342,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -247502,7 +247628,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -247526,7 +247652,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -247658,7 +247784,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -247676,7 +247802,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -247694,7 +247820,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -247801,7 +247927,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -247825,7 +247951,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -247849,7 +247975,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -247924,7 +248050,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -247992,7 +248118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -248131,7 +248257,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -248188,7 +248314,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -248357,7 +248483,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -248432,7 +248558,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -248878,7 +249004,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -249076,7 +249202,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -249094,7 +249220,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -249112,7 +249238,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -249130,7 +249256,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -249357,7 +249483,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -249381,7 +249507,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -249405,7 +249531,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -249429,7 +249555,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -249561,7 +249687,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -249650,7 +249776,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -249668,7 +249794,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -249686,7 +249812,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -249791,7 +249917,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -249815,7 +249941,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -249839,7 +249965,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -249909,7 +250035,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -249984,7 +250110,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -250008,7 +250134,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -250032,7 +250158,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -250126,7 +250252,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -250150,7 +250276,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -250174,7 +250300,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -250242,7 +250368,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -250266,7 +250392,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -250290,7 +250416,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -250365,7 +250491,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -250493,7 +250619,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -250562,7 +250688,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -250580,7 +250706,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -250598,7 +250724,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -250721,7 +250847,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -250745,7 +250871,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -250769,7 +250895,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -250887,7 +251013,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -250911,7 +251037,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -250935,7 +251061,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -251029,7 +251155,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -251104,7 +251230,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -251128,7 +251254,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -251152,7 +251278,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -251244,7 +251370,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -251268,7 +251394,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "GenericTypeArguments": [], @@ -251292,7 +251418,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -251391,7 +251517,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Association": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -251625,7 +251751,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSEffectiveRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "AddressPrefix": "System.Collections.Generic.List`1[System.String]", @@ -251720,7 +251846,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -251825,7 +251951,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -251900,7 +252026,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -252864,7 +252990,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -252976,7 +253102,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -253108,7 +253234,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -253144,7 +253270,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -253277,7 +253403,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -253371,7 +253497,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", "GenericTypeArguments": [], @@ -253407,7 +253533,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", "GenericTypeArguments": [], @@ -253443,7 +253569,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -253479,7 +253605,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -253560,7 +253686,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -253710,7 +253836,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -253946,7 +254072,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -254096,7 +254222,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -254164,7 +254290,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -254285,7 +254411,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -254367,7 +254493,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", "GenericTypeArguments": [], @@ -254391,7 +254517,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", "GenericTypeArguments": [], @@ -254415,7 +254541,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -254439,7 +254565,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -254487,7 +254613,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -254637,7 +254763,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -254712,7 +254838,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation", "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", @@ -254826,7 +254952,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -254982,7 +255108,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -255132,7 +255258,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation", "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", @@ -255285,7 +255411,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -255321,7 +255447,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -255454,7 +255580,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -255548,7 +255674,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", "GenericTypeArguments": [], @@ -255584,7 +255710,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", "GenericTypeArguments": [], @@ -255620,7 +255746,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -255656,7 +255782,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -255788,7 +255914,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -256075,7 +256201,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -256143,7 +256269,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -256264,7 +256390,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -256346,7 +256472,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", "GenericTypeArguments": [], @@ -256370,7 +256496,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", "GenericTypeArguments": [], @@ -256394,7 +256520,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -256418,7 +256544,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -256517,7 +256643,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -256592,7 +256718,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -256704,7 +256830,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -256860,7 +256986,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -257010,7 +257136,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -257122,7 +257248,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -257254,7 +257380,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -257290,7 +257416,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -257423,7 +257549,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -257517,7 +257643,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", "GenericTypeArguments": [], @@ -257553,7 +257679,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", "GenericTypeArguments": [], @@ -257589,7 +257715,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -257625,7 +257751,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -257706,7 +257832,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -257856,7 +257982,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -258092,7 +258218,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -258242,7 +258368,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -258310,7 +258436,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -258431,7 +258557,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -258513,7 +258639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", "GenericTypeArguments": [], @@ -258537,7 +258663,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", "GenericTypeArguments": [], @@ -258561,7 +258687,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -258585,7 +258711,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -258633,7 +258759,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -258783,7 +258909,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -258858,7 +258984,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -259008,7 +259134,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", "GenericTypeArguments": [], @@ -259044,7 +259170,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -259177,7 +259303,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -259271,7 +259397,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -259378,7 +259504,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", "GenericTypeArguments": [], @@ -259414,7 +259540,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", "GenericTypeArguments": [], @@ -259450,7 +259576,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -259486,7 +259612,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -259576,7 +259702,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -259594,7 +259720,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -259630,7 +259756,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -259648,7 +259774,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -259827,7 +259953,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -259851,7 +259977,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -259899,7 +260025,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -259923,7 +260049,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -259991,7 +260117,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", "GenericTypeArguments": [], @@ -260039,7 +260165,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -260256,7 +260382,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -260280,7 +260406,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -260328,7 +260454,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -260352,7 +260478,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -260420,7 +260546,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", "GenericTypeArguments": [], @@ -260566,7 +260692,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -260590,7 +260716,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -260638,7 +260764,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -260662,7 +260788,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -261068,7 +261194,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -261092,7 +261218,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -261140,7 +261266,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -261164,7 +261290,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -261232,7 +261358,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -261353,7 +261479,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -261435,7 +261561,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -261530,7 +261656,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", "GenericTypeArguments": [], @@ -261554,7 +261680,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", "GenericTypeArguments": [], @@ -261578,7 +261704,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "GenericTypeArguments": [], @@ -261602,7 +261728,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -261796,7 +261922,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -261820,7 +261946,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -261868,7 +261994,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -261892,7 +262018,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -262024,7 +262150,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -262042,7 +262168,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -262060,7 +262186,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -262167,7 +262293,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -262191,7 +262317,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -262215,7 +262341,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -262290,7 +262416,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -262384,7 +262510,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -262477,7 +262603,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -262534,7 +262660,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -262633,7 +262759,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -262708,7 +262834,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -262802,7 +262928,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -262931,7 +263057,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -263037,7 +263163,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -263228,7 +263354,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -263395,7 +263521,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -263468,7 +263594,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -263642,7 +263768,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", "ResourceGroupName": "System.String", @@ -264047,7 +264173,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -264213,7 +264339,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", "ResourceGroupName": "System.String", @@ -264271,7 +264397,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -264289,7 +264415,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -264418,7 +264544,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -264442,7 +264568,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -264534,7 +264660,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -264558,7 +264684,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -264626,7 +264752,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", "ResourceGroupName": "System.String", @@ -264690,7 +264816,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -264714,7 +264840,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -264782,7 +264908,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -264806,7 +264932,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -264881,7 +265007,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -264975,7 +265101,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", "ResourceGroupName": "System.String", @@ -265033,7 +265159,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -265051,7 +265177,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -265108,7 +265234,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", "ResourceGroupName": "System.String", @@ -265172,7 +265298,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -265196,7 +265322,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -265275,7 +265401,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]", @@ -265355,7 +265481,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile", "GenericTypeArguments": [], @@ -265438,7 +265564,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile", "GenericTypeArguments": [], @@ -265513,7 +265639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", @@ -266115,7 +266241,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]", @@ -266193,7 +266319,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -266389,7 +266515,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -266602,7 +266728,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -266774,7 +266900,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", @@ -266916,7 +267042,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration", "GenericTypeArguments": [], @@ -266934,7 +267060,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -266952,7 +267078,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -267109,7 +267235,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration", "GenericTypeArguments": [], @@ -267133,7 +267259,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -267157,7 +267283,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -267307,7 +267433,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", @@ -267372,7 +267498,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -267390,7 +267516,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -267408,7 +267534,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -267515,7 +267641,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -267539,7 +267665,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -267563,7 +267689,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -267655,7 +267781,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -267679,7 +267805,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -267703,7 +267829,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -267771,7 +267897,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", @@ -267842,7 +267968,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -267866,7 +267992,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -267890,7 +268016,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -267958,7 +268084,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -267982,7 +268108,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -268006,7 +268132,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -268081,7 +268207,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", @@ -268147,7 +268273,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", @@ -268212,7 +268338,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -268269,7 +268395,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", @@ -268340,7 +268466,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -268415,7 +268541,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -268863,7 +268989,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -268971,7 +269097,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -269175,7 +269301,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -269193,7 +269319,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -269370,7 +269496,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -269738,7 +269864,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -269762,7 +269888,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -269810,7 +269936,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -270250,7 +270376,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -270625,7 +270751,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SourcePortRange": "System.Collections.Generic.IList`1[System.String]", "DestinationPortRange": "System.Collections.Generic.IList`1[System.String]", @@ -270712,7 +270838,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -270801,7 +270927,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -270882,7 +271008,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -270977,7 +271103,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -271052,7 +271178,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SourcePortRange": "System.Collections.Generic.IList`1[System.String]", "DestinationPortRange": "System.Collections.Generic.IList`1[System.String]", @@ -271254,7 +271380,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -271272,7 +271398,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -271722,7 +271848,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -271746,7 +271872,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -272419,7 +272545,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -272527,7 +272653,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -272679,7 +272805,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -272825,7 +272951,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -272933,7 +273059,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -273137,7 +273263,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -273155,7 +273281,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -273332,7 +273458,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -273700,7 +273826,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -273724,7 +273850,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", "GenericTypeArguments": [], @@ -273772,7 +273898,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -274212,7 +274338,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -274587,7 +274713,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -274733,7 +274859,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule", "GenericTypeArguments": [], @@ -274769,7 +274895,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -274787,7 +274913,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -274918,7 +275044,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule", "GenericTypeArguments": [], @@ -274966,7 +275092,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -274990,7 +275116,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -275122,7 +275248,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -275140,7 +275266,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -275158,7 +275284,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -275265,7 +275391,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -275289,7 +275415,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -275313,7 +275439,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -275388,7 +275514,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -275478,7 +275604,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -275567,7 +275693,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -275624,7 +275750,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -275719,7 +275845,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -275794,7 +275920,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -276173,7 +276299,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -276336,7 +276462,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Vendor": "System.String", "BundledScaleUnit": "System.String", @@ -276408,7 +276534,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -276535,7 +276661,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -276553,7 +276679,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -276708,7 +276834,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Vendor": "System.String", "BundledScaleUnit": "System.String", @@ -276792,7 +276918,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -276949,7 +277075,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -276973,7 +277099,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -277113,7 +277239,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Vendor": "System.String", "BundledScaleUnit": "System.String", @@ -277197,7 +277323,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -277354,7 +277480,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -277378,7 +277504,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -277494,7 +277620,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Vendor": "System.String", "BundledScaleUnit": "System.String", @@ -277578,7 +277704,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -277735,7 +277861,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -277759,7 +277885,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -277909,7 +278035,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -277979,7 +278105,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -277997,7 +278123,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -278015,7 +278141,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -278122,7 +278248,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -278146,7 +278272,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -278170,7 +278296,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -278262,7 +278388,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -278286,7 +278412,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -278310,7 +278436,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -278378,7 +278504,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -278454,7 +278580,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -278478,7 +278604,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -278502,7 +278628,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -278570,7 +278696,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -278594,7 +278720,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -278618,7 +278744,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -278693,7 +278819,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", "AddressPrefix": "System.String", @@ -279101,7 +279227,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", "AddressPrefix": "System.String", @@ -279233,7 +279359,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies" }, @@ -279321,7 +279447,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -279339,7 +279465,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -279470,7 +279596,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies" }, @@ -279576,7 +279702,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -279600,7 +279726,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -279716,7 +279842,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies" }, @@ -279822,7 +279948,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -279846,7 +279972,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -279938,7 +280064,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies" }, @@ -280044,7 +280170,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -280068,7 +280194,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -280143,7 +280269,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies" }, @@ -280196,7 +280322,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -280214,7 +280340,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -280232,7 +280358,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -280289,7 +280415,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -280313,7 +280439,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -280337,7 +280463,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -280505,7 +280631,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", "AddressPrefix": "System.String", @@ -280562,7 +280688,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -280580,7 +280706,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -280598,7 +280724,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -280729,7 +280855,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -280753,7 +280879,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -280777,7 +280903,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -280869,7 +280995,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -280893,7 +281019,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -280917,7 +281043,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -280985,7 +281111,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", "AddressPrefix": "System.String", @@ -281048,7 +281174,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -281072,7 +281198,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -281096,7 +281222,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -281164,7 +281290,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -281188,7 +281314,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -281212,7 +281338,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -281287,7 +281413,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", "AddressPrefix": "System.String", @@ -281419,7 +281545,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies" }, @@ -281489,7 +281615,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -281507,7 +281633,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -281662,7 +281788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies" }, @@ -281744,7 +281870,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -281768,7 +281894,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -281884,7 +282010,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies" }, @@ -281966,7 +282092,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -281990,7 +282116,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -282065,7 +282191,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Vendor": "System.String", "BundledScaleUnit": "System.String", @@ -282340,7 +282466,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AvailableScaleUnits": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances]", "AvailableVersions": "System.Collections.Generic.IList`1[System.String]", @@ -282574,7 +282700,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -282683,7 +282809,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Vendor": "System.String", "BundledScaleUnit": "System.String", @@ -282773,7 +282899,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -282791,7 +282917,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -282898,7 +283024,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Vendor": "System.String", "BundledScaleUnit": "System.String", @@ -283006,7 +283132,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -283030,7 +283156,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -283105,7 +283231,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Destination": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination", "Source": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource", @@ -283170,7 +283296,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", @@ -283237,7 +283363,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -283429,7 +283555,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -283897,7 +284023,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorQueryResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorQueryResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorQueryResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "States": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot]", "StatesText": "System.String" @@ -283951,7 +284077,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -284084,7 +284210,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -284165,7 +284291,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -284222,7 +284348,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -284315,7 +284441,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -284457,7 +284583,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -284575,7 +284701,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -284667,7 +284793,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -284735,7 +284861,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -284802,7 +284928,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -284870,7 +284996,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -284945,7 +285071,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Destination": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination", "Source": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource", @@ -285010,7 +285136,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", @@ -285077,7 +285203,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -285322,7 +285448,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -285340,7 +285466,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -285376,7 +285502,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", @@ -285437,7 +285563,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -285473,7 +285599,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -285491,7 +285617,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -285548,7 +285674,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -285787,7 +285913,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -285835,7 +285961,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -285859,7 +285985,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -285927,7 +286053,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -286020,7 +286146,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -286044,7 +286170,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -286116,7 +286242,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -286140,7 +286266,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -286428,7 +286554,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -286476,7 +286602,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -286500,7 +286626,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -286642,7 +286768,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -286666,7 +286792,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -286738,7 +286864,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -286762,7 +286888,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -287026,7 +287152,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -287074,7 +287200,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -287098,7 +287224,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -287216,7 +287342,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -287240,7 +287366,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -287312,7 +287438,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -287336,7 +287462,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -287404,7 +287530,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", @@ -287471,7 +287597,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -287495,7 +287621,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -287563,7 +287689,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -287587,7 +287713,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -287662,7 +287788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "System.String", "Address": "System.String" @@ -287760,6 +287886,24 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "Address", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true } ], "ParameterSets": [ @@ -287828,6 +287972,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Address", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] } @@ -287848,7 +288016,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Filter": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilter", "Name": "System.String", @@ -287977,7 +288145,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem", "GenericTypeArguments": [], @@ -288150,7 +288318,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem", "GenericTypeArguments": [], @@ -288341,7 +288509,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", @@ -288403,7 +288571,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -288538,7 +288706,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -288556,7 +288724,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -288649,7 +288817,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -288742,7 +288910,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -288766,7 +288934,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -288956,7 +289124,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -288980,7 +289148,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -289146,7 +289314,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -289170,7 +289338,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -289312,7 +289480,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -289336,7 +289504,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -289459,7 +289627,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "WorkspaceSettings": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings", "Type": "System.String", @@ -289688,7 +289856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProtocolConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration", "SuccessThreshold": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold", @@ -289785,7 +289953,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -289982,7 +290150,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -290165,7 +290333,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sources": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", "Destinations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", @@ -290243,7 +290411,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -290263,7 +290431,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -290283,7 +290451,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -290303,7 +290471,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -290384,7 +290552,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -290410,7 +290578,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -290436,7 +290604,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -290462,7 +290630,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -290556,7 +290724,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -290689,7 +290857,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -290770,7 +290938,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -290788,7 +290956,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -290845,7 +291013,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -290938,7 +291106,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -290962,7 +291130,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -291104,7 +291272,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -291128,7 +291296,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -291246,7 +291414,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -291270,7 +291438,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -291362,7 +291530,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -291386,7 +291554,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -291454,7 +291622,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -291521,7 +291689,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -291545,7 +291713,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -291613,7 +291781,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -291637,7 +291805,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -291712,7 +291880,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Destination": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination", "Source": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource", @@ -291777,7 +291945,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", @@ -291844,7 +292012,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -291977,7 +292145,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -292168,7 +292336,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -292186,7 +292354,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -292222,7 +292390,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -292258,7 +292426,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -292315,7 +292483,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -292554,7 +292722,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -292602,7 +292770,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -292670,7 +292838,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -292763,7 +292931,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -292787,7 +292955,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -292859,7 +293027,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -293147,7 +293315,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -293195,7 +293363,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -293337,7 +293505,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -293361,7 +293529,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -293433,7 +293601,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -293697,7 +293865,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -293745,7 +293913,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -293863,7 +294031,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -293887,7 +294055,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -293959,7 +294127,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -294197,7 +294365,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -294245,7 +294413,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -294337,7 +294505,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", "GenericTypeArguments": [], @@ -294361,7 +294529,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", "GenericTypeArguments": [], @@ -294433,7 +294601,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -294501,7 +294669,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -294568,7 +294736,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -294636,7 +294804,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -294730,7 +294898,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -294863,7 +295031,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -294944,7 +295112,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -294962,7 +295130,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -295019,7 +295187,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -295112,7 +295280,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -295136,7 +295304,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -295278,7 +295446,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -295302,7 +295470,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -295420,7 +295588,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -295444,7 +295612,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -295536,7 +295704,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -295560,7 +295728,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -295628,7 +295796,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -295695,7 +295863,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -295719,7 +295887,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -295787,7 +295955,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -295811,7 +295979,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -295905,7 +296073,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -296038,7 +296206,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -296119,7 +296287,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -296137,7 +296305,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -296194,7 +296362,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -296287,7 +296455,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -296311,7 +296479,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -296453,7 +296621,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -296477,7 +296645,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -296595,7 +296763,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -296619,7 +296787,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -296711,7 +296879,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -296735,7 +296903,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -296803,7 +296971,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -296870,7 +297038,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -296894,7 +297062,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -296962,7 +297130,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -296986,7 +297154,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -297061,7 +297229,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters", @@ -297133,7 +297301,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -297325,7 +297493,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -297793,7 +297961,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters", @@ -297865,7 +298033,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -298130,7 +298298,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -298204,7 +298372,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -298261,7 +298429,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -298550,7 +298718,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -298618,7 +298786,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -298685,7 +298853,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -298981,7 +299149,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -299319,7 +299487,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -299435,7 +299603,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -299731,7 +299899,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -300045,7 +300213,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -300137,7 +300305,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -300433,7 +300601,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -300723,7 +300891,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -300817,7 +300985,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -300950,7 +301118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters", @@ -301041,7 +301209,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -301059,7 +301227,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -301116,7 +301284,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -301209,7 +301377,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -301233,7 +301401,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -301375,7 +301543,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -301399,7 +301567,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -301517,7 +301685,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -301541,7 +301709,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -301633,7 +301801,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -301657,7 +301825,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -301725,7 +301893,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters", @@ -301802,7 +301970,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -301826,7 +301994,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -301894,7 +302062,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -301918,7 +302086,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -301993,7 +302161,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters", @@ -302065,7 +302233,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -302198,7 +302366,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters", @@ -302421,7 +302589,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -302495,7 +302663,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -302552,7 +302720,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -302843,7 +303011,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -302911,7 +303079,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -303178,7 +303346,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -303276,7 +303444,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -303616,7 +303784,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -303932,7 +304100,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -304030,7 +304198,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -304346,7 +304514,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -304638,7 +304806,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -304736,7 +304904,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -305026,7 +305194,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -305292,7 +305460,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -305390,7 +305558,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -305458,7 +305626,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters", @@ -305535,7 +305703,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -305603,7 +305771,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -305678,7 +305846,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -306048,7 +306216,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLog", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLog, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLog, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters", @@ -306109,7 +306277,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -306244,7 +306412,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -306301,7 +306469,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -306392,7 +306560,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -306534,7 +306702,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -306650,7 +306818,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -306742,7 +306910,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -306817,7 +306985,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNextHopResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNextHopResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNextHopResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NextHopType": "System.String", "NextHopIpAddress": "System.String", @@ -306872,7 +307040,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -307061,7 +307229,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -307118,7 +307286,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -307281,7 +307449,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -307495,7 +307663,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -307683,7 +307851,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -307847,7 +308015,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -307922,7 +308090,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupViewResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupViewResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupViewResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView]", "NetworkInterfacesText": "System.String" @@ -307976,7 +308144,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -308111,7 +308279,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -308168,7 +308336,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -308259,7 +308427,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -308401,7 +308569,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -308517,7 +308685,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -308609,7 +308777,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -308684,7 +308852,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTopology", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopology, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopology, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Resources": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyResource]", "CreatedDateTime": "System.Nullable`1[System.DateTime]", @@ -308741,7 +308909,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -308915,7 +309083,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -309335,7 +309503,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails]", "Tag": "System.Collections.Hashtable", @@ -309406,7 +309574,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -309580,7 +309748,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -310000,7 +310168,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult]", "ResultsText": "System.String" @@ -310054,7 +310222,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -310225,7 +310393,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -310245,7 +310413,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -310302,7 +310470,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -310417,7 +310585,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -310443,7 +310611,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -310609,7 +310777,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -310635,7 +310803,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -310775,7 +310943,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -310801,7 +310969,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -310941,7 +311109,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -310967,7 +311135,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -311083,7 +311251,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -311109,7 +311277,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -311184,7 +311352,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Direction": "System.String", "Protocol": "System.String", @@ -311541,7 +311709,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -311865,7 +312033,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSGetPacketCaptureResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGetPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGetPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageLocation": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation", "Filters": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter]", @@ -311949,7 +312117,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -312084,7 +312252,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -312141,7 +312309,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -312232,7 +312400,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -312374,7 +312542,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -312490,7 +312658,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -312582,7 +312750,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -312657,7 +312825,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageLocation": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation", "Filters": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter]", @@ -312731,7 +312899,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -312998,7 +313166,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter", "GenericTypeArguments": [], @@ -313016,7 +313184,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -313073,7 +313241,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -313338,7 +313506,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter", "GenericTypeArguments": [], @@ -313362,7 +313530,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -313678,7 +313846,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter", "GenericTypeArguments": [], @@ -313702,7 +313870,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -313992,7 +314160,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter", "GenericTypeArguments": [], @@ -314016,7 +314184,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -314282,7 +314450,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter", "GenericTypeArguments": [], @@ -314306,7 +314474,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -314381,7 +314549,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocol": "System.String", "RemoteIPAddress": "System.String", @@ -314757,7 +314925,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -314892,7 +315060,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -314910,7 +315078,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -314967,7 +315135,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -315058,7 +315226,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -315082,7 +315250,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -315224,7 +315392,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -315248,7 +315416,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -315364,7 +315532,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -315388,7 +315556,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -315480,7 +315648,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -315504,7 +315672,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -315598,7 +315766,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -315733,7 +315901,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -315751,7 +315919,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -315808,7 +315976,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -315899,7 +316067,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -315923,7 +316091,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -316065,7 +316233,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -316089,7 +316257,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -316205,7 +316373,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -316229,7 +316397,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -316321,7 +316489,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -316345,7 +316513,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -316439,7 +316607,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -316556,7 +316724,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -316574,7 +316742,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -316631,7 +316799,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -316698,7 +316866,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -316722,7 +316890,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -316840,7 +317008,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -316864,7 +317032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -316956,7 +317124,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -316980,7 +317148,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -317048,7 +317216,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -317072,7 +317240,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -317147,7 +317315,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLog", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLog, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLog, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters", @@ -317208,7 +317376,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -317453,7 +317621,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -317473,7 +317641,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -317624,7 +317792,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -317693,7 +317861,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -317939,7 +318107,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -318007,7 +318175,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -318076,7 +318244,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -318366,7 +318534,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -318434,7 +318602,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -318671,7 +318839,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -318791,7 +318959,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -319037,7 +319205,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -319157,7 +319325,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -319447,7 +319615,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -319735,7 +319903,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -319829,7 +319997,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -320075,7 +320243,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -320169,7 +320337,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -320459,7 +320627,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -320721,7 +320889,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -320959,7 +321127,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -321034,7 +321202,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails]", "Tag": "System.Collections.Hashtable", @@ -321105,7 +321273,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -321315,7 +321483,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -321927,7 +322095,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectivityInformation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Hops": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]", "AvgLatencyInMs": "System.Nullable`1[System.Int32]", @@ -321987,7 +322155,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -322194,7 +322362,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Header": "System.Collections.IDictionary", "ValidStatusCode": "System.Int32[]", @@ -322249,7 +322417,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -322306,7 +322474,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -322493,7 +322661,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Header": "System.Collections.IDictionary", "ValidStatusCode": "System.Int32[]", @@ -322554,7 +322722,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -322792,7 +322960,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Header": "System.Collections.IDictionary", "ValidStatusCode": "System.Int32[]", @@ -322853,7 +323021,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -323065,7 +323233,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Header": "System.Collections.IDictionary", "ValidStatusCode": "System.Int32[]", @@ -323126,7 +323294,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -323314,7 +323482,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Header": "System.Collections.IDictionary", "ValidStatusCode": "System.Int32[]", @@ -323375,7 +323543,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -323450,7 +323618,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIPFlowVerifyResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPFlowVerifyResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPFlowVerifyResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Access": "System.String", "RuleName": "System.String" @@ -323504,7 +323672,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -323771,7 +323939,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -323828,7 +323996,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -324093,7 +324261,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -324409,7 +324577,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -324699,7 +324867,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -324965,7 +325133,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -325040,7 +325208,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", @@ -325487,7 +325655,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", @@ -325630,7 +325798,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -325745,7 +325913,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection", "GenericTypeArguments": [], @@ -325763,7 +325931,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -325799,7 +325967,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -325817,7 +325985,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -325948,7 +326116,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -326069,7 +326237,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection", "GenericTypeArguments": [], @@ -326093,7 +326261,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -326141,7 +326309,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -326165,7 +326333,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -326240,7 +326408,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateDnsZoneConfigs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]", "ProvisioningState": "System.String", @@ -326654,7 +326822,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecordSets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet]", "Name": "System.String", @@ -326885,7 +327053,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateDnsZoneConfigs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]", "ProvisioningState": "System.String", @@ -326999,7 +327167,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -327019,7 +327187,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -327037,7 +327205,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -327168,7 +327336,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -327194,7 +327362,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -327218,7 +327386,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -327368,7 +327536,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -327386,7 +327554,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -327404,7 +327572,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -327535,7 +327703,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -327559,7 +327727,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -327583,7 +327751,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -327651,7 +327819,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -327675,7 +327843,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -327699,7 +327867,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -327774,7 +327942,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateDnsZoneConfigs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]", "ProvisioningState": "System.String", @@ -327888,7 +328056,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -327908,7 +328076,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -328039,7 +328207,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -328065,7 +328233,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -328140,7 +328308,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", "GroupIds": "System.Collections.Generic.List`1[System.String]", @@ -328220,7 +328388,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", "AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", @@ -328505,7 +328673,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", "AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", @@ -328907,7 +329075,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -328925,7 +329093,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -328943,7 +329111,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -329050,7 +329218,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -329074,7 +329242,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -329098,7 +329266,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -329173,7 +329341,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", @@ -329260,7 +329428,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", @@ -329346,7 +329514,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -329403,7 +329571,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", @@ -329495,7 +329663,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -329570,7 +329738,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAutoApprovedPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAutoApprovedPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAutoApprovedPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateLinkService": "System.String" }, @@ -329797,7 +329965,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", "AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", @@ -330232,7 +330400,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", "AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", @@ -330365,7 +330533,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "GenericTypeArguments": [], @@ -330383,7 +330551,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration", "GenericTypeArguments": [], @@ -330437,7 +330605,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -330473,7 +330641,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -330491,7 +330659,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -330622,7 +330790,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "GenericTypeArguments": [], @@ -330646,7 +330814,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration", "GenericTypeArguments": [], @@ -330718,7 +330886,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -330766,7 +330934,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -330790,7 +330958,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -330865,7 +331033,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", @@ -331409,7 +331577,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", @@ -331953,7 +332121,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", @@ -332664,7 +332832,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -332682,7 +332850,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -332700,7 +332868,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -332951,7 +333119,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -332975,7 +333143,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -332999,7 +333167,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -333091,7 +333259,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -333115,7 +333283,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -333139,7 +333307,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -333255,7 +333423,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -333279,7 +333447,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -333303,7 +333471,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -333378,7 +333546,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", @@ -334012,7 +334180,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequiredMembers": "System.Collections.Generic.List`1[System.String]", "RequiredZoneNames": "System.Collections.Generic.List`1[System.String]", @@ -334248,7 +334416,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", @@ -334369,7 +334537,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -334445,7 +334613,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -334560,7 +334728,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -334692,7 +334860,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -334774,7 +334942,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -334895,7 +335063,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -335262,7 +335430,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -335280,7 +335448,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -335298,7 +335466,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -335405,7 +335573,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -335429,7 +335597,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -335453,7 +335621,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -335528,7 +335696,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", "AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", @@ -335605,7 +335773,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", "AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", @@ -335681,7 +335849,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -335738,7 +335906,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", "AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", @@ -335820,7 +335988,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -335895,7 +336063,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBgpServiceCommunity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpServiceCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpServiceCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpCommunities": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity]", "Name": "System.String", @@ -336043,7 +336211,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BandwidthsOffered": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered]", "PeeringLocations": "System.Collections.Generic.List`1[System.String]", @@ -336390,7 +336558,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -337301,7 +337469,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -337515,7 +337683,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag", "GenericTypeArguments": [], @@ -337533,7 +337701,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", @@ -337676,7 +337844,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -337694,7 +337862,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -337930,7 +338098,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag", "GenericTypeArguments": [], @@ -337954,7 +338122,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", @@ -338127,7 +338295,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -338151,7 +338319,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -338226,7 +338394,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpTagType": "System.String", "Tag": "System.String" @@ -338511,7 +338679,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -338529,7 +338697,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -338547,7 +338715,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -338654,7 +338822,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -338678,7 +338846,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -338702,7 +338870,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -338777,7 +338945,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -338854,7 +339022,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -338930,7 +339098,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -338987,7 +339155,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -339069,7 +339237,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -339144,7 +339312,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", @@ -339524,7 +339692,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", @@ -339711,7 +339879,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag", "GenericTypeArguments": [], @@ -339765,7 +339933,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -339783,7 +339951,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -339991,7 +340159,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag", "GenericTypeArguments": [], @@ -340063,7 +340231,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -340087,7 +340255,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -340237,7 +340405,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", @@ -340308,7 +340476,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -340326,7 +340494,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -340344,7 +340512,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -340451,7 +340619,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -340475,7 +340643,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -340499,7 +340667,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -340591,7 +340759,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -340615,7 +340783,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -340639,7 +340807,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -340707,7 +340875,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", @@ -340784,7 +340952,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -340808,7 +340976,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -340832,7 +341000,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -340900,7 +341068,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -340924,7 +341092,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -340948,7 +341116,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -341023,7 +341191,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", @@ -341095,7 +341263,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", @@ -341166,7 +341334,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -341223,7 +341391,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", @@ -341300,7 +341468,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -341375,7 +341543,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -341809,7 +341977,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -341941,7 +342109,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule", "GenericTypeArguments": [], @@ -341977,7 +342145,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -341995,7 +342163,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -342126,7 +342294,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule", "GenericTypeArguments": [], @@ -342174,7 +342342,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -342198,7 +342366,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -342330,7 +342498,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -342348,7 +342516,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -342455,7 +342623,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -342479,7 +342647,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -342554,7 +342722,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -342630,7 +342798,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -342705,7 +342873,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -342839,7 +343007,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -342920,7 +343088,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -343096,7 +343264,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Communities": "System.Collections.Generic.List`1[System.String]", "Access": "System.String", @@ -343172,7 +343340,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -343310,7 +343478,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -343442,7 +343610,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Communities": "System.Collections.Generic.List`1[System.String]", "Access": "System.String", @@ -343500,7 +343668,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -343634,7 +343802,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -343810,7 +343978,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Communities": "System.Collections.Generic.List`1[System.String]", "Access": "System.String", @@ -343886,7 +344054,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -343961,7 +344129,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -344042,7 +344210,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -344123,7 +344291,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -344198,7 +344366,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -344274,7 +344442,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -344349,7 +344517,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -344483,7 +344651,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -344564,7 +344732,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -344740,7 +344908,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -344816,7 +344984,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -344891,7 +345059,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -344909,7 +345077,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -344966,7 +345134,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -345047,7 +345215,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -345071,7 +345239,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -345146,7 +345314,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", "Tag": "System.Collections.Hashtable", @@ -345519,7 +345687,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", "Tag": "System.Collections.Hashtable", @@ -345662,7 +345830,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -345789,7 +345957,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -345807,7 +345975,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -345966,7 +346134,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -346117,7 +346285,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -346141,7 +346309,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -346273,7 +346441,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", "Tag": "System.Collections.Hashtable", @@ -346355,7 +346523,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -346373,7 +346541,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -346391,7 +346559,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -346498,7 +346666,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -346522,7 +346690,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -346546,7 +346714,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -346614,7 +346782,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", "Tag": "System.Collections.Hashtable", @@ -346684,7 +346852,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -346708,7 +346876,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -346732,7 +346900,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -346824,7 +346992,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -346848,7 +347016,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -346872,7 +347040,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -346940,7 +347108,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -346964,7 +347132,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -346988,7 +347156,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -347063,7 +347231,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", "Tag": "System.Collections.Hashtable", @@ -347128,7 +347296,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", "Tag": "System.Collections.Hashtable", @@ -347192,7 +347360,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -347249,7 +347417,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", "Tag": "System.Collections.Hashtable", @@ -347319,7 +347487,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -347394,7 +347562,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -347774,7 +347942,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -347868,7 +348036,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition", "GenericTypeArguments": [], @@ -347922,7 +348090,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -348003,7 +348171,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition", "GenericTypeArguments": [], @@ -348075,7 +348243,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -348223,7 +348391,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -348298,7 +348466,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -348316,7 +348484,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -348421,7 +348589,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -348445,7 +348613,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -348537,7 +348705,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -348561,7 +348729,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -348629,7 +348797,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -348710,7 +348878,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -348734,7 +348902,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -348802,7 +348970,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -348826,7 +348994,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -348901,7 +349069,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -348995,7 +349163,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -349187,7 +349355,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -349395,7 +349563,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "serviceResources": "System.Collections.Generic.List`1[System.String]", "Description": "System.String", @@ -349472,7 +349640,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -349610,7 +349778,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -349742,7 +349910,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "serviceResources": "System.Collections.Generic.List`1[System.String]", "Description": "System.String", @@ -350063,7 +350231,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -350175,7 +350343,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "serviceResources": "System.Collections.Generic.List`1[System.String]", "Description": "System.String", @@ -350233,7 +350401,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -350371,7 +350539,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -350520,7 +350688,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -350645,7 +350813,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "serviceResources": "System.Collections.Generic.List`1[System.String]", "Description": "System.String", @@ -350709,7 +350877,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -350834,7 +351002,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -350966,7 +351134,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -351060,7 +351228,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -351252,7 +351420,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -351460,7 +351628,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -351536,7 +351704,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -351650,7 +351818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -352302,7 +352470,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -352764,7 +352932,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -353340,7 +353508,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalAddressRanges": "System.String[]", "RemoteAddressRanges": "System.String[]" @@ -353572,7 +353740,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -353733,7 +353901,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -353812,7 +353980,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -353891,7 +354059,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -354053,7 +354221,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", @@ -354148,7 +354316,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -354184,7 +354352,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -354220,7 +354388,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -354238,7 +354406,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy", "GenericTypeArguments": [], @@ -354277,7 +354445,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -354295,7 +354463,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -354450,7 +354618,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -354535,7 +354703,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -354620,7 +354788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -354818,7 +354986,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -354866,7 +355034,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -354914,7 +355082,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -354938,7 +355106,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy", "GenericTypeArguments": [], @@ -354989,7 +355157,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -355013,7 +355181,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -355203,7 +355371,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -355288,7 +355456,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -355373,7 +355541,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -355571,7 +355739,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -355619,7 +355787,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -355667,7 +355835,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -355691,7 +355859,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy", "GenericTypeArguments": [], @@ -355742,7 +355910,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -355766,7 +355934,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -355834,7 +356002,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", @@ -356015,7 +356183,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -356100,7 +356268,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -356185,7 +356353,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -356383,7 +356551,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -356431,7 +356599,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -356479,7 +356647,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -356503,7 +356671,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy", "GenericTypeArguments": [], @@ -356554,7 +356722,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -356578,7 +356746,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -356710,7 +356878,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -356728,7 +356896,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -356835,7 +357003,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -356859,7 +357027,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -357009,7 +357177,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -357140,7 +357308,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -357290,7 +357458,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -357421,7 +357589,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -357496,7 +357664,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "EndTime": "System.DateTime", @@ -357603,7 +357771,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -357725,7 +357893,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -357858,7 +358026,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -357928,7 +358096,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -358044,7 +358212,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -358160,7 +358328,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -358252,7 +358420,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -358327,7 +358495,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "EndTime": "System.DateTime", @@ -358433,7 +358601,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -358555,7 +358723,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -358687,7 +358855,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -358757,7 +358925,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -358873,7 +359041,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -358989,7 +359157,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -359081,7 +359249,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -359156,7 +359324,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -359243,7 +359411,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -359409,7 +359577,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -359427,7 +359595,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy", "GenericTypeArguments": [], @@ -359463,7 +359631,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -359481,7 +359649,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -359538,7 +359706,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -359734,7 +359902,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -359758,7 +359926,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy", "GenericTypeArguments": [], @@ -359782,7 +359950,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -359806,7 +359974,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -359898,7 +360066,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -360094,7 +360262,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -360118,7 +360286,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy", "GenericTypeArguments": [], @@ -360142,7 +360310,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -360166,7 +360334,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -360245,7 +360413,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -360325,7 +360493,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -360458,7 +360626,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -360591,7 +360759,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -360706,7 +360874,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -360931,7 +361099,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -361108,7 +361276,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -361229,7 +361397,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -361311,7 +361479,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -361495,7 +361663,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Thumbprint": "System.String", "ProvisioningState": "System.String", @@ -361814,7 +361982,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicCertData": "System.String", "ProvisioningState": "System.String", @@ -362374,7 +362542,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Weight": "System.Nullable`1[System.Int32]", "LocalAddress": "System.String", @@ -362489,7 +362657,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -362620,7 +362788,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -362695,7 +362863,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBGPPeerStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBGPPeerStatus, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBGPPeerStatus, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Asn": "System.Nullable`1[System.Int32]", "RoutesReceived": "System.Nullable`1[System.Int64]", @@ -362811,7 +362979,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -362942,7 +363110,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -363017,7 +363185,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -363275,7 +363443,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Weight": "System.Nullable`1[System.Int32]", "LocalAddress": "System.String", @@ -363372,7 +363540,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -363479,7 +363647,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -363554,7 +363722,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Thumbprint": "System.String", "ProvisioningState": "System.String", @@ -363831,7 +363999,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicCertData": "System.String", "ProvisioningState": "System.String", @@ -364108,7 +364276,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RadiusServerScore": "System.Int32", "RadiusServerSecret": "System.String", @@ -364423,7 +364591,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SaLifeTimeSeconds": "System.Int32", "SaDataSizeKilobytes": "System.Int32", @@ -364971,7 +365139,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -365519,7 +365687,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -365655,7 +365823,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration", "GenericTypeArguments": [], @@ -365733,7 +365901,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -365751,7 +365919,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -365805,7 +365973,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -365912,7 +366080,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -365930,7 +366098,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -365948,7 +366116,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -366002,7 +366170,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress", "GenericTypeArguments": [], @@ -366038,7 +366206,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -366092,7 +366260,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer", "GenericTypeArguments": [], @@ -366200,7 +366368,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -366331,7 +366499,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer", "GenericTypeArguments": [], @@ -366355,7 +366523,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration", "GenericTypeArguments": [], @@ -366457,7 +366625,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -366481,7 +366649,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -366547,7 +366715,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -366672,7 +366840,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -366696,7 +366864,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -366720,7 +366888,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -366792,7 +366960,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress", "GenericTypeArguments": [], @@ -366840,7 +367008,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -366912,7 +367080,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -367102,7 +367270,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration", "GenericTypeArguments": [], @@ -367204,7 +367372,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -367228,7 +367396,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -367294,7 +367462,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -367419,7 +367587,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -367443,7 +367611,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -367467,7 +367635,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -367539,7 +367707,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress", "GenericTypeArguments": [], @@ -367587,7 +367755,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -367659,7 +367827,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -367873,7 +368041,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration", "GenericTypeArguments": [], @@ -367975,7 +368143,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -367999,7 +368167,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -368065,7 +368233,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -368190,7 +368358,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -368214,7 +368382,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -368238,7 +368406,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -368310,7 +368478,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress", "GenericTypeArguments": [], @@ -368358,7 +368526,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -368430,7 +368598,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -368572,7 +368740,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration", "GenericTypeArguments": [], @@ -368674,7 +368842,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -368698,7 +368866,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -368764,7 +368932,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -368889,7 +369057,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -368913,7 +369081,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -368937,7 +369105,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -369009,7 +369177,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress", "GenericTypeArguments": [], @@ -369057,7 +369225,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -369129,7 +369297,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -369197,7 +369365,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration", "GenericTypeArguments": [], @@ -369299,7 +369467,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -369323,7 +369491,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -369389,7 +369557,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -369514,7 +369682,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -369538,7 +369706,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -369562,7 +369730,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -369634,7 +369802,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress", "GenericTypeArguments": [], @@ -369682,7 +369850,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -369754,7 +369922,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -369829,7 +369997,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -369944,7 +370112,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -370077,7 +370245,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -370424,7 +370592,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -370545,7 +370713,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -370726,7 +370894,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VpnProfileSASUrl": "System.String" }, @@ -371137,7 +371305,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Thumbprint": "System.String", "ProvisioningState": "System.String", @@ -371368,7 +371536,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicCertData": "System.String", "ProvisioningState": "System.String", @@ -371654,7 +371822,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -371882,7 +372050,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -372187,7 +372355,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -372205,7 +372373,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -372223,7 +372391,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -372330,7 +372498,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -372354,7 +372522,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -372378,7 +372546,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -372453,7 +372621,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -372533,7 +372701,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -372651,7 +372819,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -372787,7 +372955,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -372867,7 +373035,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -373003,7 +373171,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -373725,7 +373893,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -373805,7 +373973,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -373902,7 +374070,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -373959,7 +374127,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -374068,7 +374236,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -374143,7 +374311,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -374223,7 +374391,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -374373,7 +374541,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -374547,7 +374715,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -374627,7 +374795,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -374706,7 +374874,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -374812,7 +374980,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -374941,7 +375109,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -375014,7 +375182,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -375150,7 +375318,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SaLifeTimeSeconds": "System.Int32", "SaDataSizeKilobytes": "System.Int32", @@ -375246,7 +375414,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SaLifeTimeSeconds": "System.Int32", "SaDataSizeKilobytes": "System.Int32", @@ -375305,7 +375473,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -375489,7 +375657,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SaLifeTimeSeconds": "System.Int32", "SaDataSizeKilobytes": "System.Int32", @@ -375598,7 +375766,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -375731,7 +375899,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SaLifeTimeSeconds": "System.Int32", "SaDataSizeKilobytes": "System.Int32", @@ -375912,7 +376080,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SaLifeTimeSeconds": "System.Int32", "SaDataSizeKilobytes": "System.Int32", @@ -376032,7 +376200,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -376112,7 +376280,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -376227,7 +376395,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -376334,7 +376502,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -376352,7 +376520,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -376370,7 +376538,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -376424,7 +376592,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress", "GenericTypeArguments": [], @@ -376442,7 +376610,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -376480,7 +376648,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -376534,7 +376702,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer", "GenericTypeArguments": [], @@ -376606,7 +376774,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -376660,7 +376828,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -376717,7 +376885,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -376844,7 +377012,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -376969,7 +377137,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -376993,7 +377161,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -377017,7 +377185,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -377089,7 +377257,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress", "GenericTypeArguments": [], @@ -377113,7 +377281,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -377163,7 +377331,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -377187,7 +377355,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -377235,7 +377403,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -377351,7 +377519,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -377478,7 +377646,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -377603,7 +377771,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -377627,7 +377795,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -377651,7 +377819,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -377723,7 +377891,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress", "GenericTypeArguments": [], @@ -377747,7 +377915,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -377797,7 +377965,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -377821,7 +377989,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -377869,7 +378037,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -378009,7 +378177,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -378136,7 +378304,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -378261,7 +378429,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -378285,7 +378453,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -378309,7 +378477,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -378381,7 +378549,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress", "GenericTypeArguments": [], @@ -378405,7 +378573,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -378455,7 +378623,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -378479,7 +378647,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -378527,7 +378695,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -378595,7 +378763,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer", "GenericTypeArguments": [], @@ -378619,7 +378787,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -378746,7 +378914,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -378871,7 +379039,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -378895,7 +379063,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -378919,7 +379087,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -378991,7 +379159,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress", "GenericTypeArguments": [], @@ -379015,7 +379183,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -379065,7 +379233,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -379089,7 +379257,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -379137,7 +379305,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -379277,7 +379445,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -379404,7 +379572,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -379529,7 +379697,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -379553,7 +379721,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -379577,7 +379745,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -379649,7 +379817,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress", "GenericTypeArguments": [], @@ -379673,7 +379841,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -379723,7 +379891,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -379747,7 +379915,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -379795,7 +379963,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -379887,7 +380055,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -380014,7 +380182,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -380139,7 +380307,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", "GenericTypeArguments": [], @@ -380163,7 +380331,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", "GenericTypeArguments": [], @@ -380187,7 +380355,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", "GenericTypeArguments": [], @@ -380259,7 +380427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress", "GenericTypeArguments": [], @@ -380283,7 +380451,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -380333,7 +380501,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -380357,7 +380525,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -380405,7 +380573,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -380484,7 +380652,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -380856,7 +381024,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -381032,7 +381200,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation", "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", @@ -381145,7 +381313,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -381244,7 +381412,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -381262,7 +381430,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -381439,7 +381607,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -381463,7 +381631,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -381699,7 +381867,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -381723,7 +381891,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -381791,7 +381959,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation", "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", @@ -381892,7 +382060,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -382117,7 +382285,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -382141,7 +382309,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -382289,7 +382457,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -382356,7 +382524,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -382374,7 +382542,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -382392,7 +382560,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -382497,7 +382665,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -382521,7 +382689,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -382545,7 +382713,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -382637,7 +382805,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -382661,7 +382829,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -382685,7 +382853,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -382753,7 +382921,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -382826,7 +382994,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -382850,7 +383018,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -382874,7 +383042,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -382942,7 +383110,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -382966,7 +383134,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -382990,7 +383158,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -383065,7 +383233,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -383133,7 +383301,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -383200,7 +383368,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -383257,7 +383425,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -383330,7 +383498,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -383405,7 +383573,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -383841,7 +384009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -384011,7 +384179,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "GenericTypeArguments": [], @@ -384065,7 +384233,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -384101,7 +384269,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", "GenericTypeArguments": [], @@ -384119,7 +384287,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -384137,7 +384305,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -384316,7 +384484,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "GenericTypeArguments": [], @@ -384388,7 +384556,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -384436,7 +384604,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", "GenericTypeArguments": [], @@ -384460,7 +384628,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -384484,7 +384652,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -384559,7 +384727,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -384646,7 +384814,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -384741,7 +384909,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -384759,7 +384927,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -384777,7 +384945,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -384795,7 +384963,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -384813,7 +384981,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -384894,7 +385062,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -385001,7 +385169,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -385025,7 +385193,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -385049,7 +385217,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -385073,7 +385241,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -385097,7 +385265,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -385172,7 +385340,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -385530,7 +385698,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -385548,7 +385716,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -385566,7 +385734,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -385695,7 +385863,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -385719,7 +385887,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -385743,7 +385911,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -385818,7 +385986,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -385887,7 +386055,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -385955,7 +386123,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -386012,7 +386180,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -386086,7 +386254,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -386218,7 +386386,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -386236,7 +386404,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -386254,7 +386422,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -386361,7 +386529,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -386385,7 +386553,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -386409,7 +386577,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -386484,7 +386652,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -386562,7 +386730,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -386639,7 +386807,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -386696,7 +386864,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -386779,7 +386947,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -386854,7 +387022,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -386950,7 +387118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -387063,7 +387231,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -387170,7 +387338,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -387268,7 +387436,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -387355,7 +387523,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -387373,7 +387541,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -387427,7 +387595,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", "GenericTypeArguments": [], @@ -387508,7 +387676,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -387639,7 +387807,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -387663,7 +387831,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -387735,7 +387903,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", "GenericTypeArguments": [], @@ -387901,7 +388069,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -388032,7 +388200,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -388056,7 +388224,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -388128,7 +388296,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", "GenericTypeArguments": [], @@ -388196,7 +388364,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -388291,7 +388459,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -388375,7 +388543,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -388474,7 +388642,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -388605,7 +388773,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -388629,7 +388797,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -388701,7 +388869,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", "GenericTypeArguments": [], @@ -388776,7 +388944,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -388928,7 +389096,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -389130,7 +389298,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -389306,7 +389474,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "System.Collections.Generic.List`1[System.String]", "ProvisioningState": "System.String", @@ -389382,7 +389550,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -389560,7 +389728,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -389732,7 +389900,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -389866,7 +390034,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -390024,7 +390192,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -390270,7 +390438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -390440,7 +390608,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -390547,7 +390715,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -390645,7 +390813,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -390732,7 +390900,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -390750,7 +390918,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -390804,7 +390972,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", "GenericTypeArguments": [], @@ -390933,7 +391101,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -390957,7 +391125,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -391029,7 +391197,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", "GenericTypeArguments": [], @@ -391243,7 +391411,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -391267,7 +391435,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -391339,7 +391507,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", "GenericTypeArguments": [], @@ -391407,7 +391575,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -391502,7 +391670,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -391586,7 +391754,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -391733,7 +391901,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -391757,7 +391925,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -391829,7 +391997,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", "GenericTypeArguments": [], @@ -391904,7 +392072,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -392000,7 +392168,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -392140,7 +392308,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -392274,7 +392442,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -392370,7 +392538,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -392483,7 +392651,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -392590,7 +392758,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -392688,7 +392856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -392775,7 +392943,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -392793,7 +392961,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -392847,7 +393015,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", "GenericTypeArguments": [], @@ -392928,7 +393096,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -393059,7 +393227,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -393083,7 +393251,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -393155,7 +393323,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", "GenericTypeArguments": [], @@ -393321,7 +393489,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -393452,7 +393620,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -393476,7 +393644,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -393548,7 +393716,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", "GenericTypeArguments": [], @@ -393616,7 +393784,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -393711,7 +393879,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -393795,7 +393963,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -393894,7 +394062,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -394025,7 +394193,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", "GenericTypeArguments": [], @@ -394049,7 +394217,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation", "GenericTypeArguments": [], @@ -394121,7 +394289,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", "GenericTypeArguments": [], @@ -394196,7 +394364,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIPAddressAvailabilityResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPAddressAvailabilityResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPAddressAvailabilityResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Available": "System.Boolean", "AvailableIPAddresses": "System.Collections.Generic.List`1[System.String]", @@ -394251,7 +394419,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -394421,7 +394589,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -394763,7 +394931,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", @@ -394923,7 +395091,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -394941,7 +395109,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -395096,7 +395264,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -395120,7 +395288,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -395310,7 +395478,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -395334,7 +395502,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -395409,7 +395577,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PeerIp": "System.String", "ProvisioningState": "System.String", @@ -395818,7 +395986,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", @@ -395942,7 +396110,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PeerIp": "System.String", "ProvisioningState": "System.String", @@ -396018,7 +396186,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -396036,7 +396204,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -396167,7 +396335,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -396191,7 +396359,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -396259,7 +396427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PeerIp": "System.String", "ProvisioningState": "System.String", @@ -396323,7 +396491,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -396347,7 +396515,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -396439,7 +396607,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -396463,7 +396631,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -396531,7 +396699,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -396555,7 +396723,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -396630,7 +396798,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", @@ -396790,7 +396958,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PeerIp": "System.String", "ProvisioningState": "System.String", @@ -396866,7 +397034,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -396884,7 +397052,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -396989,7 +397157,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -397013,7 +397181,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -397203,7 +397371,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -397227,7 +397395,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -397295,7 +397463,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PeerIp": "System.String", "ProvisioningState": "System.String", @@ -397407,7 +397575,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -397431,7 +397599,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -397571,7 +397739,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -397595,7 +397763,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -397674,7 +397842,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", @@ -398050,7 +398218,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", @@ -398156,7 +398324,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -398289,7 +398457,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -398307,7 +398475,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -398462,7 +398630,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -398486,7 +398654,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -398554,7 +398722,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -398737,7 +398905,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -398761,7 +398929,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -398951,7 +399119,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -398975,7 +399143,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -399107,7 +399275,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", @@ -399192,7 +399360,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -399210,7 +399378,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -399228,7 +399396,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -399335,7 +399503,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -399359,7 +399527,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -399383,7 +399551,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -399451,7 +399619,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", @@ -399524,7 +399692,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -399548,7 +399716,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -399572,7 +399740,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -399664,7 +399832,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -399688,7 +399856,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -399712,7 +399880,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -399780,7 +399948,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -399804,7 +399972,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -399828,7 +399996,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -399903,7 +400071,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "System.Collections.Generic.List`1[System.String]", "ProvisioningState": "System.String", @@ -400139,7 +400307,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -400273,7 +400441,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -400451,7 +400619,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -400623,7 +400791,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -400745,7 +400913,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -400860,7 +401028,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -400878,7 +401046,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -401009,7 +401177,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -401033,7 +401201,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -401151,7 +401319,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -401175,7 +401343,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -401245,7 +401413,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -401354,7 +401522,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -401378,7 +401546,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -401470,7 +401638,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -401494,7 +401662,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -401569,7 +401737,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VpnProfileSASUrl": "System.String" }, @@ -401800,7 +401968,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SaLifeTimeSeconds": "System.Int32", "SaDataSizeKilobytes": "System.Int32", @@ -402038,7 +402206,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealthDetail", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealthDetail, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealthDetail, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VpnConnectionDuration": "System.Nullable`1[System.Int64]", "MaxBandwidth": "System.Nullable`1[System.Int64]", @@ -402144,7 +402312,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -402241,7 +402409,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -402348,7 +402516,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -402442,7 +402610,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -402512,7 +402680,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -402597,7 +402765,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -402665,7 +402833,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -402740,7 +402908,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Etag": "System.String", @@ -403017,7 +403185,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "EndTime": "System.DateTime", @@ -403124,7 +403292,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -403239,7 +403407,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -403372,7 +403540,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -403442,7 +403610,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -403551,7 +403719,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -403667,7 +403835,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -403759,7 +403927,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -403834,7 +404002,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "EndTime": "System.DateTime", @@ -403941,7 +404109,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -404056,7 +404224,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -404189,7 +404357,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -404259,7 +404427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -404368,7 +404536,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -404484,7 +404652,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -404576,7 +404744,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -404651,7 +404819,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTcpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTcpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTcpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableTraceRoute": "System.Nullable`1[System.Boolean]", "Port": "System.Nullable`1[System.Int32]" @@ -404701,7 +404869,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorHttpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorHttpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorHttpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequestHeaders": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader]", "ValidStatusCodeRanges": "System.Collections.Generic.List`1[System.String]", @@ -404757,7 +404925,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorIcmpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorIcmpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorIcmpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableTraceRoute": "System.Nullable`1[System.Boolean]" }, @@ -404810,7 +404978,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -404828,7 +404996,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -404846,7 +405014,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -404884,7 +405052,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -404974,7 +405142,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -405031,7 +405199,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -405081,7 +405249,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -405149,7 +405317,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -405295,7 +405463,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -405363,7 +405531,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -405387,7 +405555,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -405506,7 +405674,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Header": "System.Collections.IDictionary", "ValidStatusCode": "System.Int32[]", @@ -405820,7 +405988,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -405933,7 +406101,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -406204,7 +406372,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -406522,7 +406690,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -406675,7 +406843,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -406781,7 +406949,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -406900,7 +407068,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -406938,7 +407106,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -406994,7 +407162,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -407177,7 +407345,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -407320,7 +407488,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -407370,7 +407538,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -407432,7 +407600,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -407574,7 +407742,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -407717,7 +407885,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -407767,7 +407935,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -407829,7 +407997,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -407899,7 +408067,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -408023,7 +408191,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -408166,7 +408334,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -408216,7 +408384,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -408278,7 +408446,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -408394,7 +408562,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -408537,7 +408705,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", "GenericTypeArguments": [], @@ -408587,7 +408755,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -408649,7 +408817,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -408724,7 +408892,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -408825,7 +408993,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -409093,7 +409261,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -409412,7 +409580,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -409554,7 +409722,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -409672,7 +409840,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -409728,7 +409896,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -409934,7 +410102,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -409996,7 +410164,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -410164,7 +410332,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -410226,7 +410394,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -410296,7 +410464,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -410438,7 +410606,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -410500,7 +410668,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -410642,7 +410810,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -410704,7 +410872,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -410779,7 +410947,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", "Tag": "System.Collections.Hashtable", @@ -410859,7 +411027,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Network.Models.PSBastion]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -411262,7 +411430,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", "Tag": "System.Collections.Hashtable", @@ -411387,7 +411555,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -411523,7 +411691,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -411658,7 +411826,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -411784,7 +411952,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -411878,7 +412046,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -411962,7 +412130,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -412096,7 +412264,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -412190,7 +412358,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -412373,7 +412541,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -412467,7 +412635,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -412626,7 +412794,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -412746,7 +412914,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -412880,7 +413048,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -413099,7 +413267,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -413294,7 +413462,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -413438,7 +413606,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -413572,7 +413740,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -413815,7 +413983,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -414034,7 +414202,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -414194,7 +414362,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", "Tag": "System.Collections.Hashtable", @@ -414297,7 +414465,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -414315,7 +414483,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -414423,7 +414591,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -414447,7 +414615,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -414518,7 +414686,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", "Tag": "System.Collections.Hashtable", @@ -414607,7 +414775,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -414631,7 +414799,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -414725,7 +414893,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -414749,7 +414917,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -414817,7 +414985,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -414841,7 +415009,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -414916,7 +415084,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PsAvailableServiceAlias", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PsAvailableServiceAlias, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PsAvailableServiceAlias, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Id": "System.String", @@ -415104,7 +415272,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableDelegation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "System.Collections.Generic.List`1[System.String]", "Name": "System.String", @@ -415293,7 +415461,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualNetworks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Tag": "System.Collections.Hashtable", @@ -415579,7 +415747,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSEndpointServiceResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEndpointServiceResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEndpointServiceResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Id": "System.String", @@ -415766,7 +415934,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTag", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Values": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation]", "Name": "System.String", @@ -415956,7 +416124,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersList", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersList, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersList, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Countries": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry]", "CountriesText": "System.String" @@ -416010,7 +416178,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -416218,7 +416386,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -416275,7 +416443,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -416438,7 +416606,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -416653,7 +416821,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -416841,7 +417009,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -417029,7 +417197,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -417193,7 +417361,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -417268,7 +417436,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReport", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReport, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReport, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProviderLocation": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation", "ReachabilityReport": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem]", @@ -417325,7 +417493,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -417587,7 +417755,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -417644,7 +417812,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -417879,7 +418047,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -418166,7 +418334,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -418426,7 +418594,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -418686,7 +418854,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -418922,7 +419090,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -418997,7 +419165,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkUsage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkUsage, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkUsage, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "Microsoft.Azure.Commands.Network.Models.PSUsageName", "CurrentValue": "System.Double", @@ -419360,7 +419528,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MinCapacity": "System.Int32", "MaxCapacity": "System.Nullable`1[System.Int32]" @@ -419427,7 +419595,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capacity": "System.Nullable`1[System.Int32]", "Tier": "System.String", @@ -419473,7 +419641,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", "CipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -419535,7 +419703,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", @@ -419589,7 +419757,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -419601,7 +419769,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "System.Collections.Generic.List`1[System.Int32]", "RuleGroupName": "System.String", @@ -419659,7 +419827,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -419671,7 +419839,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MatchVariable": "System.String", "SelectorMatchOperator": "System.String", @@ -419729,7 +419897,7 @@ "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -419776,7 +419944,7 @@ "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", - "AssemblyQualifiedName": "System.Collections.Generic.Dictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.Dictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -419789,7 +419957,7 @@ "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrincipalId": "System.String", "ClientId": "System.String" @@ -419951,7 +420119,7 @@ "Microsoft.Azure.Commands.Network.Models.PSResourceId": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Id": "System.String" }, @@ -419995,7 +420163,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -420007,7 +420175,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Data": "System.String", "ProvisioningState": "System.String", @@ -420056,7 +420224,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -420068,7 +420236,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -420130,7 +420298,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -420142,7 +420310,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Fqdn": "System.String", "IpAddress": "System.String" @@ -420187,7 +420355,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -420199,7 +420367,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation", "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", @@ -420286,7 +420454,7 @@ "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Fqdns": "System.Collections.Generic.List`1[System.String]", "RequiredMemberName": "System.String", @@ -420332,7 +420500,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", @@ -420400,7 +420568,7 @@ "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", @@ -420453,7 +420621,7 @@ "Microsoft.Azure.Commands.Network.Models.PSSubnet": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -420560,7 +420728,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -420641,7 +420809,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -420653,7 +420821,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", @@ -420738,7 +420906,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsServers": "System.Collections.Generic.List`1[System.String]", "AppliedDnsServers": "System.Collections.Generic.List`1[System.String]", @@ -420788,7 +420956,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -420800,7 +420968,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", "ResourceGroupName": "System.String", @@ -420850,7 +421018,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -420909,7 +421077,7 @@ "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -421000,7 +421168,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -421022,7 +421190,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -421034,7 +421202,7 @@ "Microsoft.Azure.Commands.Network.Models.PSSecurityRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SourcePortRange": "System.Collections.Generic.IList`1[System.String]", "DestinationPortRange": "System.Collections.Generic.IList`1[System.String]", @@ -421106,7 +421274,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -421118,7 +421286,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -421171,7 +421339,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -421183,7 +421351,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRouteTable": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -421251,7 +421419,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -421263,7 +421431,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRoute": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressPrefix": "System.String", "NextHopType": "System.String", @@ -421313,7 +421481,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -421325,7 +421493,7 @@ "Microsoft.Azure.Commands.Network.Models.PSDelegation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Actions": "System.Collections.Generic.List`1[System.String]", "ProvisioningState": "System.String", @@ -421374,7 +421542,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -421386,7 +421554,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -421398,7 +421566,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", @@ -421476,7 +421644,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -421488,7 +421656,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpAddresses": "System.Collections.Generic.List`1[System.String]", "Fqdn": "System.String" @@ -421533,7 +421701,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -421545,7 +421713,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", "GroupIds": "System.Collections.Generic.List`1[System.String]", @@ -421598,7 +421766,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Status": "System.String", "Description": "System.String", @@ -421644,7 +421812,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -421656,7 +421824,7 @@ "Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LinkedResourceType": "System.String", "Link": "System.String", @@ -421705,7 +421873,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -421717,7 +421885,7 @@ "Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LinkedResourceType": "System.String", "Link": "System.String", @@ -421766,7 +421934,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -421778,7 +421946,7 @@ "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Locations": "System.Collections.Generic.List`1[System.String]", "Service": "System.String", @@ -421824,7 +421992,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -421836,7 +422004,7 @@ "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -421903,7 +422071,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -421915,7 +422083,7 @@ "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "serviceResources": "System.Collections.Generic.List`1[System.String]", "Description": "System.String", @@ -421965,7 +422133,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DomainNameLabel": "System.String", "Fqdn": "System.String", @@ -422011,7 +422179,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String" }, @@ -422055,7 +422223,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -422067,7 +422235,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpTagType": "System.String", "Tag": "System.String" @@ -422112,7 +422280,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -422124,7 +422292,7 @@ "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", @@ -422189,7 +422357,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -422201,7 +422369,7 @@ "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterfaceIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -422252,7 +422420,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -422264,7 +422432,7 @@ "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -422331,7 +422499,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -422343,7 +422511,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -422355,7 +422523,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -422433,7 +422601,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -422478,7 +422646,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -422490,7 +422658,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -422535,7 +422703,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -422547,7 +422715,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -422603,7 +422771,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -422615,7 +422783,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -422664,7 +422832,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -422676,7 +422844,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -422737,7 +422905,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -422749,7 +422917,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "ProvisioningState": "System.String", @@ -422799,7 +422967,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -422811,7 +422979,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", @@ -422863,7 +423031,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -422875,7 +423043,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]", "ProvisioningState": "System.String", @@ -422925,7 +423093,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -422937,7 +423105,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "Primary": "System.Nullable`1[System.Boolean]", @@ -422990,7 +423158,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -423002,7 +423170,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -423061,7 +423229,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StatusCodes": "System.Collections.Generic.List`1[System.String]", "Body": "System.String", @@ -423107,7 +423275,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -423119,7 +423287,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -423178,7 +423346,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -423190,7 +423358,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -423251,7 +423419,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -423263,7 +423431,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -423318,7 +423486,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -423330,7 +423498,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ActionSet": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet", "Conditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition]", @@ -423380,7 +423548,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "UrlConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", "RequestHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", @@ -423429,7 +423597,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Reroute": "System.Boolean", "ModifiedQueryString": "System.String", @@ -423475,7 +423643,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -423487,7 +423655,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HeaderName": "System.String", "HeaderValue": "System.String" @@ -423532,7 +423700,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -423544,7 +423712,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IgnoreCase": "System.Nullable`1[System.Boolean]", "Negate": "System.Nullable`1[System.Boolean]", @@ -423591,7 +423759,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -423603,7 +423771,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -423665,7 +423833,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -423677,7 +423845,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Data": "System.String", "ProvisioningState": "System.String", @@ -423726,7 +423894,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -423738,7 +423906,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -423795,7 +423963,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -423807,7 +423975,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -424044,7 +424212,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -424056,7 +424224,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup]", "Tag": "System.Collections.Hashtable", @@ -424113,7 +424281,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -424125,7 +424293,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule]", "RuleGroupName": "System.String", @@ -424172,7 +424340,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -424184,7 +424352,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleId": "System.Int32", "Description": "System.String" @@ -424229,7 +424397,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -424241,7 +424409,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings]", @@ -424288,7 +424456,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -424300,7 +424468,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", "Servers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer]", @@ -424347,7 +424515,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -424359,7 +424527,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", "Address": "System.String", @@ -424406,7 +424574,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -424451,7 +424619,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -424463,7 +424631,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MatchVariable": "System.String", "SelectorMatchOperator": "System.String", @@ -424509,7 +424677,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -424521,7 +424689,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleGroupOverrides": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride]", "RuleSetVersion": "System.String", @@ -424567,7 +424735,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -424579,7 +424747,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride]", "RuleGroupName": "System.String" @@ -424624,7 +424792,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -424636,7 +424804,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleId": "System.String", "State": "System.String" @@ -424681,7 +424849,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RequestBodyCheck": "System.Boolean", "MaxRequestBodySizeInKb": "System.Int32", @@ -424729,7 +424897,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -424741,7 +424909,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MatchConditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition]", "Priority": "System.Int32", @@ -424790,7 +424958,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -424802,7 +424970,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MatchVariables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable]", "MatchValues": "System.Collections.Generic.List`1[System.String]", @@ -424853,7 +425021,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -424865,7 +425033,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VariableName": "System.String", "Selector": "System.String" @@ -424910,7 +425078,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "System.Collections.Hashtable", "FqdnTagName": "System.String", @@ -424963,7 +425131,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -424975,7 +425143,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProtocolType": "System.String", "Port": "System.UInt32" @@ -425030,7 +425198,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -425042,7 +425210,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "RuleCollectionType": "System.String", @@ -425088,7 +425256,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "RuleType": "System.String" @@ -425133,7 +425301,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Servers": "System.Collections.Generic.IList`1[System.String]", "EnableProxy": "System.Nullable`1[System.Boolean]", @@ -425179,7 +425347,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -425300,7 +425468,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "System.String" }, @@ -425344,7 +425512,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -425356,7 +425524,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocols": "System.Collections.Generic.List`1[System.String]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -425425,7 +425593,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocols": "System.Collections.Generic.List`1[System.String]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -425492,7 +425660,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]", "Name": "System.String", @@ -425550,7 +425718,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -425562,7 +425730,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocols": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -425631,7 +425799,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -425643,7 +425811,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProtocolType": "System.String", "Port": "System.UInt32" @@ -425703,7 +425871,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIPs": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", "publicIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]" @@ -425748,7 +425916,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Addresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]", "Count": "System.Int32" @@ -425793,7 +425961,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress", "GenericTypeArguments": [], @@ -425803,7 +425971,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Address": "System.String" }, @@ -425847,7 +426015,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -425898,7 +426066,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Tier": "System.String" @@ -425943,7 +426111,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -425988,7 +426156,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -426000,7 +426168,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule]", @@ -426081,7 +426249,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -426093,7 +426261,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -426105,7 +426273,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule]", @@ -426186,7 +426354,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "System.String" }, @@ -426230,7 +426398,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -426242,7 +426410,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocols": "System.Collections.Generic.List`1[System.String]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -426310,7 +426478,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -426322,7 +426490,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]", @@ -426403,7 +426571,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", @@ -426678,7 +426846,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAddressSpace": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressPrefixes": "System.Collections.Generic.List`1[System.String]", "AddressPrefixesText": "System.String" @@ -426723,7 +426891,7 @@ "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DnsServers": "System.Collections.Generic.List`1[System.String]", "DnsServersText": "System.String" @@ -426768,7 +426936,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VirtualNetworkCommunity": "System.String", "RegionalCommunity": "System.String" @@ -426818,7 +426986,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -426830,7 +426998,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -426890,7 +427058,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Id": "System.String" }, @@ -426934,7 +427102,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -426982,7 +427150,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Ids": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Labels": "System.Collections.Generic.List`1[System.String]" @@ -427027,7 +427195,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVnetRoute": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StaticRoutes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSStaticRoute]" }, @@ -427071,7 +427239,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSStaticRoute]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSStaticRoute]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSStaticRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSStaticRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -427083,7 +427251,7 @@ "Microsoft.Azure.Commands.Network.Models.PSStaticRoute": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressPrefixes": "System.Collections.Generic.List`1[System.String]", "Name": "System.String", @@ -427129,7 +427297,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Bounds": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds", "BoundsText": "System.String" @@ -427174,7 +427342,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Min": "System.Int32", "Max": "System.Int32" @@ -427219,7 +427387,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Id": "System.String" }, @@ -427263,7 +427431,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -427275,7 +427443,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -427329,7 +427497,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -427378,7 +427546,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -427390,7 +427558,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressPrefixes": "System.Collections.Generic.List`1[System.String]", "Destinations": "System.Collections.Generic.List`1[System.String]", @@ -427439,7 +427607,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -427451,7 +427619,7 @@ "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -427502,7 +427670,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -427514,7 +427682,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllocatedIpAddresses": "System.Collections.Generic.List`1[System.String]", "VpnClientConnectionsCount": "System.Int32", @@ -427562,7 +427730,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -427574,7 +427742,7 @@ "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VpnClientAddressPool": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -427625,7 +427793,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AadTenant": "System.String", "AadAudience": "System.String", @@ -427671,7 +427839,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -427683,7 +427851,7 @@ "Microsoft.Azure.Commands.Network.Models.PSClientCertificate": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSClientCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Thumbprint": "System.String" @@ -427728,7 +427896,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -427740,7 +427908,7 @@ "Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "PublicCertData": "System.String" @@ -427785,7 +427953,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -427797,7 +427965,7 @@ "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -427848,7 +428016,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRadiusServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRadiusServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -427860,7 +428028,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRadiusServer": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RadiusServerScore": "System.Int32", "RadiusServerSecret": "System.String", @@ -427906,7 +428074,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -427918,7 +428086,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVHubRoute": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Destinations": "System.Collections.Generic.List`1[System.String]", "Name": "System.String", @@ -427966,7 +428134,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnSite": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -428025,7 +428193,7 @@ "Microsoft.Azure.Commands.Network.Models.PSBgpSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpPeeringAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress]", "PeerWeight": "System.Nullable`1[System.Int32]", @@ -428072,7 +428240,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -428084,7 +428252,7 @@ "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Etag": "System.String", @@ -428142,7 +428310,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LinkSpeedInMbps": "System.Int32", "DeviceVendor": "System.String", @@ -428188,7 +428356,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -428200,7 +428368,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings", "LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties", @@ -428252,7 +428420,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Asn": "System.Nullable`1[System.Int64]", "BgpPeeringAddress": "System.String" @@ -428297,7 +428465,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LinkSpeedInMbps": "System.Int32", "LinkProviderName": "System.String" @@ -428342,7 +428510,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -428354,7 +428522,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VpnSiteLink": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "EnableBgp": "System.Boolean", @@ -428413,7 +428581,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -428425,7 +428593,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -428487,7 +428655,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Tier": "System.String", @@ -428533,7 +428701,7 @@ "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BandwidthInMbps": "System.Int32", "PeeringLocation": "System.String", @@ -428579,7 +428747,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -428591,7 +428759,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AuthorizationKey": "System.String", "AuthorizationUseStatus": "System.String", @@ -428640,7 +428808,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -428652,7 +428820,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPeering": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", @@ -428721,7 +428889,7 @@ "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", "RouteFilter": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", @@ -428774,7 +428942,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AdvertisedPublicPrefixes": "System.Collections.Generic.List`1[System.String]", "AdvertisedCommunities": "System.Collections.Generic.List`1[System.String]", @@ -428825,7 +428993,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRouteFilter": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -428892,7 +429060,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -428904,7 +429072,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Communities": "System.Collections.Generic.List`1[System.String]", "Access": "System.String", @@ -428953,7 +429121,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -428965,7 +429133,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IPv6CircuitConnectionConfig": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnectionIPv6ConnectionConfig", "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -429021,7 +429189,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnectionIPv6ConnectionConfig": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnectionIPv6ConnectionConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnectionIPv6ConnectionConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnectionIPv6ConnectionConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressPrefix": "System.String", "CircuitConnectionStatus": "System.String" @@ -429066,7 +429234,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -429078,7 +429246,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PeerExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -429145,7 +429313,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -429157,7 +429325,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MacSecConfig": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig", "RouterName": "System.String", @@ -429212,7 +429380,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CknSecretIdentifier": "System.String", "CakSecretIdentifier": "System.String", @@ -429258,7 +429426,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Id": "System.String" }, @@ -429302,7 +429470,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -429314,7 +429482,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", @@ -429377,7 +429545,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -429389,7 +429557,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ValueInGbps": "System.Nullable`1[System.Int32]", "OfferName": "System.String" @@ -429434,7 +429602,7 @@ "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String" }, @@ -429478,7 +429646,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -429490,7 +429658,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -429502,7 +429670,7 @@ "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPortRangeStart": "System.Int32", @@ -429573,7 +429741,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -429585,7 +429753,7 @@ "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -429656,7 +429824,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -429668,7 +429836,7 @@ "Microsoft.Azure.Commands.Network.Models.PSOutboundRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -429728,7 +429896,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -429740,7 +429908,7 @@ "Microsoft.Azure.Commands.Network.Models.PSProbe": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", @@ -429814,7 +429982,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -429883,7 +430051,7 @@ "Microsoft.Azure.Commands.Network.Models.PSIpGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "IpAddresses": "System.Collections.Generic.List`1[System.String]", @@ -429938,7 +430106,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String" }, @@ -429982,7 +430150,7 @@ "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkInterface": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -430042,7 +430210,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -430054,7 +430222,7 @@ "Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SourcePortRange": "System.Collections.Generic.IList`1[System.String]", "DestinationPortRange": "System.Collections.Generic.IList`1[System.String]", @@ -430108,7 +430276,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -430120,7 +430288,7 @@ "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Container": "Microsoft.Azure.Commands.Network.Models.PSContainer", "ContainerNetworkInterfaceConfiguration": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration", @@ -430173,7 +430341,7 @@ "Microsoft.Azure.Commands.Network.Models.PSContainer": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Id": "System.String" }, @@ -430217,7 +430385,7 @@ "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]", @@ -430268,7 +430436,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -430280,7 +430448,7 @@ "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "ProvisioningState": "System.String", @@ -430329,7 +430497,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -430341,7 +430509,7 @@ "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", @@ -430394,7 +430562,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -430406,7 +430574,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Vendor": "System.String", "BundledScaleUnit": "System.String", @@ -430452,7 +430620,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -430464,7 +430632,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -430476,7 +430644,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "PublicIpAddress": "System.String", @@ -430522,7 +430690,7 @@ "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies" }, @@ -430566,7 +430734,7 @@ "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Allow": "System.Nullable`1[System.Boolean]", "Optimize": "System.Nullable`1[System.Boolean]", @@ -430612,7 +430780,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -430624,7 +430792,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "InstanceCount": "System.Nullable`1[System.Int32]", "ScaleUnit": "System.String" @@ -430669,7 +430837,7 @@ "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Port": "System.Int32", "Address": "System.String", @@ -430715,7 +430883,7 @@ "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Port": "System.Nullable`1[System.Int32]", "ResourceId": "System.String" @@ -430795,7 +430963,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -430807,7 +430975,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "WorkspaceSettings": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings", "Type": "System.String", @@ -430853,7 +431021,7 @@ "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "WorkspaceResourceId": "System.String" }, @@ -430897,7 +431065,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -430909,7 +431077,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Sources": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", "Destinations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", @@ -430960,7 +431128,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -430972,7 +431140,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Filter": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilter", "Name": "System.String", @@ -431020,7 +431188,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilter": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Items": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem]", "Type": "System.String", @@ -431066,7 +431234,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -431078,7 +431246,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "System.String", "Address": "System.String" @@ -431123,7 +431291,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -431135,7 +431303,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProtocolConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration", "SuccessThreshold": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold", @@ -431185,7 +431353,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -431227,7 +431395,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RoundTripTimeMs": "System.Nullable`1[System.Double]", "ChecksFailedPercent": "System.Nullable`1[System.Int32]" @@ -431272,7 +431440,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -431284,7 +431452,7 @@ "Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Hops": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -431333,7 +431501,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -431345,7 +431513,7 @@ "Microsoft.Azure.Commands.Network.Models.PSConnectivityHop": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectivityHop", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Issues": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue]", "NextHopIds": "System.Collections.Generic.List`1[System.String]", @@ -431395,7 +431563,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -431407,7 +431575,7 @@ "Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "System.Collections.Generic.List`1[System.Collections.Generic.Dictionary`2[System.String,System.String]]", "Origin": "System.String", @@ -431466,7 +431634,7 @@ "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Version": "System.Nullable`1[System.Int32]", "Type": "System.String" @@ -431511,7 +431679,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "Days": "System.Nullable`1[System.Int32]" @@ -431556,7 +431724,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "NetworkWatcherFlowAnalyticsConfiguration": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties" }, @@ -431605,7 +431773,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "TrafficAnalyticsInterval": "System.Nullable`1[System.Int32]", @@ -431658,7 +431826,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -431670,7 +431838,7 @@ "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EffectiveSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule]", "NetworkInterfaceSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -431722,7 +431890,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyResource]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyResource]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTopologyResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTopologyResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -431734,7 +431902,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTopologyResource": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTopologyResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopologyResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopologyResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Associations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation]", "Name": "System.String", @@ -431782,7 +431950,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -431794,7 +431962,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AssociationType": "System.String", "Name": "System.String", @@ -431840,7 +432008,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -431852,7 +432020,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecommendedActions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions]", "Id": "System.String", @@ -431901,7 +432069,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -431913,7 +432081,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ActionId": "System.String", "ActionText": "System.String", @@ -431960,7 +432128,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -431972,7 +432140,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Profile": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile", "NetworkSecurityGroupResult": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult" @@ -432017,7 +432185,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Direction": "System.String", "Protocol": "System.String", @@ -432065,7 +432233,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EvaluatedNetworkSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup]", "SecurityRuleAccessResult": "System.String", @@ -432111,7 +432279,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -432123,7 +432291,7 @@ "Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MatchedRule": "Microsoft.Azure.Commands.Network.Models.PSMatchedRule", "RulesEvaluationResult": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult]", @@ -432171,7 +432339,7 @@ "Microsoft.Azure.Commands.Network.Models.PSMatchedRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSMatchedRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSMatchedRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSMatchedRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RuleName": "System.String", "Action": "System.String" @@ -432216,7 +432384,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -432228,7 +432396,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProtocolMatched": "System.Boolean", "SourceMatched": "System.Boolean", @@ -432277,7 +432445,7 @@ "Microsoft.Azure.Commands.Network.Models.PSStorageLocation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageId": "System.String", "StoragePath": "System.String", @@ -432323,7 +432491,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -432335,7 +432503,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Protocol": "System.String", "RemoteIPAddress": "System.String", @@ -432405,7 +432573,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -432437,7 +432605,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -432449,7 +432617,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RecordSets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet]", "Name": "System.String", @@ -432497,7 +432665,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -432509,7 +432677,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpAddresses": "System.Collections.Generic.IList`1[System.String]", "Ttl": "System.Int32", @@ -432559,7 +432727,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subscriptions": "System.Collections.Generic.List`1[System.String]", "SubscriptionsText": "System.String" @@ -432604,7 +432772,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -432616,7 +432784,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", @@ -432669,7 +432837,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -432681,7 +432849,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", @@ -432736,7 +432904,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -432748,7 +432916,7 @@ "Microsoft.Azure.Commands.Network.Models.PSBgpCommunity": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBgpCommunity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsAuthorizedToUse": "System.Boolean", "CommunityPrefixes": "System.Collections.Generic.List`1[System.String]", @@ -432798,7 +432966,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -432810,7 +432978,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ValueInMbps": "System.Int32", "OfferName": "System.String" @@ -432855,7 +433023,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String" }, @@ -432899,7 +433067,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -432911,7 +433079,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -432923,7 +433091,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpTagType": "System.String", "Tag": "System.String" @@ -432968,7 +433136,7 @@ "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -433027,7 +433195,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -433098,7 +433266,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Capacity": "System.Int32", "Name": "System.String", @@ -433144,7 +433312,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "VpnClientAddressPool": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", @@ -433204,7 +433372,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -433216,7 +433384,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Thumbprint": "System.String", "ProvisioningState": "System.String", @@ -433264,7 +433432,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -433276,7 +433444,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PublicCertData": "System.String", "ProvisioningState": "System.String", @@ -433324,7 +433492,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -433336,7 +433504,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -433388,7 +433556,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -433400,7 +433568,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "LocalAddressRanges": "System.String[]", "RemoteAddressRanges": "System.String[]" @@ -433445,7 +433613,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -433457,7 +433625,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IngressBytesTransferred": "System.Nullable`1[System.Int64]", "EgressBytesTransferred": "System.Nullable`1[System.Int64]", @@ -433505,7 +433673,7 @@ "Microsoft.Azure.Commands.Network.Models.PSIpAllocation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", @@ -433567,7 +433735,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -433579,7 +433747,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "PeerIp": "System.String", "ProvisioningState": "System.String", @@ -433629,7 +433797,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -433641,7 +433809,7 @@ "Microsoft.Azure.Commands.Network.Models.PSHTTPHeader": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHTTPHeader", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHTTPHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHTTPHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Name": "System.String", "Value": "System.String" @@ -433686,7 +433854,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -433698,7 +433866,7 @@ "Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -433748,7 +433916,7 @@ "Microsoft.Azure.Commands.Network.Models.PSBastion": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", "Tag": "System.Collections.Hashtable", @@ -433823,7 +433991,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -433835,7 +434003,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Properties": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties", "Id": "System.String", @@ -433881,7 +434049,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AddressPrefixes": "System.Collections.Generic.List`1[System.String]", "Region": "System.String", @@ -433928,7 +434096,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -433940,7 +434108,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Providers": "System.Collections.Generic.IList`1[System.String]", "States": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState]", @@ -433987,7 +434155,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -433999,7 +434167,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Providers": "System.Collections.Generic.IList`1[System.String]", "Cities": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity]", @@ -434046,7 +434214,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -434058,7 +434226,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Providers": "System.Collections.Generic.IList`1[System.String]", "CityName": "System.String" @@ -434103,7 +434271,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Country": "System.String", "State": "System.String", @@ -434149,7 +434317,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -434161,7 +434329,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Latencies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo]", "Provider": "System.String", @@ -434208,7 +434376,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -434220,7 +434388,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "TimeStamp": "System.Nullable`1[System.DateTime]", "Score": "System.Nullable`1[System.Int32]" @@ -434265,7 +434433,7 @@ "Microsoft.Azure.Commands.Network.Models.PSUsageName": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSUsageName", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSUsageName, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.2.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSUsageName, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Value": "System.String", "LocalizedValue": "System.String" @@ -434308,4 +434476,4 @@ ] } } -} +} \ No newline at end of file diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.dll.json index 96e766b7754c..4eaff2710b4e 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Storage.dll.json @@ -14,7 +14,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -135,7 +135,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -171,7 +171,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", "GenericTypeArguments": [], @@ -182,6 +182,114 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true + }, + { + "Name": "AccessControlType", + "AliasList": [], + "Type": { + "Namespace": "Azure.Storage.Files.DataLake.Models", + "Name": "Azure.Storage.Files.DataLake.Models.AccessControlType", + "AssemblyQualifiedName": "Azure.Storage.Files.DataLake.Models.AccessControlType, Azure.Storage.Files.DataLake, Version=12.3.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [ + "User", + "Group", + "Mask", + "Other" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true } ], "ParameterSets": [ @@ -219,7 +327,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -267,7 +375,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", "GenericTypeArguments": [], @@ -283,6 +391,120 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AccessControlType", + "AliasList": [], + "Type": { + "Namespace": "Azure.Storage.Files.DataLake.Models", + "Name": "Azure.Storage.Files.DataLake.Models.AccessControlType", + "AssemblyQualifiedName": "Azure.Storage.Files.DataLake.Models.AccessControlType, Azure.Storage.Files.DataLake, Version=12.3.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "CompareTo", + "Parameters": [ + { + "Name": "target", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "format", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "ToString", + "Parameters": [ + { + "Name": "provider", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.String" + }, + { + "Name": "HasFlag", + "Parameters": [ + { + "Name": "flag", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetTypeCode", + "Parameters": [], + "ReturnType": "System.TypeCode" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "ValidateSet": [ + "User", + "Group", + "Mask", + "Other" + ], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } ] } @@ -620,7 +842,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageTable", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageTable, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageTable, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CloudTable": "Microsoft.Azure.Cosmos.Table.CloudTable", @@ -1229,7 +1451,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1522,7 +1744,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1880,7 +2102,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2238,7 +2460,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2843,7 +3065,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageTable", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageTable, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageTable, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "CloudTable": "Microsoft.Azure.Cosmos.Table.CloudTable", @@ -3160,7 +3382,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3295,7 +3517,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3443,7 +3665,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3461,7 +3683,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3572,7 +3794,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3596,7 +3818,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3820,7 +4042,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3838,7 +4060,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4049,7 +4271,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4073,7 +4295,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4181,7 +4403,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageQueue", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageQueue, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageQueue, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "QueueProperties": "Azure.Storage.Queues.Models.QueueProperties", "QueueClient": "Azure.Storage.Queues.QueueClient", @@ -4640,7 +4862,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageQueue", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageQueue, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageQueue, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "QueueProperties": "Azure.Storage.Queues.Models.QueueProperties", "QueueClient": "Azure.Storage.Queues.QueueClient", @@ -4943,7 +5165,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4961,7 +5183,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5072,7 +5294,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5096,7 +5318,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5673,7 +5895,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5886,7 +6108,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6140,7 +6362,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6394,7 +6616,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6953,7 +7175,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7088,7 +7310,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7312,7 +7534,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7330,7 +7552,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7541,7 +7763,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7565,7 +7787,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16527,7 +16749,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OpenTime": "System.DateTimeOffset", "ClientPort": "System.Int32", @@ -16592,7 +16814,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16610,7 +16832,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16656,7 +16878,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16674,7 +16896,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16842,7 +17064,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16866,7 +17088,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16924,7 +17146,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16948,7 +17170,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17121,7 +17343,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OpenTime": "System.DateTimeOffset", "ClientPort": "System.Int32", @@ -17226,7 +17448,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17250,7 +17472,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19305,7 +19527,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19329,7 +19551,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19353,7 +19575,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19377,7 +19599,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21408,7 +21630,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OpenTime": "System.DateTimeOffset", "ClientPort": "System.Int32", @@ -21479,7 +21701,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21503,7 +21725,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23334,7 +23556,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23358,7 +23580,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23382,7 +23604,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23406,7 +23628,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28832,7 +29054,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28856,7 +29078,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28880,7 +29102,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29029,7 +29251,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29053,7 +29275,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29209,7 +29431,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FileProperties": "Azure.Storage.Files.Shares.Models.ShareFileProperties", "ShareFileClient": "Azure.Storage.Files.Shares.ShareFileClient", @@ -37172,7 +37394,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FileProperties": "Azure.Storage.Files.Shares.Models.ShareFileProperties", "ShareFileClient": "Azure.Storage.Files.Shares.ShareFileClient", @@ -46093,7 +46315,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -46111,7 +46333,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -46129,7 +46351,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -46147,7 +46369,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -46401,7 +46623,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -46425,7 +46647,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -46449,7 +46671,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -46473,7 +46695,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -48552,7 +48774,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -48576,7 +48798,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -48600,7 +48822,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -48624,7 +48846,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -50479,7 +50701,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -50503,7 +50725,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -50527,7 +50749,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -50551,7 +50773,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -56001,7 +56223,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -56025,7 +56247,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -56049,7 +56271,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -56073,7 +56295,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -56222,7 +56444,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -56246,7 +56468,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -56270,7 +56492,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -56294,7 +56516,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -61817,7 +62039,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -62047,7 +62269,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -67473,7 +67695,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -67622,7 +67844,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -67778,7 +68000,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSFileHandle, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OpenTime": "System.DateTimeOffset", "ClientPort": "System.Int32", @@ -76679,7 +76901,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -76909,7 +77131,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -78964,7 +79186,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -80795,7 +81017,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -86221,7 +86443,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -86370,7 +86592,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -86526,7 +86748,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ShareProperties": "Azure.Storage.Files.Shares.Models.ShareProperties", "ShareClient": "Azure.Storage.Files.Shares.ShareClient", @@ -87916,7 +88138,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileDirectory", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileDirectory, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileDirectory, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ShareDirectoryProperties": "Azure.Storage.Files.Shares.Models.ShareDirectoryProperties", "ShareDirectoryClient": "Azure.Storage.Files.Shares.ShareDirectoryClient", @@ -101318,7 +101540,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -101610,7 +101832,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -101885,7 +102107,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -107355,7 +107577,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -112825,7 +113047,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -112994,7 +113216,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -113068,7 +113290,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ShareProperties": "Azure.Storage.Files.Shares.Models.ShareProperties", "ShareClient": "Azure.Storage.Files.Shares.ShareClient", @@ -113779,7 +114001,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -113992,7 +114214,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -114246,7 +114468,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -114500,7 +114722,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -115372,7 +115594,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileDirectory", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileDirectory, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileDirectory, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ShareDirectoryProperties": "Azure.Storage.Files.Shares.Models.ShareDirectoryProperties", "ShareDirectoryClient": "Azure.Storage.Files.Shares.ShareDirectoryClient", @@ -119003,7 +119225,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -119233,7 +119455,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -121288,7 +121510,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -123119,7 +123341,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -123268,7 +123490,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -123424,7 +123646,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FileProperties": "Azure.Storage.Files.Shares.Models.ShareFileProperties", "ShareFileClient": "Azure.Storage.Files.Shares.ShareFileClient", @@ -132327,7 +132549,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -132557,7 +132779,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -134612,7 +134834,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -136443,7 +136665,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -141869,7 +142091,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -142018,7 +142240,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -142174,7 +142396,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ShareProperties": "Azure.Storage.Files.Shares.Models.ShareProperties", "ShareClient": "Azure.Storage.Files.Shares.ShareClient", @@ -144138,7 +144360,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -144156,7 +144378,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -144174,7 +144396,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -144380,7 +144602,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -144404,7 +144626,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -144428,7 +144650,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -146459,7 +146681,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -146483,7 +146705,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -146507,7 +146729,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -146656,7 +146878,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -146680,7 +146902,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -146704,7 +146926,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -146918,7 +147140,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -147151,7 +147373,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -147324,7 +147546,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -147480,7 +147702,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FileProperties": "Azure.Storage.Files.Shares.Models.ShareFileProperties", "ShareFileClient": "Azure.Storage.Files.Shares.ShareFileClient", @@ -151132,7 +151354,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -151150,7 +151372,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -151168,7 +151390,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -151424,7 +151646,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -151448,7 +151670,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -151472,7 +151694,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -153553,7 +153775,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -153577,7 +153799,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -153601,7 +153823,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -155458,7 +155680,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -155482,7 +155704,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -155506,7 +155728,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -155705,7 +155927,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -155729,7 +155951,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -155753,7 +155975,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -155909,7 +156131,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFileShare, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ShareProperties": "Azure.Storage.Files.Shares.Models.ShareProperties", "ShareClient": "Azure.Storage.Files.Shares.ShareClient", @@ -160545,7 +160767,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -160563,7 +160785,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -160872,7 +161094,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -160896,7 +161118,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -161145,7 +161367,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -161169,7 +161391,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -161325,7 +161547,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageFile, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "FileProperties": "Azure.Storage.Files.Shares.Models.ShareFileProperties", "ShareFileClient": "Azure.Storage.Files.Shares.ShareFileClient", @@ -180899,7 +181121,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -181185,7 +181407,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -184291,7 +184513,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -188589,7 +188811,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -198080,7 +198302,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -198395,7 +198617,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -200532,7 +200754,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -206040,7 +206262,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -216741,7 +216963,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -216996,7 +217218,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -222444,7 +222666,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -222593,7 +222815,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -228093,7 +228315,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -228347,7 +228569,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -233797,7 +234019,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -233970,7 +234192,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -234126,7 +234348,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "RetentionDays": "System.Nullable`1[System.Int32]" @@ -234190,7 +234412,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -234274,7 +234496,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -234384,7 +234606,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "IndexDocument": "System.String", @@ -234449,7 +234671,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -234533,7 +234755,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -234641,7 +234863,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "RetentionDays": "System.Nullable`1[System.Int32]" @@ -234725,7 +234947,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -234835,7 +235057,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -234945,7 +235167,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "IndexDocument": "System.String", @@ -235046,7 +235268,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -235178,7 +235400,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -235286,7 +235508,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MaxAgeInSeconds": "System.Int32", "AllowedOrigins": "System.String[]", @@ -235363,7 +235585,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -235596,7 +235818,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -235936,7 +236158,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -236105,7 +236327,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -236363,7 +236585,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -236466,7 +236688,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -236635,7 +236857,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -236744,7 +236966,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -236937,7 +237159,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSSeriviceProperties", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSSeriviceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSSeriviceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Logging": "Microsoft.Azure.Storage.Shared.Protocol.LoggingProperties", "HourMetrics": "Microsoft.Azure.Storage.Shared.Protocol.MetricsProperties", @@ -237011,7 +237233,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -237180,7 +237402,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -238188,7 +238410,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage", "Name": "Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "TableStorageAccount": "Microsoft.Azure.Cosmos.Table.CloudStorageAccount", @@ -238343,7 +238565,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -238361,7 +238583,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -238379,7 +238601,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -238698,7 +238920,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -238802,7 +239024,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -239093,7 +239315,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -239197,7 +239419,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -239309,7 +239531,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -239364,7 +239586,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -239597,7 +239819,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -239872,7 +240094,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MaxAgeInSeconds": "System.Int32", "AllowedOrigins": "System.String[]", @@ -239949,7 +240171,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -240052,7 +240274,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule", "GenericTypeArguments": [], @@ -240070,7 +240292,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -240218,7 +240440,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -240327,7 +240549,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule", "GenericTypeArguments": [], @@ -240351,7 +240573,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -240606,7 +240828,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -240767,7 +240989,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -240851,7 +241073,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241036,7 +241258,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241209,7 +241431,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241312,7 +241534,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241475,7 +241697,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241559,7 +241781,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241668,7 +241890,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.ServiceMetricsType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241855,7 +242077,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -241963,7 +242185,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSSeriviceProperties", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSSeriviceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSSeriviceProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Logging": "Microsoft.Azure.Storage.Shared.Protocol.LoggingProperties", "HourMetrics": "Microsoft.Azure.Storage.Shared.Protocol.MetricsProperties", @@ -242037,7 +242259,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -242158,7 +242380,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -242242,7 +242464,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.StorageServiceType, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -242375,7 +242597,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -242483,7 +242705,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BlobContainerClient": "Azure.Storage.Blobs.BlobContainerClient", "BlobContainerProperties": "Azure.Storage.Blobs.Models.BlobContainerProperties", @@ -242702,7 +242924,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -242988,7 +243210,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -251089,7 +251311,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -251145,7 +251367,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -251163,7 +251385,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -256334,7 +256556,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -256358,7 +256580,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -256382,7 +256604,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -259490,7 +259712,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -259514,7 +259736,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -259538,7 +259760,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -259819,7 +260041,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -259843,7 +260065,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -259867,7 +260089,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -260050,7 +260272,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -260074,7 +260296,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -260098,7 +260320,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -260288,7 +260510,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BlobClient": "Azure.Storage.Blobs.BlobClient", "BlobProperties": "Azure.Storage.Blobs.Models.BlobProperties", @@ -267620,7 +267842,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -267638,7 +267860,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -268073,7 +268295,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -268097,7 +268319,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -271394,7 +271616,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -271418,7 +271640,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -275907,7 +276129,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -275931,7 +276153,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -276327,7 +276549,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -276351,7 +276573,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -276541,7 +276763,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BlobClient": "Azure.Storage.Blobs.BlobClient", "BlobProperties": "Azure.Storage.Blobs.Models.BlobProperties", @@ -276785,7 +277007,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -276803,7 +277025,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -277138,7 +277360,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -277482,7 +277704,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -277852,7 +278074,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -278220,7 +278442,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -278244,7 +278466,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -278813,7 +279035,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BlobClient": "Azure.Storage.Blobs.BlobClient", "BlobProperties": "Azure.Storage.Blobs.Models.BlobProperties", @@ -286912,7 +287134,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -286930,7 +287152,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -286948,7 +287170,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -292145,7 +292367,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -292169,7 +292391,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -292193,7 +292415,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -295277,7 +295499,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -295301,7 +295523,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -295325,7 +295547,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -295582,7 +295804,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -295606,7 +295828,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -295630,7 +295852,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -295839,7 +296061,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -295863,7 +296085,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -295887,7 +296109,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -303079,7 +303301,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -307294,7 +307516,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -310352,7 +310574,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -310583,7 +310805,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -310766,7 +310988,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -310956,7 +311178,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BlobContainerClient": "Azure.Storage.Blobs.BlobContainerClient", "BlobContainerProperties": "Azure.Storage.Blobs.Models.BlobContainerProperties", @@ -317825,7 +318047,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -323058,7 +323280,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -328308,7 +328530,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -328583,7 +328805,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -328858,7 +329080,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -329061,7 +329283,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -329169,7 +329391,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BlobContainerClient": "Azure.Storage.Blobs.BlobContainerClient", "BlobContainerProperties": "Azure.Storage.Blobs.Models.BlobContainerProperties", @@ -329812,7 +330034,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -330025,7 +330247,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -330279,7 +330501,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -330533,7 +330755,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -331220,7 +331442,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -331238,7 +331460,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -331413,7 +331635,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -331437,7 +331659,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -331687,7 +331909,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -331886,7 +332108,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -332192,7 +332414,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -332210,7 +332432,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -332485,7 +332707,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -332509,7 +332731,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -332699,7 +332921,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BlobClient": "Azure.Storage.Blobs.BlobClient", "BlobProperties": "Azure.Storage.Blobs.Models.BlobProperties", @@ -354043,7 +354265,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -359564,7 +359786,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -369131,7 +369353,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -372533,7 +372755,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -373108,7 +373330,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -373574,7 +373796,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -375896,7 +376118,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -377994,7 +378216,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -383685,7 +383907,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -393393,7 +393615,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -393834,7 +394056,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -394159,7 +394381,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -394317,7 +394539,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BlobClient": "Azure.Storage.Blobs.BlobClient", "BlobProperties": "Azure.Storage.Blobs.Models.BlobProperties", @@ -440501,7 +440723,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageBlob, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BlobClient": "Azure.Storage.Blobs.BlobClient", "BlobProperties": "Azure.Storage.Blobs.Models.BlobProperties", @@ -447630,7 +447852,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -451863,7 +452085,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -454945,7 +455167,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -455200,7 +455422,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -455407,7 +455629,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -455623,7 +455845,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -455762,7 +455984,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -455780,7 +456002,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -455836,7 +456058,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -455856,7 +456078,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -455990,7 +456212,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -456014,7 +456236,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -456088,7 +456310,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -456114,7 +456336,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -456222,7 +456444,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -456359,7 +456581,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -456477,7 +456699,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -456495,7 +456717,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -456513,7 +456735,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -456689,7 +456911,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -456713,7 +456935,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -456737,7 +456959,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -456864,7 +457086,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -456994,7 +457216,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -457018,7 +457240,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -457042,7 +457264,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -457193,7 +457415,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -457217,7 +457439,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -457241,7 +457463,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -457375,7 +457597,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -457710,7 +457932,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -457847,7 +458069,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -457983,7 +458205,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -458163,7 +458385,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -458264,7 +458486,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -458418,7 +458640,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -458567,7 +458789,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -458675,7 +458897,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -458812,7 +459034,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -458920,7 +459142,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -458938,7 +459160,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -459186,7 +459408,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -459210,7 +459432,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -459337,7 +459559,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -459505,7 +459727,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -459529,7 +459751,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -459824,7 +460046,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -459848,7 +460070,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -460037,7 +460259,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -460137,7 +460359,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -460155,7 +460377,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -460173,7 +460395,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -460305,7 +460527,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -460329,7 +460551,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -460353,7 +460575,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -460454,7 +460676,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -460560,7 +460782,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -460584,7 +460806,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -460608,7 +460830,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -460709,7 +460931,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -460733,7 +460955,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -460757,7 +460979,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -460865,7 +461087,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -461002,7 +461224,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -461192,7 +461414,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", "GenericTypeArguments": [], @@ -461444,7 +461666,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", "GenericTypeArguments": [], @@ -461545,7 +461767,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureDataLakeGen2Item, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Directory": "Azure.Storage.Files.DataLake.DataLakeDirectoryClient", "File": "Azure.Storage.Files.DataLake.DataLakeFileClient", @@ -461771,7 +461993,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", "GenericTypeArguments": [], @@ -461992,7 +462214,7 @@ "Type": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", "GenericTypeArguments": [], @@ -462532,7 +462754,7 @@ "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", "GenericTypeArguments": [], @@ -462542,7 +462764,7 @@ "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSPathAccessControlEntry, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -529586,7 +529808,7 @@ "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSDeleteRetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "RetentionDays": "System.Nullable`1[System.Int32]" @@ -529641,7 +529863,7 @@ "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSStaticWebsiteProperties, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Enabled": "System.Boolean", "IndexDocument": "System.String", @@ -529707,7 +529929,7 @@ "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[]": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[]", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule[], Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule", "GenericTypeArguments": [], @@ -529717,7 +529939,7 @@ "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel", "Name": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Model.ResourceModel.PSCorsRule, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "MaxAgeInSeconds": "System.Int32", "AllowedOrigins": "System.String[]", @@ -530152,7 +530374,7 @@ "Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage", "Name": "Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.AzureStorageContext, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Context": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IStorageContext", "TableStorageAccount": "Microsoft.Azure.Cosmos.Table.CloudStorageAccount", @@ -530226,7 +530448,7 @@ "Microsoft.WindowsAzure.Commands.Storage.Common.AzureSessionCredential": { "Namespace": "Microsoft.WindowsAzure.Commands.Storage.Common", "Name": "Microsoft.WindowsAzure.Commands.Storage.Common.AzureSessionCredential", - "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.AzureSessionCredential, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.WindowsAzure.Commands.Storage.Common.AzureSessionCredential, Microsoft.Azure.PowerShell.Cmdlets.Storage, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -539909,4 +540131,4 @@ "Constructors": [] } } -} +} \ No newline at end of file diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Websites.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Websites.dll.json index a9c456975ec8..feb82ad420a2 100644 --- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Websites.dll.json +++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Websites.dll.json @@ -803,7 +803,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -932,7 +932,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1000,7 +1000,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1433,7 +1433,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -1598,7 +1598,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -1931,7 +1931,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -2251,7 +2251,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -2492,7 +2492,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -2884,7 +2884,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2956,7 +2956,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -3207,7 +3207,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3449,7 +3449,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3517,7 +3517,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -3735,7 +3735,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3871,7 +3871,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3943,7 +3943,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -4144,7 +4144,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4336,7 +4336,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4404,7 +4404,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -4572,7 +4572,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4647,7 +4647,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -4830,7 +4830,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -4940,7 +4940,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4958,7 +4958,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5102,7 +5102,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5120,7 +5120,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5273,7 +5273,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -5389,7 +5389,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5413,7 +5413,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5605,7 +5605,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5629,7 +5629,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5758,7 +5758,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5776,7 +5776,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5848,7 +5848,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -5997,7 +5997,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6021,7 +6021,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6161,7 +6161,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6185,7 +6185,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6253,7 +6253,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -6369,7 +6369,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6393,7 +6393,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6541,7 +6541,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -6806,7 +6806,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -7017,7 +7017,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -7182,7 +7182,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -7447,7 +7447,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -7658,7 +7658,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -8134,7 +8134,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8188,7 +8188,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath", "GenericTypeArguments": [], @@ -8340,7 +8340,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -8854,7 +8854,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9090,7 +9090,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath", "GenericTypeArguments": [], @@ -9655,7 +9655,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9723,7 +9723,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -10204,7 +10204,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10408,7 +10408,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10426,7 +10426,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10480,7 +10480,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -10677,7 +10677,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10701,7 +10701,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10865,7 +10865,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10889,7 +10889,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10957,7 +10957,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -11121,7 +11121,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11145,7 +11145,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11220,7 +11220,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -11385,7 +11385,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -11650,7 +11650,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -11861,7 +11861,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -12026,7 +12026,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -12291,7 +12291,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -12557,7 +12557,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -12633,7 +12633,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -12830,7 +12830,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -13022,7 +13022,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -13118,7 +13118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -13282,7 +13282,7 @@ "Type": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -13387,7 +13387,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore", "Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.AzureWebAppSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.AzureWebAppSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.AzureWebAppSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SnapshotTime": "System.DateTime", "ResourceGroupName": "System.String", @@ -13443,7 +13443,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13515,7 +13515,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -13664,7 +13664,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13804,7 +13804,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13872,7 +13872,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -13988,7 +13988,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14404,7 +14404,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -14677,7 +14677,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14695,7 +14695,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14713,7 +14713,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14731,7 +14731,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14775,6 +14775,74 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps", + "Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.PSAzureDeletedWebApp", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.PSAzureDeletedWebApp, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "DeletionTime": "System.DateTime", + "DeletedSiteId": "System.Int32", + "Id": "System.String", + "SubscriptionId": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "Name": "System.String", + "Slot": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "ds", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "subscriptionId", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -15004,7 +15072,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15028,7 +15096,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15052,7 +15120,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15076,7 +15144,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15240,7 +15308,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15264,7 +15332,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15288,7 +15356,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15312,7 +15380,317 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "FromDeletedApp", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps", + "Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.PSAzureDeletedWebApp", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.PSAzureDeletedWebApp, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "DeletionTime": "System.DateTime", + "DeletedSiteId": "System.Int32", + "Id": "System.String", + "SubscriptionId": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "Name": "System.String", + "Slot": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [ + { + "Name": "ds", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "subscriptionId", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TargetResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TargetName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TargetSlot", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TargetAppServicePlanName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RestoreContentOnly", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UseDisasterRecovery", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15442,7 +15820,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15514,7 +15892,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -15650,6 +16028,60 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "StorageAccountUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "BlobName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Overwrite", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -15711,7 +16143,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15766,6 +16198,78 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StorageAccountUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 3, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "BlobName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 4, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Overwrite", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true } ] }, @@ -15899,7 +16403,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15954,6 +16458,78 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StorageAccountUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 3, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "BlobName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 4, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Overwrite", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true } ] }, @@ -15967,7 +16543,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -16131,7 +16707,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16186,6 +16762,78 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StorageAccountUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 3, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "BlobName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 4, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Overwrite", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true } ] } @@ -16225,7 +16873,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16243,7 +16891,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16261,7 +16909,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16279,7 +16927,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16351,7 +16999,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -16487,6 +17135,61 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore", + "Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.AzureWebAppSnapshot", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.AzureWebAppSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "SnapshotTime": "System.DateTime", + "ResourceGroupName": "System.String", + "Name": "System.String", + "Slot": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -16500,7 +17203,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16524,7 +17227,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16548,7 +17251,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16572,7 +17275,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16705,6 +17408,67 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore", + "Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.AzureWebAppSnapshot", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.AzureWebAppSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "SnapshotTime": "System.DateTime", + "ResourceGroupName": "System.String", + "Name": "System.String", + "Slot": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": 3, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "RecoverConfiguration", @@ -16712,7 +17476,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16736,7 +17500,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16760,7 +17524,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16784,7 +17548,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16852,7 +17616,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -16961,6 +17725,67 @@ "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore", + "Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.AzureWebAppSnapshot", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.AzureWebAppSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "SnapshotTime": "System.DateTime", + "ResourceGroupName": "System.String", + "Name": "System.String", + "Slot": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [ + { + "Name": "", + "ReturnType": null, + "Parameters": [] + } + ] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "RecoverConfiguration", @@ -16968,7 +17793,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16992,7 +17817,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17016,7 +17841,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17040,7 +17865,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17115,7 +17940,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -17508,7 +18333,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -17728,7 +18553,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17746,7 +18571,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17782,7 +18607,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17836,7 +18661,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -18136,7 +18961,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18204,7 +19029,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18252,7 +19077,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18497,7 +19322,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18565,7 +19390,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -18832,7 +19657,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18961,7 +19786,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18979,7 +19804,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19033,7 +19858,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -19160,7 +19985,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19184,7 +20009,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19300,7 +20125,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19324,7 +20149,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19392,7 +20217,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -19486,7 +20311,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19510,7 +20335,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19585,7 +20410,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -19764,7 +20589,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19836,7 +20661,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -20155,7 +20980,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20223,7 +21048,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20291,7 +21116,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -20385,7 +21210,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20460,7 +21285,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScmSiteUseMainSiteRestrictionConfig": "System.Boolean", "MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]", @@ -20641,7 +21466,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20731,7 +21556,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20749,7 +21574,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20977,7 +21802,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21025,7 +21850,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21264,7 +22089,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21336,7 +22161,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21360,7 +22185,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21599,7 +22424,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21647,7 +22472,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21671,7 +22496,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21739,7 +22564,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21814,7 +22639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScmSiteUseMainSiteRestrictionConfig": "System.Boolean", "MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]", @@ -22082,7 +22907,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScmSiteUseMainSiteRestrictionConfig": "System.Boolean", "MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]", @@ -22209,7 +23034,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22317,7 +23142,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22473,7 +23298,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22617,7 +23442,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22692,7 +23517,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScmSiteUseMainSiteRestrictionConfig": "System.Boolean", "MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]", @@ -22780,7 +23605,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22816,7 +23641,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22834,7 +23659,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScmSiteUseMainSiteRestrictionConfig": "System.Boolean", "MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]", @@ -22972,7 +23797,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23020,7 +23845,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23088,7 +23913,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23156,7 +23981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ScmSiteUseMainSiteRestrictionConfig": "System.Boolean", "MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]", @@ -23213,7 +24038,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23469,7 +24294,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23523,7 +24348,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -23752,7 +24577,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23970,7 +24795,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24038,7 +24863,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -24234,7 +25059,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24311,7 +25136,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps", "Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackupConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackupConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackupConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Databases": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]", "KeepAtLeastOneBackup": "System.Nullable`1[System.Boolean]", @@ -24445,7 +25270,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24517,7 +25342,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -24653,6 +25478,42 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "StorageAccountUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Databases", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Management.WebSites.Models", + "Name": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]", + "AssemblyQualifiedName": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[], Microsoft.Azure.Management.Websites, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -24762,7 +25623,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24817,6 +25678,54 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StorageAccountUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 3, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Databases", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Management.WebSites.Models", + "Name": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]", + "AssemblyQualifiedName": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[], Microsoft.Azure.Management.Websites, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 8, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true } ] }, @@ -24998,7 +25907,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25053,6 +25962,54 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StorageAccountUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 3, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Databases", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Management.WebSites.Models", + "Name": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]", + "AssemblyQualifiedName": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[], Microsoft.Azure.Management.Websites, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 8, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true } ] }, @@ -25066,7 +26023,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -25278,7 +26235,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25333,6 +26290,54 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StorageAccountUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 3, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Databases", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Management.WebSites.Models", + "Name": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]", + "AssemblyQualifiedName": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[], Microsoft.Azure.Management.Websites, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": 8, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true } ] } @@ -25353,7 +26358,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps", "Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.PSAzureDeletedWebApp", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.PSAzureDeletedWebApp, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.PSAzureDeletedWebApp, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DeletionTime": "System.DateTime", "DeletedSiteId": "System.Int32", @@ -25680,7 +26685,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps", "Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Databases": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]", "Scheduled": "System.Nullable`1[System.Boolean]", @@ -25821,7 +26826,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -26178,7 +27183,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -26369,7 +27374,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps", "Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackupConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackupConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackupConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Databases": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]", "KeepAtLeastOneBackup": "System.Nullable`1[System.Boolean]", @@ -26485,7 +27490,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -26750,7 +27755,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -26961,7 +27966,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps", "Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Databases": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]", "Scheduled": "System.Nullable`1[System.Boolean]", @@ -27084,7 +28089,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -27349,7 +28354,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -27560,7 +28565,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps", "Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Databases": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]", "Scheduled": "System.Nullable`1[System.Boolean]", @@ -27701,7 +28706,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -27837,6 +28842,42 @@ "ValidateRangeMin": null, "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false + }, + { + "Name": "StorageAccountUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Databases", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Management.WebSites.Models", + "Name": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]", + "AssemblyQualifiedName": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[], Microsoft.Azure.Management.Websites, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ @@ -27905,6 +28946,54 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StorageAccountUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 3, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Databases", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Management.WebSites.Models", + "Name": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]", + "AssemblyQualifiedName": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[], Microsoft.Azure.Management.Websites, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true } ] }, @@ -28045,6 +29134,54 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StorageAccountUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 3, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Databases", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Management.WebSites.Models", + "Name": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]", + "AssemblyQualifiedName": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[], Microsoft.Azure.Management.Websites, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true } ] }, @@ -28058,7 +29195,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -28229,6 +29366,54 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StorageAccountUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 3, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Databases", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.Management.WebSites.Models", + "Name": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]", + "AssemblyQualifiedName": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[], Microsoft.Azure.Management.Websites, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true } ] } @@ -28469,7 +29654,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -28826,7 +30011,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -29017,7 +30202,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSCertificate, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSCertificate, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "CerBlob": "System.Byte[]", @@ -29438,7 +30623,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -29795,7 +30980,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -30128,7 +31313,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -30773,7 +31958,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -31031,7 +32216,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -31423,7 +32608,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31495,7 +32680,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -31694,7 +32879,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31884,7 +33069,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31952,7 +33137,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -32118,7 +33303,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32212,7 +33397,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32230,7 +33415,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32302,7 +33487,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -32451,7 +33636,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32475,7 +33660,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32615,7 +33800,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32639,7 +33824,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32707,7 +33892,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -32823,7 +34008,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32847,7 +34032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32995,7 +34180,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -33260,7 +34445,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -33471,7 +34656,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -33618,7 +34803,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -33855,7 +35040,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile", "Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription", @@ -34293,7 +35478,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -34347,7 +35532,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -34598,7 +35783,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -34816,7 +36001,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -34884,7 +36069,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -35102,7 +36287,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -35238,7 +36423,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -35292,7 +36477,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -35493,7 +36678,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -35661,7 +36846,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -35729,7 +36914,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -35897,7 +37082,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -35972,7 +37157,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "System.Nullable`1[Microsoft.Azure.Management.WebSites.Models.AzureStorageType]", "Name": "System.String", @@ -36542,7 +37727,7 @@ "Type": { "Namespace": "System.Management.Automation.Runspaces", "Name": "System.Management.Automation.Runspaces.PSSession", - "AssemblyQualifiedName": "System.Management.Automation.Runspaces.PSSession, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.Runspaces.PSSession, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -36579,7 +37764,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -36633,7 +37818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -36854,7 +38039,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -36922,7 +38107,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -36990,7 +38175,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -37106,7 +38291,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -37181,7 +38366,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -37366,7 +38551,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -37569,7 +38754,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -37587,7 +38772,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -37605,7 +38790,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -37677,7 +38862,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -37695,7 +38880,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -37964,7 +39149,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -37988,7 +39173,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -38104,7 +39289,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -38247,7 +39432,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -38271,7 +39456,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -38367,7 +39552,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -38441,7 +39626,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -38465,7 +39650,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -38679,7 +39864,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -38703,7 +39888,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -38821,7 +40006,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -38845,7 +40030,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -38920,7 +40105,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -39049,7 +40234,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -39067,7 +40252,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -39139,7 +40324,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -39312,7 +40497,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -39336,7 +40521,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -39500,7 +40685,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -39524,7 +40709,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -39592,7 +40777,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -39732,7 +40917,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -39756,7 +40941,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -39850,7 +41035,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -39868,7 +41053,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -39922,7 +41107,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -40071,7 +41256,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -40095,7 +41280,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -40211,7 +41396,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -40235,7 +41420,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -40303,7 +41488,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -40419,7 +41604,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -40443,7 +41628,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -40573,7 +41758,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -40814,7 +41999,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -41025,7 +42210,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -41172,7 +42357,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -41413,7 +42598,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -41624,7 +42809,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -42118,7 +43303,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -42172,7 +43357,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath", "GenericTypeArguments": [], @@ -42288,7 +43473,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -42922,7 +44107,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath", "GenericTypeArguments": [], @@ -43146,7 +44331,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -43286,7 +44471,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -43354,7 +44539,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -43542,7 +44727,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -43617,7 +44802,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -43764,7 +44949,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -44005,7 +45190,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -44216,7 +45401,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -44363,7 +45548,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -44604,7 +45789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", "CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo", @@ -45170,7 +46355,7 @@ "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath", "GenericTypeArguments": [], @@ -45180,7 +46365,7 @@ "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "System.Nullable`1[Microsoft.Azure.Management.WebSites.Models.AzureStorageType]", "Name": "System.String", @@ -49229,7 +50414,7 @@ "Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction": { "Namespace": "Microsoft.Azure.Commands.WebApps.Utilities", "Name": "Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -49846,7 +51031,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -49858,7 +51043,7 @@ "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction": { "Namespace": "Microsoft.Azure.Commands.WebApps.Models", "Name": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.11.0.0, Culture=neutral, PublicKeyToken=null", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.10.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Priority": "System.Int32", "RuleName": "System.String", @@ -50141,4 +51326,4 @@ "Constructors": [] } } -} +} \ No newline at end of file